diff options
Diffstat (limited to 'meta-python/recipes-devtools/python/python3-pandas_2.2.2.bb')
-rw-r--r-- | meta-python/recipes-devtools/python/python3-pandas_2.2.2.bb | 43 |
1 files changed, 0 insertions, 43 deletions
diff --git a/meta-python/recipes-devtools/python/python3-pandas_2.2.2.bb b/meta-python/recipes-devtools/python/python3-pandas_2.2.2.bb deleted file mode 100644 index 25b03c8e32..0000000000 --- a/meta-python/recipes-devtools/python/python3-pandas_2.2.2.bb +++ /dev/null | |||
@@ -1,43 +0,0 @@ | |||
1 | SUMMARY = "pandas library for high-performance data analysis tools" | ||
2 | DESCRIPTION = "pandas is an open source, BSD-licensed library providing \ | ||
3 | high-performance, easy-to-use data structures and data analysis tools for \ | ||
4 | the Python programming language." | ||
5 | HOMEPAGE = "http://pandas.pydata.org/" | ||
6 | LICENSE = "BSD-3-Clause" | ||
7 | LIC_FILES_CHKSUM = "file://LICENSE;md5=cb819092901ddb13a7d0a4f5e05f098a" | ||
8 | |||
9 | SRC_URI += " \ | ||
10 | file://0001-pyproject.toml-don-t-pin-dependency-versions.patch \ | ||
11 | file://0001-pyproject.toml-Downgrade-numpy-version-needs-to-1.x.patch \ | ||
12 | " | ||
13 | |||
14 | SRC_URI[sha256sum] = "9e79019aba43cb4fda9e4d983f8e88ca0373adbb697ae9c6c43093218de28b54" | ||
15 | |||
16 | inherit pypi python_mesonpy | ||
17 | |||
18 | DEPENDS += " \ | ||
19 | python3-cython-native \ | ||
20 | python3-numpy-native \ | ||
21 | python3-versioneer-native \ | ||
22 | " | ||
23 | |||
24 | PACKAGESPLITFUNCS =+ "fix_cythonized_sources" | ||
25 | |||
26 | fix_cythonized_sources() { | ||
27 | for f in `grep -l -r -e '\/* Generated by Cython.*/$' ${PKGD}${TARGET_DBGSRC_DIR}`; do | ||
28 | if [ -e $f ]; then | ||
29 | sed -i -e 's#${RECIPE_SYSROOT_NATIVE}##g' $f | ||
30 | fi | ||
31 | done | ||
32 | } | ||
33 | |||
34 | CFLAGS:append:toolchain-clang = " -Wno-error=deprecated-declarations" | ||
35 | |||
36 | RDEPENDS:${PN} += " \ | ||
37 | python3-json \ | ||
38 | python3-numpy \ | ||
39 | python3-dateutil \ | ||
40 | python3-dateutil-zoneinfo \ | ||
41 | python3-pytz \ | ||
42 | python3-profile \ | ||
43 | " | ||