diff options
| author | Alexander Kanavin <alexander.kanavin@linux.intel.com> | 2015-12-10 13:27:16 +0200 |
|---|---|---|
| committer | Richard Purdie <richard.purdie@linuxfoundation.org> | 2015-12-16 12:12:17 +0000 |
| commit | 4e653b52125d0979504f873ce829e1c8681518cf (patch) | |
| tree | 92eb5aea23744347ac50b4400adb15ed6aa41935 /meta/recipes-devtools/python/python-numpy_1.7.0.bb | |
| parent | 90b72129726fea6723abb0bedf2e65887d02b60a (diff) | |
| download | poky-4e653b52125d0979504f873ce829e1c8681518cf.tar.gz | |
python-numpy: update to 1.10.1
LICENSE checksum has changed due to updated copyright years
(From OE-Core rev: 3c3932f3560c898e32287c8733b61180685ee539)
Signed-off-by: Alexander Kanavin <alexander.kanavin@linux.intel.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/python-numpy_1.7.0.bb')
| -rw-r--r-- | meta/recipes-devtools/python/python-numpy_1.7.0.bb | 99 |
1 files changed, 0 insertions, 99 deletions
diff --git a/meta/recipes-devtools/python/python-numpy_1.7.0.bb b/meta/recipes-devtools/python/python-numpy_1.7.0.bb deleted file mode 100644 index 81cdfde2b1..0000000000 --- a/meta/recipes-devtools/python/python-numpy_1.7.0.bb +++ /dev/null | |||
| @@ -1,99 +0,0 @@ | |||
| 1 | SUMMARY = "A sophisticated Numeric Processing Package for Python" | ||
| 2 | SECTION = "devel/python" | ||
| 3 | LICENSE = "PSF" | ||
| 4 | LIC_FILES_CHKSUM = "file://LICENSE.txt;md5=f87832d854acbade6e9f5c601c8b30b1" | ||
| 5 | PR = "r1" | ||
| 6 | |||
| 7 | SRC_URI = "${SOURCEFORGE_MIRROR}/numpy/numpy-${PV}.tar.gz \ | ||
| 8 | file://no-host-paths.patch \ | ||
| 9 | ${CONFIGFILESURI} " | ||
| 10 | |||
| 11 | CONFIGFILESURI ?= "" | ||
| 12 | |||
| 13 | CONFIGFILESURI_aarch64 = " \ | ||
| 14 | file://config.h \ | ||
| 15 | file://_numpyconfig.h \ | ||
| 16 | " | ||
| 17 | CONFIGFILESURI_arm = " \ | ||
| 18 | file://config.h \ | ||
| 19 | file://numpyconfig.h \ | ||
| 20 | " | ||
| 21 | CONFIGFILESURI_armeb = " \ | ||
| 22 | file://config.h \ | ||
| 23 | file://numpyconfig.h \ | ||
| 24 | " | ||
| 25 | CONFIGFILESURI_mipsel = " \ | ||
| 26 | file://config.h \ | ||
| 27 | file://numpyconfig.h \ | ||
| 28 | " | ||
| 29 | CONFIGFILESURI_x86 = " \ | ||
| 30 | file://config.h \ | ||
| 31 | file://numpyconfig.h \ | ||
| 32 | " | ||
| 33 | CONFIGFILESURI_x86-64 = " \ | ||
| 34 | file://config.h \ | ||
| 35 | file://_numpyconfig.h \ | ||
| 36 | " | ||
| 37 | CONFIGFILESURI_mips = " \ | ||
| 38 | file://config.h \ | ||
| 39 | file://_numpyconfig.h \ | ||
| 40 | " | ||
| 41 | CONFIGFILESURI_powerpc = " \ | ||
| 42 | file://config.h \ | ||
| 43 | file://_numpyconfig.h \ | ||
| 44 | " | ||
| 45 | CONFIGFILESURI_powerpc64 = " \ | ||
| 46 | file://config.h \ | ||
| 47 | file://_numpyconfig.h \ | ||
| 48 | " | ||
| 49 | CONFIGFILESURI_mips64 = " \ | ||
| 50 | file://config.h \ | ||
| 51 | file://_numpyconfig.h \ | ||
| 52 | " | ||
| 53 | CONFIGFILESURI_mips64n32 = " \ | ||
| 54 | file://config.h \ | ||
| 55 | file://_numpyconfig.h \ | ||
| 56 | " | ||
| 57 | |||
| 58 | S = "${WORKDIR}/numpy-${PV}" | ||
| 59 | |||
| 60 | inherit distutils | ||
| 61 | |||
| 62 | # Make the build fail and replace *config.h with proper one | ||
| 63 | # This is a ugly, ugly hack - Koen | ||
| 64 | do_compile_prepend_class-target() { | ||
| 65 | BUILD_SYS=${BUILD_SYS} HOST_SYS=${HOST_SYS} \ | ||
| 66 | ${STAGING_BINDIR_NATIVE}/python-native/python 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 | |||
| 71 | FILES_${PN}-staticdev += "${PYTHON_SITEPACKAGES_DIR}/numpy/core/lib/*.a" | ||
| 72 | |||
| 73 | SRC_URI[md5sum] = "4fa54e40b6a243416f0248123b6ec332" | ||
| 74 | SRC_URI[sha256sum] = "f4fa70b7edbab65ee6432eb63743f5489f1919c614632b20b2fb45aa7e682ac6" | ||
| 75 | |||
| 76 | # install what is needed for numpy.test() | ||
| 77 | RDEPENDS_${PN} = "python-unittest \ | ||
| 78 | python-difflib \ | ||
| 79 | python-pprint \ | ||
| 80 | python-pickle \ | ||
| 81 | python-shell \ | ||
| 82 | python-nose \ | ||
| 83 | python-doctest \ | ||
| 84 | python-datetime \ | ||
| 85 | python-distutils \ | ||
| 86 | python-misc \ | ||
| 87 | python-mmap \ | ||
| 88 | python-netclient \ | ||
| 89 | python-numbers \ | ||
| 90 | python-pydoc \ | ||
| 91 | python-pkgutil \ | ||
| 92 | python-email \ | ||
| 93 | python-subprocess \ | ||
| 94 | python-compression \ | ||
| 95 | " | ||
| 96 | |||
| 97 | RDEPENDS_${PN}_class-native = "" | ||
| 98 | |||
| 99 | BBCLASSEXTEND = "native nativesdk" | ||
