SUMMARY = "A sophisticated Numeric Processing Package for Python" HOMEPAGE = "https://numpy.org/" DESCRIPTION = "NumPy is the fundamental package needed for scientific computing with Python." SECTION = "devel/python" LICENSE = "BSD-3-Clause & BSD-2-Clause & PSF-2.0 & Apache-2.0 & MIT" LIC_FILES_CHKSUM = "file://LICENSE.txt;md5=26080bf81b2662c7119d3ef28ae197fd" SRCNAME = "numpy" SRC_URI = "${GITHUB_BASE_URI}/download/v${PV}/${SRCNAME}-${PV}.tar.gz \ file://run-ptest \ file://0001-python-sysroot.patch \ " SRC_URI[sha256sum] = "5a129578019311b6e56bdd714250f19b518f7dceeeb8d1af5490f4942d3f891c" GITHUB_BASE_URI = "https://github.com/numpy/numpy/releases" UPSTREAM_CHECK_REGEX = "releases/tag/v?(?P\d+(\.\d+)+)$" inherit pkgconfig ptest python_mesonpy github-releases cython S = "${UNPACKDIR}/numpy-${PV}" PACKAGECONFIG[svml] = "-Ddisable-svml=false,-Ddisable-svml=true" # the overflow tests fail with compiler-rt on aarch64 LDFLAGS:append:toolchain-clang:aarch64 = " -rtlib=libgcc -unwindlib=libgcc" # Remove references to buildpaths from numpy's __config__.py do_install:append() { sed -i \ -e 's|${S}=||g' \ -e 's|${B}=||g' \ -e 's|${RECIPE_SYSROOT_NATIVE}=||g' \ -e 's|${RECIPE_SYSROOT_NATIVE}||g' \ -e 's|${RECIPE_SYSROOT}=||g' \ -e 's|${RECIPE_SYSROOT}||g' ${D}${PYTHON_SITEPACKAGES_DIR}/numpy/__config__.py nativepython3 -mcompileall -s ${D} ${D}${PYTHON_SITEPACKAGES_DIR}/numpy/__config__.py } do_install_ptest:append() { sed -i \ -e 's|@PYTHON_SITEPACKAGES_DIR@|${PYTHON_SITEPACKAGES_DIR}|g' \ -e 's|@PTEST_PATH@|${PTEST_PATH}|g' ${D}${PTEST_PATH}/run-ptest } FILES:${PN}-staticdev += "${PYTHON_SITEPACKAGES_DIR}/numpy/_core/lib/*.a \ ${PYTHON_SITEPACKAGES_DIR}/numpy/random/lib/*.a \ " # install what is needed for numpy.test() RDEPENDS:${PN} = "\ python3-compression \ python3-ctypes \ python3-datetime \ python3-difflib \ python3-doctest \ python3-email \ python3-json \ python3-misc \ python3-mmap \ python3-multiprocessing \ python3-netclient \ python3-numbers \ python3-pickle \ python3-pkgutil \ python3-pprint \ python3-pydoc \ python3-shell \ python3-threading \ python3-unittest \ " RDEPENDS:${PN}-ptest += "\ ldd \ meson \ python3-hypothesis \ python3-pytest \ python3-resource \ python3-sortedcontainers \ python3-typing-extensions \ python3-unittest-automake-output \ " BBCLASSEXTEND = "native nativesdk" OEQA_BUILDPATHS_SKIP = "/home/alex"