blob: 727755393eb5cafa4b0f980e10d208bae7b98b9d [file] [log] [blame]
Brad Bishop316dfdd2018-06-25 12:45:53 -04001SUMMARY = "A sophisticated Numeric Processing Package for Python"
2SECTION = "devel/python"
Brad Bishop79641f22019-09-10 07:20:22 -04003LICENSE = "BSD-3-Clause & BSD-2-Clause & PSF & Apache-2.0 & BSD & MIT"
4LIC_FILES_CHKSUM = "file://LICENSE.txt;md5=1a32aba007a415aa8a1c708a0e2b86a1"
Brad Bishop316dfdd2018-06-25 12:45:53 -04005
6SRCNAME = "numpy"
7
8SRC_URI = "https://github.com/${SRCNAME}/${SRCNAME}/releases/download/v${PV}/${SRCNAME}-${PV}.tar.gz \
9 file://0001-Don-t-search-usr-and-so-on-for-libraries-by-default-.patch \
Andrew Geissler82c905d2020-04-13 13:39:40 -050010 file://0001-convert-shebang-from-python-to-python3.patch \
Brad Bishopc342db32019-05-15 21:57:59 -040011 "
Andrew Geissler82c905d2020-04-13 13:39:40 -050012SRC_URI[md5sum] = "cd631c761f141d382b4e1b31c8232fc0"
13SRC_URI[sha256sum] = "93ee59ec38f3bf8f9a42d5f4301f60e6825a4a6385a145f70badcd2bf2a11134"
Brad Bishop316dfdd2018-06-25 12:45:53 -040014
15UPSTREAM_CHECK_URI = "https://github.com/numpy/numpy/releases"
16UPSTREAM_CHECK_REGEX = "(?P<pver>\d+(\.\d+)+)\.tar"
17
Brad Bishop79641f22019-09-10 07:20:22 -040018# Needed for building with gcc 4.x from centos 7
19CFLAGS_append_class-native = " -std=c99"
20
Andrew Geissler82c905d2020-04-13 13:39:40 -050021DEPENDS += "python3-cython-native"
22
Brad Bishop316dfdd2018-06-25 12:45:53 -040023S = "${WORKDIR}/numpy-${PV}"
24
Brad Bishop1a4b7ee2018-12-16 17:11:34 -080025CLEANBROKEN = "1"
26
Brad Bishop316dfdd2018-06-25 12:45:53 -040027FILES_${PN}-staticdev += "${PYTHON_SITEPACKAGES_DIR}/numpy/core/lib/*.a"
28
29# install what is needed for numpy.test()
30RDEPENDS_${PN} = "${PYTHON_PN}-unittest \
31 ${PYTHON_PN}-difflib \
32 ${PYTHON_PN}-pprint \
33 ${PYTHON_PN}-pickle \
34 ${PYTHON_PN}-shell \
35 ${PYTHON_PN}-nose \
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 \
Brad Bishop79641f22019-09-10 07:20:22 -040049 ${PYTHON_PN}-multiprocessing \
Brad Bishop316dfdd2018-06-25 12:45:53 -040050"
51
52RDEPENDS_${PN}_class-native = ""
53
54BBCLASSEXTEND = "native nativesdk"