summaryrefslogtreecommitdiffstats
path: root/meta-python/recipes-devtools/python/python3-pyzmq_27.0.2.bb
diff options
context:
space:
mode:
authorWang Mingyu <wangmy@fujitsu.com>2025-09-03 17:03:07 +0800
committerKhem Raj <raj.khem@gmail.com>2025-09-04 10:28:29 -0700
commit1a21ec26e50bc584c85a133727f86ea589d7af8b (patch)
tree83fc5d6d590509462dc8997a1c74a04fc678a6ee /meta-python/recipes-devtools/python/python3-pyzmq_27.0.2.bb
parent67c9f3ef34a92b83dcf8860b0db858dd89424cca (diff)
downloadmeta-openembedded-1a21ec26e50bc584c85a133727f86ea589d7af8b.tar.gz
python3-pyzmq: upgrade 27.0.1 -> 27.0.2
Signed-off-by: Wang Mingyu <wangmy@fujitsu.com> Signed-off-by: Khem Raj <raj.khem@gmail.com>
Diffstat (limited to 'meta-python/recipes-devtools/python/python3-pyzmq_27.0.2.bb')
-rw-r--r--meta-python/recipes-devtools/python/python3-pyzmq_27.0.2.bb62
1 files changed, 62 insertions, 0 deletions
diff --git a/meta-python/recipes-devtools/python/python3-pyzmq_27.0.2.bb b/meta-python/recipes-devtools/python/python3-pyzmq_27.0.2.bb
new file mode 100644
index 0000000000..6607b7c34d
--- /dev/null
+++ b/meta-python/recipes-devtools/python/python3-pyzmq_27.0.2.bb
@@ -0,0 +1,62 @@
1SUMMARY = "PyZMQ: Python bindings for ZMQ"
2DESCRIPTION = "This package contains Python bindings for ZeroMQ. ZMQ is a lightweight and fast messaging implementation."
3HOMEPAGE = "https://zeromq.org/bindings:python"
4LICENSE = "BSD-3-Clause"
5LIC_FILES_CHKSUM = "\
6 file://LICENSE.md;md5=1787206f198344195a671b60326c59dc \
7"
8
9DEPENDS = "python3-packaging-native \
10 python3-setuptools-scm-native \
11 python3-scikit-build-core-native \
12 cmake-native \
13 ninja-native \
14 zeromq \
15"
16
17PEP517_BUILD_OPTS = "--skip-dependency-check \
18 -Ccmake.define.PYZMQ_LIBZMQ_RPATH=OFF \
19 -Ccmake.define.PYZMQ_NO_BUNDLE=ON \
20 -Ccmake.define.CMAKE_FIND_ROOT_PATH_MODE_PACKAGE=ONLY \
21 -Ccmake.define.CMAKE_FIND_ROOT_PATH_MODE_PROGRAM=ONLY \
22 -Ccmake.define.CMAKE_FIND_ROOT_PATH_MODE_LIBRARY=ONLY \
23 -Ccmake.define.CMAKE_FIND_ROOT_PATH_MODE_INCLUDE=ONLY \
24 -Ccmake.define.CMAKE_FIND_ROOT_PATH="${STAGING_DIR_NATIVE}" \
25 -Ccmake.build-type="RelWithDebInfo" \
26"
27
28SRC_URI:append = " \
29 file://run-ptest \
30"
31
32SRC_URI[sha256sum] = "b398dd713b18de89730447347e96a0240225e154db56e35b6bb8447ffdb07798"
33
34inherit pypi pkgconfig python_setuptools_build_meta ptest cython
35
36PACKAGES =+ "\
37 ${PN}-test \
38"
39
40FILES:${PN}-test += "\
41 ${PYTHON_SITEPACKAGES_DIR}/*/tests \
42"
43
44RDEPENDS:${PN} += "\
45 python3-json \
46 python3-multiprocessing \
47 python3-tornado \
48"
49
50RDEPENDS:${PN}-ptest += "\
51 ${PN}-test \
52 python3-pytest \
53 python3-asyncio \
54 python3-pytest-asyncio \
55 python3-unittest-automake-output \
56 python3-unixadmin \
57"
58
59do_install_ptest() {
60 install -d ${D}${PTEST_PATH}/tests
61 cp -rf ${S}/tests/* ${D}${PTEST_PATH}/tests/
62}