blob: f68b90e6b9fa7e805a13b2c4562b412d17555d6e [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 \
Brad Bishop316dfdd2018-06-25 12:45:53 -040010 file://0001-npy_cpu-Add-riscv-support.patch \
Brad Bishop79641f22019-09-10 07:20:22 -040011 file://0001-numpy-random-setup.py-remove-the-detection-of-x86-ta.patch \
Brad Bishopc342db32019-05-15 21:57:59 -040012 "
Brad Bishop79641f22019-09-10 07:20:22 -040013SRC_URI[md5sum] = "c48b2ad785f82cdfe28c907ce35e2a71"
14SRC_URI[sha256sum] = "47b7b6145e7ba5918ce26be25999b6d4b35cf9fbfdf46b7da50090ffdb020445"
Brad Bishop316dfdd2018-06-25 12:45:53 -040015
16UPSTREAM_CHECK_URI = "https://github.com/numpy/numpy/releases"
17UPSTREAM_CHECK_REGEX = "(?P<pver>\d+(\.\d+)+)\.tar"
18
Brad Bishop79641f22019-09-10 07:20:22 -040019# Needed for building with gcc 4.x from centos 7
20CFLAGS_append_class-native = " -std=c99"
21
Brad Bishop316dfdd2018-06-25 12:45:53 -040022S = "${WORKDIR}/numpy-${PV}"
23
Brad Bishop1a4b7ee2018-12-16 17:11:34 -080024CLEANBROKEN = "1"
25
Brad Bishop316dfdd2018-06-25 12:45:53 -040026FILES_${PN}-staticdev += "${PYTHON_SITEPACKAGES_DIR}/numpy/core/lib/*.a"
27
28# install what is needed for numpy.test()
29RDEPENDS_${PN} = "${PYTHON_PN}-unittest \
30 ${PYTHON_PN}-difflib \
31 ${PYTHON_PN}-pprint \
32 ${PYTHON_PN}-pickle \
33 ${PYTHON_PN}-shell \
34 ${PYTHON_PN}-nose \
35 ${PYTHON_PN}-doctest \
36 ${PYTHON_PN}-datetime \
37 ${PYTHON_PN}-distutils \
38 ${PYTHON_PN}-misc \
39 ${PYTHON_PN}-mmap \
40 ${PYTHON_PN}-netclient \
41 ${PYTHON_PN}-numbers \
42 ${PYTHON_PN}-pydoc \
43 ${PYTHON_PN}-pkgutil \
44 ${PYTHON_PN}-email \
45 ${PYTHON_PN}-compression \
46 ${PYTHON_PN}-ctypes \
47 ${PYTHON_PN}-threading \
Brad Bishop79641f22019-09-10 07:20:22 -040048 ${PYTHON_PN}-multiprocessing \
Brad Bishop316dfdd2018-06-25 12:45:53 -040049"
50
51RDEPENDS_${PN}_class-native = ""
52
53BBCLASSEXTEND = "native nativesdk"