summaryrefslogtreecommitdiffstats
path: root/meta-python/recipes-devtools/python/python3-pyzmq_22.0.2.bb
diff options
context:
space:
mode:
authorLeon Anavi <leon.anavi@konsulko.com>2021-01-29 15:10:28 +0200
committerKhem Raj <raj.khem@gmail.com>2021-02-01 10:44:46 -0800
commitdc8afb18c1cea424e175473ab6ad550bd3809f40 (patch)
tree44e958c6b6efa94e39c86f346b83aa4355dbcad4 /meta-python/recipes-devtools/python/python3-pyzmq_22.0.2.bb
parent10ffcd08e05e799674ec4fab1e41b746801ce464 (diff)
downloadmeta-openembedded-dc8afb18c1cea424e175473ab6ad550bd3809f40.tar.gz
python3-pyzmq: Upgrade 21.0.2 -> 22.0.2
Upgrade to release 22.0.2: - Add workaround for bug in DLL loading for Windows wheels with conda Python >= 3.8 - Fix type of Frame.bytes for non-copying recvs with CFFI backend (regression in 21.0) - Add manylinux wheels for pypy - Some typing fixes - Bump bundled libzmq to 4.3.4 - Strip unused symbols in manylinux wheels, resulting in dramatically smaller binaries. This matches behavior in v20 and earlier. - Windows CPython wheels bundle public libzmq binary builds, instead of building libzmq as a Python Extension. This means they include libsodium for the first time. - Our own implementation of bundling libzmq into pyzmq on Windows is removed, instead relying on delvewheel (or installations putting dlls on %PATH%) to bundle dependency dlls. - The (new in 21.0) Windows wheels for PyPy likely require the Windows vcredist package. This may have always been the case, but the delvewheel approach doesn't seem to work. - Windows + PyPy is now the only remaining case where a wheel has libzmq built as an Extension. All other builds ship libzmq built using its own tooling, which should result in better, more stable builds. Signed-off-by: Leon Anavi <leon.anavi@konsulko.com> Acked-by: Trevor Gamblin <trevor.gamblin@windriver.com> Signed-off-by: Khem Raj <raj.khem@gmail.com>
Diffstat (limited to 'meta-python/recipes-devtools/python/python3-pyzmq_22.0.2.bb')
-rw-r--r--meta-python/recipes-devtools/python/python3-pyzmq_22.0.2.bb26
1 files changed, 26 insertions, 0 deletions
diff --git a/meta-python/recipes-devtools/python/python3-pyzmq_22.0.2.bb b/meta-python/recipes-devtools/python/python3-pyzmq_22.0.2.bb
new file mode 100644
index 0000000000..555f27cb49
--- /dev/null
+++ b/meta-python/recipes-devtools/python/python3-pyzmq_22.0.2.bb
@@ -0,0 +1,26 @@
1SUMMARY = "Pyzmq provides Zero message queue access for the Python language"
2HOMEPAGE = "http://zeromq.org/bindings:python"
3LICENSE = "BSD & LGPL-3.0"
4LIC_FILES_CHKSUM = "file://COPYING.BSD;md5=11c65680f637c3df7f58bbc8d133e96e \
5 file://COPYING.LESSER;md5=12c592fa0bcfff3fb0977b066e9cb69e"
6DEPENDS = "zeromq"
7
8FILESEXTRAPATHS_prepend := "${THISDIR}/python-pyzmq:"
9
10SRC_URI += "file://club-rpath-out.patch"
11SRC_URI[sha256sum] = "d7b82a959e5e22d492f4f5a1e650e909a6c8c76ede178f538313ddb9d1e92963"
12
13inherit pypi pkgconfig setuptools3
14
15RDEPENDS_${PN} += "${PYTHON_PN}-multiprocessing"
16
17FILES_${PN}-dbg =+ "${PYTHON_SITEPACKAGES_DIR}/zmq/backend/cython/.debug"
18
19do_compile_prepend() {
20 echo [global] > ${S}/setup.cfg
21 echo zmq_prefix = ${STAGING_DIR_HOST} >> ${S}/setup.cfg
22 echo have_sys_un_h = True >> ${S}/setup.cfg
23 echo skip_check_zmq = True >> ${S}/setup.cfg
24 echo libzmq_extension = False >> ${S}/setup.cfg
25 echo no_libzmq_extension = True >> ${S}/setup.cfg
26}