summaryrefslogtreecommitdiffstats
path: root/meta/recipes-devtools/python/python3-numpy_1.26.3.bb
diff options
context:
space:
mode:
authorWang Mingyu <wangmy@fujitsu.com>2024-01-15 17:08:40 +0800
committerRichard Purdie <richard.purdie@linuxfoundation.org>2024-01-19 12:21:23 +0000
commitb682671cfb38ec5a256a14a401f812d010a5aec8 (patch)
treea06433929f94e3e025fe224f577b8682d50b8ca7 /meta/recipes-devtools/python/python3-numpy_1.26.3.bb
parente100286f5359bb74a870fe0971b202c338e7dc41 (diff)
downloadpoky-b682671cfb38ec5a256a14a401f812d010a5aec8.tar.gz
python3-numpy: upgrade 1.26.2 -> 1.26.3
0001-Don-t-search-usr-and-so-on-for-libraries-by-default-.patch refreshed for 1.26.3 Changelog: https://github.com/numpy/numpy/releases/tag/v1.26.3 (From OE-Core rev: 04d1c142274702726f8fc7afed7420d9e6f07ddd) Signed-off-by: Wang Mingyu <wangmy@fujitsu.com> Signed-off-by: Alexandre Belloni <alexandre.belloni@bootlin.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'meta/recipes-devtools/python/python3-numpy_1.26.3.bb')
-rw-r--r--meta/recipes-devtools/python/python3-numpy_1.26.3.bb64
1 files changed, 64 insertions, 0 deletions
diff --git a/meta/recipes-devtools/python/python3-numpy_1.26.3.bb b/meta/recipes-devtools/python/python3-numpy_1.26.3.bb
new file mode 100644
index 0000000000..023d40a9b2
--- /dev/null
+++ b/meta/recipes-devtools/python/python3-numpy_1.26.3.bb
@@ -0,0 +1,64 @@
1SUMMARY = "A sophisticated Numeric Processing Package for Python"
2HOMEPAGE = "https://numpy.org/"
3DESCRIPTION = "NumPy is the fundamental package needed for scientific computing with Python."
4SECTION = "devel/python"
5LICENSE = "BSD-3-Clause & BSD-2-Clause & PSF-2.0 & Apache-2.0 & MIT"
6LIC_FILES_CHKSUM = "file://LICENSE.txt;md5=a752eb20459cf74a9d84ee4825e8317c"
7
8SRCNAME = "numpy"
9
10SRC_URI = "${GITHUB_BASE_URI}/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://fix_reproducibility.patch \
14 file://run-ptest \
15 "
16SRC_URI[sha256sum] = "697df43e2b6310ecc9d95f05d5ef20eacc09c7c4ecc9da3f235d39e71b7da1e4"
17
18GITHUB_BASE_URI = "https://github.com/numpy/numpy/releases"
19UPSTREAM_CHECK_REGEX = "releases/tag/v?(?P<pver>\d+(\.\d+)+)$"
20
21DEPENDS += "python3-cython-native"
22
23inherit ptest setuptools3 github-releases
24
25S = "${WORKDIR}/numpy-${PV}"
26
27CLEANBROKEN = "1"
28
29do_compile:prepend() {
30 export NPY_DISABLE_SVML=1
31}
32
33FILES:${PN}-staticdev += "${PYTHON_SITEPACKAGES_DIR}/numpy/core/lib/*.a ${PYTHON_SITEPACKAGES_DIR}/numpy/random/lib/*.a"
34
35# install what is needed for numpy.test()
36RDEPENDS:${PN} = "${PYTHON_PN}-unittest \
37 ${PYTHON_PN}-difflib \
38 ${PYTHON_PN}-pprint \
39 ${PYTHON_PN}-pickle \
40 ${PYTHON_PN}-shell \
41 ${PYTHON_PN}-doctest \
42 ${PYTHON_PN}-datetime \
43 ${PYTHON_PN}-misc \
44 ${PYTHON_PN}-mmap \
45 ${PYTHON_PN}-netclient \
46 ${PYTHON_PN}-numbers \
47 ${PYTHON_PN}-pydoc \
48 ${PYTHON_PN}-pkgutil \
49 ${PYTHON_PN}-email \
50 ${PYTHON_PN}-compression \
51 ${PYTHON_PN}-ctypes \
52 ${PYTHON_PN}-threading \
53 ${PYTHON_PN}-multiprocessing \
54 ${PYTHON_PN}-json \
55"
56RDEPENDS:${PN}-ptest += "${PYTHON_PN}-pytest \
57 ${PYTHON_PN}-hypothesis \
58 ${PYTHON_PN}-sortedcontainers \
59 ${PYTHON_PN}-resource \
60 ${PYTHON_PN}-typing-extensions \
61 ldd \
62"
63
64BBCLASSEXTEND = "native nativesdk"