summaryrefslogtreecommitdiffstats
path: root/meta/recipes-devtools/python-numpy
diff options
context:
space:
mode:
authorAlexander Kanavin <alexander.kanavin@linux.intel.com>2016-06-02 12:26:07 +0300
committerRichard Purdie <richard.purdie@linuxfoundation.org>2016-06-03 13:13:28 +0100
commit5796328ea5ab2ab8860182b46f987d33881160cf (patch)
tree33243dbb79e06b82966ccd24e7aad44e3e2b45d2 /meta/recipes-devtools/python-numpy
parent7f2ac59d4eccdc4a64fcd30a9a9d835cd4e99c5d (diff)
downloadpoky-5796328ea5ab2ab8860182b46f987d33881160cf.tar.gz
python3-numpy: add a recipe
This is needed for updating piglit to use Python 3. Python 2 based recipe can be later moved to meta-oe. (From OE-Core rev: d08f523b71d3463f0ed604be81ae78a7a79390f3) Signed-off-by: Alexander Kanavin <alexander.kanavin@linux.intel.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'meta/recipes-devtools/python-numpy')
-rw-r--r--meta/recipes-devtools/python-numpy/python3-numpy_1.10.4.bb101
1 files changed, 101 insertions, 0 deletions
diff --git a/meta/recipes-devtools/python-numpy/python3-numpy_1.10.4.bb b/meta/recipes-devtools/python-numpy/python3-numpy_1.10.4.bb
new file mode 100644
index 0000000000..dcd23ac98d
--- /dev/null
+++ b/meta/recipes-devtools/python-numpy/python3-numpy_1.10.4.bb
@@ -0,0 +1,101 @@
1SUMMARY = "A sophisticated Numeric Processing Package for Python"
2SECTION = "devel/python"
3LICENSE = "PSF"
4LIC_FILES_CHKSUM = "file://LICENSE.txt;md5=9f4e88b5748e8313caaf33d081ce65a3"
5
6SRC_URI = "${SOURCEFORGE_MIRROR}/numpy/numpy-${PV}.tar.gz \
7 file://0001-Don-t-search-usr-and-so-on-for-libraries-by-default-.patch \
8 file://remove-build-path-in-comments.patch \
9 file://add-glibc-check.patch \
10 ${CONFIGFILESURI} "
11
12CONFIGFILESURI ?= ""
13
14CONFIGFILESURI_aarch64 = " \
15 file://config.h \
16 file://_numpyconfig.h \
17"
18CONFIGFILESURI_arm = " \
19 file://config.h \
20 file://numpyconfig.h \
21"
22CONFIGFILESURI_armeb = " \
23 file://config.h \
24 file://numpyconfig.h \
25"
26CONFIGFILESURI_mipsel = " \
27 file://config.h \
28 file://numpyconfig.h \
29"
30CONFIGFILESURI_x86 = " \
31 file://config.h \
32 file://numpyconfig.h \
33"
34CONFIGFILESURI_x86-64 = " \
35 file://config.h \
36 file://_numpyconfig.h \
37"
38CONFIGFILESURI_mips = " \
39 file://config.h \
40 file://_numpyconfig.h \
41"
42CONFIGFILESURI_powerpc = " \
43 file://config.h \
44 file://_numpyconfig.h \
45"
46CONFIGFILESURI_powerpc64 = " \
47 file://config.h \
48 file://_numpyconfig.h \
49"
50CONFIGFILESURI_mips64 = " \
51 file://config.h \
52 file://_numpyconfig.h \
53"
54CONFIGFILESURI_mips64n32 = " \
55 file://config.h \
56 file://_numpyconfig.h \
57"
58
59S = "${WORKDIR}/numpy-${PV}"
60
61inherit distutils3
62
63# Make the build fail and replace *config.h with proper one
64# This is a ugly, ugly hack - Koen
65do_compile_prepend_class-target() {
66 ${STAGING_BINDIR_NATIVE}/python3-native/python3 setup.py build ${DISTUTILS_BUILD_ARGS} || \
67 true
68 cp ${WORKDIR}/*config.h ${S}/build/$(ls ${S}/build | grep src)/numpy/core/include/numpy/
69}
70
71FILES_${PN}-staticdev += "${PYTHON_SITEPACKAGES_DIR}/numpy/core/lib/*.a"
72
73SRC_URI[md5sum] = "90bb9034652cefbada19cf7d141a6a61"
74SRC_URI[sha256sum] = "f7f91842056a7cf680b0eaf8cefc5e46c69e2521e651128d2e6aaaccec8652ae"
75
76# install what is needed for numpy.test()
77RDEPENDS_${PN} = "python3-unittest \
78 python3-difflib \
79 python3-pprint \
80 python3-pickle \
81 python3-shell \
82 python3-nose \
83 python3-doctest \
84 python3-datetime \
85 python3-distutils \
86 python3-misc \
87 python3-mmap \
88 python3-netclient \
89 python3-numbers \
90 python3-pydoc \
91 python3-pkgutil \
92 python3-email \
93 python3-subprocess \
94 python3-compression \
95 python3-ctypes \
96 python3-threading \
97"
98
99RDEPENDS_${PN}_class-native = ""
100
101BBCLASSEXTEND = "native nativesdk"