summaryrefslogtreecommitdiffstats
path: root/meta/recipes-devtools/python-numpy/python-numpy_1.11.2.bb
diff options
context:
space:
mode:
authorKhem Raj <raj.khem@gmail.com>2017-08-09 07:19:21 -0700
committerRichard Purdie <richard.purdie@linuxfoundation.org>2017-08-13 09:27:38 +0100
commit9b32a558f663502d119b94264fa6cfa98086cb52 (patch)
treead94e8731c3f894960fa533a280be7b7deaa8f7e /meta/recipes-devtools/python-numpy/python-numpy_1.11.2.bb
parent43d52e785b42a9b38419ae2959cc5983bd017deb (diff)
downloadpoky-9b32a558f663502d119b94264fa6cfa98086cb52.tar.gz
python-numpy: Upgrade to 1.13.1
Update LICENSE to BSD-3-Clause as per https://github.com/numpy/numpy/blob/master/LICENSE.txt LIC_FILES_CHKSUM changed due to copyright year change see https://github.com/numpy/numpy/commit/b2ff4f13197dd58508d3d025a9034519974750bd (From OE-Core rev: a703bb6159dd69020fb40db7a6a0811f45869972) Signed-off-by: Khem Raj <raj.khem@gmail.com> Signed-off-by: Ross Burton <ross.burton@intel.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'meta/recipes-devtools/python-numpy/python-numpy_1.11.2.bb')
-rw-r--r--meta/recipes-devtools/python-numpy/python-numpy_1.11.2.bb112
1 files changed, 0 insertions, 112 deletions
diff --git a/meta/recipes-devtools/python-numpy/python-numpy_1.11.2.bb b/meta/recipes-devtools/python-numpy/python-numpy_1.11.2.bb
deleted file mode 100644
index c4bc354036..0000000000
--- a/meta/recipes-devtools/python-numpy/python-numpy_1.11.2.bb
+++ /dev/null
@@ -1,112 +0,0 @@
1SUMMARY = "A sophisticated Numeric Processing Package for Python"
2SECTION = "devel/python"
3LICENSE = "PSF"
4LIC_FILES_CHKSUM = "file://LICENSE.txt;md5=7e51a5677b22b865abbfb3dff6ffb2d0"
5
6SRCNAME = "numpy"
7
8SRC_URI = "https://files.pythonhosted.org/packages/source/n/${SRCNAME}/${SRCNAME}-${PV}.tar.gz \
9 file://0001-Don-t-search-usr-and-so-on-for-libraries-by-default-.patch \
10 file://remove-build-path-in-comments.patch \
11 file://fix_shebang_f2py.patch \
12 ${CONFIGFILESURI} "
13UPSTREAM_CHECK_URI = "https://sourceforge.net/projects/numpy/files/"
14
15CONFIGFILESURI ?= ""
16
17CONFIGFILESURI_aarch64 = " \
18 file://config.h \
19 file://_numpyconfig.h \
20"
21CONFIGFILESURI_arm = " \
22 file://config.h \
23 file://numpyconfig.h \
24"
25CONFIGFILESURI_armeb = " \
26 file://config.h \
27 file://numpyconfig.h \
28"
29CONFIGFILESURI_mipsarcho32el = " \
30 file://config.h \
31 file://numpyconfig.h \
32"
33CONFIGFILESURI_x86 = " \
34 file://config.h \
35 file://numpyconfig.h \
36"
37CONFIGFILESURI_x86-64 = " \
38 file://config.h \
39 file://_numpyconfig.h \
40"
41CONFIGFILESURI_mipsarcho32eb = " \
42 file://config.h \
43 file://_numpyconfig.h \
44"
45CONFIGFILESURI_powerpc = " \
46 file://config.h \
47 file://_numpyconfig.h \
48"
49CONFIGFILESURI_powerpc64 = " \
50 file://config.h \
51 file://_numpyconfig.h \
52"
53CONFIGFILESURI_mipsarchn64eb = " \
54 file://config.h \
55 file://_numpyconfig.h \
56"
57CONFIGFILESURI_mipsarchn64el = " \
58 file://config.h \
59 file://_numpyconfig.h \
60"
61CONFIGFILESURI_mipsarchn32eb = " \
62 file://config.h \
63 file://_numpyconfig.h \
64"
65CONFIGFILESURI_mipsarchn32el = " \
66 file://config.h \
67 file://_numpyconfig.h \
68"
69
70S = "${WORKDIR}/numpy-${PV}"
71
72inherit setuptools
73
74# Make the build fail and replace *config.h with proper one
75# This is a ugly, ugly hack - Koen
76do_compile_prepend_class-target() {
77 ${STAGING_BINDIR_NATIVE}/python-native/python setup.py build ${DISTUTILS_BUILD_ARGS} || \
78 true
79 cp ${WORKDIR}/*config.h ${S}/build/$(ls ${S}/build | grep src)/numpy/core/include/numpy/
80}
81
82FILES_${PN}-staticdev += "${PYTHON_SITEPACKAGES_DIR}/numpy/core/lib/*.a"
83
84SRC_URI[md5sum] = "03bd7927c314c43780271bf1ab795ebc"
85SRC_URI[sha256sum] = "04db2fbd64e2e7c68e740b14402b25af51418fc43a59d9e54172b38b906b0f69"
86
87# install what is needed for numpy.test()
88RDEPENDS_${PN} = "python-unittest \
89 python-difflib \
90 python-pprint \
91 python-pickle \
92 python-shell \
93 python-nose \
94 python-doctest \
95 python-datetime \
96 python-distutils \
97 python-misc \
98 python-mmap \
99 python-netclient \
100 python-numbers \
101 python-pydoc \
102 python-pkgutil \
103 python-email \
104 python-subprocess \
105 python-compression \
106 python-ctypes \
107 python-threading \
108"
109
110RDEPENDS_${PN}_class-native = ""
111
112BBCLASSEXTEND = "native nativesdk"