summaryrefslogtreecommitdiffstats
path: root/meta-oe/recipes-devtools/python/python-numpy_1.4.1.bb
diff options
context:
space:
mode:
authorMarcin Juszkiewicz <marcin.juszkiewicz@linaro.org>2013-02-05 08:58:50 +0000
committerMartin Jansa <Martin.Jansa@gmail.com>2013-02-05 11:05:51 +0100
commit0ecbe9467c2ed3835c5e2b1f54ba52fa058e26db (patch)
treeda07d79fd9bce876e6f68b93cfc8b0d5215c3e2d /meta-oe/recipes-devtools/python/python-numpy_1.4.1.bb
parentac174eac597a7e3fd4469b3d571c6aa9525fe3b9 (diff)
downloadmeta-openembedded-0ecbe9467c2ed3835c5e2b1f54ba52fa058e26db.tar.gz
python-numpy: add 1.7.0rc1
Signed-off-by: Marcin Juszkiewicz <marcin.juszkiewicz@linaro.org> Signed-off-by: Martin Jansa <Martin.Jansa@gmail.com>
Diffstat (limited to 'meta-oe/recipes-devtools/python/python-numpy_1.4.1.bb')
-rw-r--r--meta-oe/recipes-devtools/python/python-numpy_1.4.1.bb42
1 files changed, 0 insertions, 42 deletions
diff --git a/meta-oe/recipes-devtools/python/python-numpy_1.4.1.bb b/meta-oe/recipes-devtools/python/python-numpy_1.4.1.bb
deleted file mode 100644
index 2bede0925f..0000000000
--- a/meta-oe/recipes-devtools/python/python-numpy_1.4.1.bb
+++ /dev/null
@@ -1,42 +0,0 @@
1DESCRIPTION = "A sophisticated Numeric Processing Package for Python"
2SECTION = "devel/python"
3LICENSE = "PSF"
4LIC_FILES_CHKSUM = "file://LICENSE.txt;md5=3c42211d73c3faa1026e671dd39883fa"
5PR = "r5"
6
7SRC_URI = "${SOURCEFORGE_MIRROR}/numpy/numpy-${PV}.tar.gz \
8 ${CONFIGFILESURI} \
9 "
10CONFIGFILESURI ?= ""
11
12CONFIGFILESURI_arm = "file://config.h \
13 file://numpyconfig.h \
14 "
15CONFIGFILESURI_mipsel = "file://config.h \
16 file://numpyconfig.h \
17 "
18
19S = "${WORKDIR}/numpy-${PV}"
20
21inherit distutils
22
23# Make the build fail and replace *config.h with proper one
24# This is a ugly, ugly hack - Koen
25do_compile_prepend() {
26 BUILD_SYS=${BUILD_SYS} HOST_SYS=${HOST_SYS} \
27 ${STAGING_BINDIR_NATIVE}/python-native/python setup.py build ${DISTUTILS_BUILD_ARGS} || \
28 true
29 cp ${WORKDIR}/*config.h ${S}/build/$(ls ${S}/build | grep src)/numpy/core/include/numpy/
30}
31
32SRC_URI[md5sum] = "5c7b5349dc3161763f7f366ceb96516b"
33SRC_URI[sha256sum] = "2e7bb84573e5123e07f3c919fd433bc09b78d606252b6b719e385c2a981d8e06"
34
35FILES_${PN}-staticdev += "${PYTHON_SITEPACKAGES_DIR}/numpy/core/lib/*.a"
36
37RDEPENDS_${PN} = "python-unittest \
38 python-difflib \
39 python-pprint \
40 python-pickle \
41 python-shell \
42 "