diff options
| author | zhengruoqin <zhengrq.fnst@fujitsu.com> | 2021-04-29 20:43:10 +0800 |
|---|---|---|
| committer | Richard Purdie <richard.purdie@linuxfoundation.org> | 2021-05-02 23:21:42 +0100 |
| commit | f03a094f3e1c7e88ffea533c3c3350ee83507390 (patch) | |
| tree | 64e119f68b7506e89f8b10f1b1ac125ee5cf375a /meta/recipes-devtools/python-numpy/python3-numpy_1.20.2.bb | |
| parent | eb31bf7ea35107bcfa5239777e4ee9a857f6b6a2 (diff) | |
| download | poky-f03a094f3e1c7e88ffea533c3c3350ee83507390.tar.gz | |
python3-numpy: upgrade 1.20.1 -> 1.20.2
(From OE-Core rev: dc98345d7b6c5d4342415723d0b578c0268c646e)
Signed-off-by: Zheng Ruoqin <zhengrq.fnst@fujitsu.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'meta/recipes-devtools/python-numpy/python3-numpy_1.20.2.bb')
| -rw-r--r-- | meta/recipes-devtools/python-numpy/python3-numpy_1.20.2.bb | 58 |
1 files changed, 58 insertions, 0 deletions
diff --git a/meta/recipes-devtools/python-numpy/python3-numpy_1.20.2.bb b/meta/recipes-devtools/python-numpy/python3-numpy_1.20.2.bb new file mode 100644 index 0000000000..0a60ca7467 --- /dev/null +++ b/meta/recipes-devtools/python-numpy/python3-numpy_1.20.2.bb | |||
| @@ -0,0 +1,58 @@ | |||
| 1 | SUMMARY = "A sophisticated Numeric Processing Package for Python" | ||
| 2 | HOMEPAGE = "https://numpy.org/" | ||
| 3 | DESCRIPTION = "NumPy is the fundamental package needed for scientific computing with Python." | ||
| 4 | SECTION = "devel/python" | ||
| 5 | LICENSE = "BSD-3-Clause & BSD-2-Clause & PSF & Apache-2.0 & BSD & MIT" | ||
| 6 | LIC_FILES_CHKSUM = "file://LICENSE.txt;md5=aa1ecaef18152f75bfae546b29c49d3c" | ||
| 7 | |||
| 8 | SRCNAME = "numpy" | ||
| 9 | |||
| 10 | SRC_URI = "https://github.com/${SRCNAME}/${SRCNAME}/releases/download/v${PV}/${SRCNAME}-${PV}.tar.gz \ | ||
| 11 | file://0001-Don-t-search-usr-and-so-on-for-libraries-by-default-.patch \ | ||
| 12 | file://0001-numpy-core-Define-RISCV-32-support.patch \ | ||
| 13 | file://run-ptest \ | ||
| 14 | " | ||
| 15 | SRC_URI[sha256sum] = "c049f410c78e76ffb0af830a8afbdf8baac09897b4152b97b1a3b8345ee338ff" | ||
| 16 | |||
| 17 | UPSTREAM_CHECK_URI = "https://github.com/numpy/numpy/releases" | ||
| 18 | UPSTREAM_CHECK_REGEX = "(?P<pver>\d+(\.\d+)+)\.tar" | ||
| 19 | |||
| 20 | DEPENDS += "python3-cython-native" | ||
| 21 | |||
| 22 | inherit ptest setuptools3 | ||
| 23 | |||
| 24 | S = "${WORKDIR}/numpy-${PV}" | ||
| 25 | |||
| 26 | CLEANBROKEN = "1" | ||
| 27 | |||
| 28 | FILES_${PN}-staticdev += "${PYTHON_SITEPACKAGES_DIR}/numpy/core/lib/*.a ${PYTHON_SITEPACKAGES_DIR}/numpy/random/lib/*.a" | ||
| 29 | |||
| 30 | # install what is needed for numpy.test() | ||
| 31 | RDEPENDS_${PN} = "${PYTHON_PN}-unittest \ | ||
| 32 | ${PYTHON_PN}-difflib \ | ||
| 33 | ${PYTHON_PN}-pprint \ | ||
| 34 | ${PYTHON_PN}-pickle \ | ||
| 35 | ${PYTHON_PN}-shell \ | ||
| 36 | ${PYTHON_PN}-doctest \ | ||
| 37 | ${PYTHON_PN}-datetime \ | ||
| 38 | ${PYTHON_PN}-distutils \ | ||
| 39 | ${PYTHON_PN}-misc \ | ||
| 40 | ${PYTHON_PN}-mmap \ | ||
| 41 | ${PYTHON_PN}-netclient \ | ||
| 42 | ${PYTHON_PN}-numbers \ | ||
| 43 | ${PYTHON_PN}-pydoc \ | ||
| 44 | ${PYTHON_PN}-pkgutil \ | ||
| 45 | ${PYTHON_PN}-email \ | ||
| 46 | ${PYTHON_PN}-compression \ | ||
| 47 | ${PYTHON_PN}-ctypes \ | ||
| 48 | ${PYTHON_PN}-threading \ | ||
| 49 | ${PYTHON_PN}-multiprocessing \ | ||
| 50 | " | ||
| 51 | RDEPENDS_${PN}-ptest += "${PYTHON_PN}-pytest \ | ||
| 52 | ${PYTHON_PN}-hypothesis \ | ||
| 53 | ${PYTHON_PN}-sortedcontainers \ | ||
| 54 | ${PYTHON_PN}-resource \ | ||
| 55 | ldd \ | ||
| 56 | " | ||
| 57 | |||
| 58 | BBCLASSEXTEND = "native nativesdk" | ||
