Brad Bishop | 316dfdd | 2018-06-25 12:45:53 -0400 | [diff] [blame] | 1 | SUMMARY = "A sophisticated Numeric Processing Package for Python" |
| 2 | SECTION = "devel/python" |
Brad Bishop | 79641f2 | 2019-09-10 07:20:22 -0400 | [diff] [blame] | 3 | LICENSE = "BSD-3-Clause & BSD-2-Clause & PSF & Apache-2.0 & BSD & MIT" |
| 4 | LIC_FILES_CHKSUM = "file://LICENSE.txt;md5=1a32aba007a415aa8a1c708a0e2b86a1" |
Brad Bishop | 316dfdd | 2018-06-25 12:45:53 -0400 | [diff] [blame] | 5 | |
| 6 | SRCNAME = "numpy" |
| 7 | |
| 8 | SRC_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 Geissler | 82c905d | 2020-04-13 13:39:40 -0500 | [diff] [blame] | 10 | file://0001-convert-shebang-from-python-to-python3.patch \ |
Brad Bishop | c342db3 | 2019-05-15 21:57:59 -0400 | [diff] [blame] | 11 | " |
Andrew Geissler | 82c905d | 2020-04-13 13:39:40 -0500 | [diff] [blame] | 12 | SRC_URI[md5sum] = "cd631c761f141d382b4e1b31c8232fc0" |
| 13 | SRC_URI[sha256sum] = "93ee59ec38f3bf8f9a42d5f4301f60e6825a4a6385a145f70badcd2bf2a11134" |
Brad Bishop | 316dfdd | 2018-06-25 12:45:53 -0400 | [diff] [blame] | 14 | |
| 15 | UPSTREAM_CHECK_URI = "https://github.com/numpy/numpy/releases" |
| 16 | UPSTREAM_CHECK_REGEX = "(?P<pver>\d+(\.\d+)+)\.tar" |
| 17 | |
Andrew Geissler | 82c905d | 2020-04-13 13:39:40 -0500 | [diff] [blame] | 18 | DEPENDS += "python3-cython-native" |
| 19 | |
Brad Bishop | 316dfdd | 2018-06-25 12:45:53 -0400 | [diff] [blame] | 20 | S = "${WORKDIR}/numpy-${PV}" |
| 21 | |
Brad Bishop | 1a4b7ee | 2018-12-16 17:11:34 -0800 | [diff] [blame] | 22 | CLEANBROKEN = "1" |
| 23 | |
Brad Bishop | 316dfdd | 2018-06-25 12:45:53 -0400 | [diff] [blame] | 24 | FILES_${PN}-staticdev += "${PYTHON_SITEPACKAGES_DIR}/numpy/core/lib/*.a" |
| 25 | |
| 26 | # install what is needed for numpy.test() |
| 27 | RDEPENDS_${PN} = "${PYTHON_PN}-unittest \ |
| 28 | ${PYTHON_PN}-difflib \ |
| 29 | ${PYTHON_PN}-pprint \ |
| 30 | ${PYTHON_PN}-pickle \ |
| 31 | ${PYTHON_PN}-shell \ |
| 32 | ${PYTHON_PN}-nose \ |
| 33 | ${PYTHON_PN}-doctest \ |
| 34 | ${PYTHON_PN}-datetime \ |
| 35 | ${PYTHON_PN}-distutils \ |
| 36 | ${PYTHON_PN}-misc \ |
| 37 | ${PYTHON_PN}-mmap \ |
| 38 | ${PYTHON_PN}-netclient \ |
| 39 | ${PYTHON_PN}-numbers \ |
| 40 | ${PYTHON_PN}-pydoc \ |
| 41 | ${PYTHON_PN}-pkgutil \ |
| 42 | ${PYTHON_PN}-email \ |
| 43 | ${PYTHON_PN}-compression \ |
| 44 | ${PYTHON_PN}-ctypes \ |
| 45 | ${PYTHON_PN}-threading \ |
Brad Bishop | 79641f2 | 2019-09-10 07:20:22 -0400 | [diff] [blame] | 46 | ${PYTHON_PN}-multiprocessing \ |
Brad Bishop | 316dfdd | 2018-06-25 12:45:53 -0400 | [diff] [blame] | 47 | " |
| 48 | |
| 49 | RDEPENDS_${PN}_class-native = "" |
| 50 | |
| 51 | BBCLASSEXTEND = "native nativesdk" |