diff options
Diffstat (limited to 'meta-python/recipes-devtools/python/python3-pyzmq_25.1.2.bb')
-rw-r--r-- | meta-python/recipes-devtools/python/python3-pyzmq_25.1.2.bb | 58 |
1 files changed, 0 insertions, 58 deletions
diff --git a/meta-python/recipes-devtools/python/python3-pyzmq_25.1.2.bb b/meta-python/recipes-devtools/python/python3-pyzmq_25.1.2.bb deleted file mode 100644 index 2a6993c141..0000000000 --- a/meta-python/recipes-devtools/python/python3-pyzmq_25.1.2.bb +++ /dev/null | |||
@@ -1,58 +0,0 @@ | |||
1 | SUMMARY = "PyZMQ: Python bindings for ZMQ" | ||
2 | DESCRIPTION = "This package contains Python bindings for ZeroMQ. ZMQ is a lightweight and fast messaging implementation." | ||
3 | HOMEPAGE = "http://zeromq.org/bindings:python" | ||
4 | LICENSE = "BSD-3-Clause & LGPL-3.0-only" | ||
5 | LIC_FILES_CHKSUM = "\ | ||
6 | file://LICENSE.BSD;md5=1787206f198344195a671b60326c59dc \ | ||
7 | file://LICENSE.LESSER;md5=0e99bfbdd8b9d33b0221986fe3be89ed \ | ||
8 | " | ||
9 | |||
10 | DEPENDS = "python3-packaging-native python3-cython-native python3-setuptools-scm-native zeromq" | ||
11 | |||
12 | SRC_URI:append = " \ | ||
13 | file://club-rpath-out.patch \ | ||
14 | file://run-ptest \ | ||
15 | " | ||
16 | SRC_URI[sha256sum] = "93f1aa311e8bb912e34f004cf186407a4e90eec4f0ecc0efd26056bf7eda0226" | ||
17 | |||
18 | inherit pypi pkgconfig python_setuptools_build_meta ptest | ||
19 | |||
20 | PACKAGES =+ "\ | ||
21 | ${PN}-test \ | ||
22 | " | ||
23 | |||
24 | FILES:${PN}-test += "\ | ||
25 | ${PYTHON_SITEPACKAGES_DIR}/*/tests \ | ||
26 | " | ||
27 | |||
28 | RDEPENDS:${PN} += "\ | ||
29 | python3-json \ | ||
30 | python3-multiprocessing \ | ||
31 | python3-tornado \ | ||
32 | " | ||
33 | |||
34 | RDEPENDS:${PN}-ptest += "\ | ||
35 | ${PN}-test \ | ||
36 | python3-pytest \ | ||
37 | python3-unittest-automake-output \ | ||
38 | python3-unixadmin \ | ||
39 | " | ||
40 | |||
41 | do_compile:prepend() { | ||
42 | echo [global] > ${S}/setup.cfg | ||
43 | echo zmq_prefix = ${STAGING_DIR_HOST} >> ${S}/setup.cfg | ||
44 | echo have_sys_un_h = True >> ${S}/setup.cfg | ||
45 | echo skip_check_zmq = True >> ${S}/setup.cfg | ||
46 | echo libzmq_extension = False >> ${S}/setup.cfg | ||
47 | echo no_libzmq_extension = True >> ${S}/setup.cfg | ||
48 | } | ||
49 | |||
50 | do_install:append() { | ||
51 | sed -i -e 's#${RECIPE_SYSROOT}##g' ${D}${PYTHON_SITEPACKAGES_DIR}/zmq/utils/config.json | ||
52 | sed -i -e 's#${RECIPE_SYSROOT}##g' ${D}${PYTHON_SITEPACKAGES_DIR}/zmq/utils/compiler.json | ||
53 | } | ||
54 | |||
55 | do_install_ptest() { | ||
56 | install -d ${D}${PTEST_PATH}/tests | ||
57 | cp -rf ${S}/zmq/tests/* ${D}${PTEST_PATH}/tests/ | ||
58 | } | ||