diff options
Diffstat (limited to 'meta/recipes-devtools/python-numpy/python3-numpy_1.13.1.bb')
| -rw-r--r-- | meta/recipes-devtools/python-numpy/python3-numpy_1.13.1.bb | 113 |
1 files changed, 113 insertions, 0 deletions
diff --git a/meta/recipes-devtools/python-numpy/python3-numpy_1.13.1.bb b/meta/recipes-devtools/python-numpy/python3-numpy_1.13.1.bb new file mode 100644 index 0000000000..0bf9e914f9 --- /dev/null +++ b/meta/recipes-devtools/python-numpy/python3-numpy_1.13.1.bb | |||
| @@ -0,0 +1,113 @@ | |||
| 1 | SUMMARY = "A sophisticated Numeric Processing Package for Python" | ||
| 2 | SECTION = "devel/python" | ||
| 3 | LICENSE = "BSD-3-Clause" | ||
| 4 | LIC_FILES_CHKSUM = "file://LICENSE.txt;md5=1002b09cd654fcaa2dcc87535acd9a96" | ||
| 5 | |||
| 6 | SRCNAME = "numpy" | ||
| 7 | |||
| 8 | SRC_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 \ | ||
| 10 | file://remove-build-path-in-comments.patch \ | ||
| 11 | file://fix_shebang_f2py.patch \ | ||
| 12 | ${CONFIGFILESURI} " | ||
| 13 | SRC_URI[md5sum] = "6d459e4a24f5035f720dda3c57716a92" | ||
| 14 | SRC_URI[sha256sum] = "de020ec06f1e9ce1115a50161a38bf8d4c2525379900f9cb478cc613a1e7cd93" | ||
| 15 | |||
| 16 | UPSTREAM_CHECK_URI = "https://github.com/numpy/numpy/releases" | ||
| 17 | |||
| 18 | CONFIGFILESURI ?= "" | ||
| 19 | |||
| 20 | CONFIGFILESURI_aarch64 = " \ | ||
| 21 | file://config.h \ | ||
| 22 | file://_numpyconfig.h \ | ||
| 23 | " | ||
| 24 | CONFIGFILESURI_arm = " \ | ||
| 25 | file://config.h \ | ||
| 26 | file://numpyconfig.h \ | ||
| 27 | " | ||
| 28 | CONFIGFILESURI_armeb = " \ | ||
| 29 | file://config.h \ | ||
| 30 | file://numpyconfig.h \ | ||
| 31 | " | ||
| 32 | CONFIGFILESURI_mipsarcho32el = " \ | ||
| 33 | file://config.h \ | ||
| 34 | file://numpyconfig.h \ | ||
| 35 | " | ||
| 36 | CONFIGFILESURI_x86 = " \ | ||
| 37 | file://config.h \ | ||
| 38 | file://numpyconfig.h \ | ||
| 39 | " | ||
| 40 | CONFIGFILESURI_x86-64 = " \ | ||
| 41 | file://config.h \ | ||
| 42 | file://_numpyconfig.h \ | ||
| 43 | " | ||
| 44 | CONFIGFILESURI_mipsarcho32eb = " \ | ||
| 45 | file://config.h \ | ||
| 46 | file://_numpyconfig.h \ | ||
| 47 | " | ||
| 48 | CONFIGFILESURI_powerpc = " \ | ||
| 49 | file://config.h \ | ||
| 50 | file://_numpyconfig.h \ | ||
| 51 | " | ||
| 52 | CONFIGFILESURI_powerpc64 = " \ | ||
| 53 | file://config.h \ | ||
| 54 | file://_numpyconfig.h \ | ||
| 55 | " | ||
| 56 | CONFIGFILESURI_mipsarchn64eb = " \ | ||
| 57 | file://config.h \ | ||
| 58 | file://_numpyconfig.h \ | ||
| 59 | " | ||
| 60 | CONFIGFILESURI_mipsarchn64el = " \ | ||
| 61 | file://config.h \ | ||
| 62 | file://_numpyconfig.h \ | ||
| 63 | " | ||
| 64 | CONFIGFILESURI_mipsarchn32eb = " \ | ||
| 65 | file://config.h \ | ||
| 66 | file://_numpyconfig.h \ | ||
| 67 | " | ||
| 68 | CONFIGFILESURI_mipsarchn32el = " \ | ||
| 69 | file://config.h \ | ||
| 70 | file://_numpyconfig.h \ | ||
| 71 | " | ||
| 72 | |||
| 73 | S = "${WORKDIR}/numpy-${PV}" | ||
| 74 | |||
| 75 | inherit setuptools3 | ||
| 76 | |||
| 77 | # Make the build fail and replace *config.h with proper one | ||
| 78 | # This is a ugly, ugly hack - Koen | ||
| 79 | do_compile_prepend_class-target() { | ||
| 80 | ${STAGING_BINDIR_NATIVE}/python3-native/python3 setup.py build ${DISTUTILS_BUILD_ARGS} || \ | ||
| 81 | true | ||
| 82 | cp ${WORKDIR}/*config.h ${S}/build/$(ls ${S}/build | grep src)/numpy/core/include/numpy/ | ||
| 83 | } | ||
| 84 | |||
| 85 | FILES_${PN}-staticdev += "${PYTHON_SITEPACKAGES_DIR}/numpy/core/lib/*.a" | ||
| 86 | |||
| 87 | # install what is needed for numpy.test() | ||
| 88 | RDEPENDS_${PN} = "python3-unittest \ | ||
| 89 | python3-difflib \ | ||
| 90 | python3-pprint \ | ||
| 91 | python3-pickle \ | ||
| 92 | python3-shell \ | ||
| 93 | python3-nose \ | ||
| 94 | python3-doctest \ | ||
| 95 | python3-datetime \ | ||
| 96 | python3-distutils \ | ||
| 97 | python3-misc \ | ||
| 98 | python3-mmap \ | ||
| 99 | python3-netclient \ | ||
| 100 | python3-numbers \ | ||
| 101 | python3-pydoc \ | ||
| 102 | python3-pkgutil \ | ||
| 103 | python3-email \ | ||
| 104 | python3-subprocess \ | ||
| 105 | python3-compression \ | ||
| 106 | python3-ctypes \ | ||
| 107 | python3-threading \ | ||
| 108 | python3-textutils \ | ||
| 109 | " | ||
| 110 | |||
| 111 | RDEPENDS_${PN}_class-native = "" | ||
| 112 | |||
| 113 | BBCLASSEXTEND = "native nativesdk" | ||
