mirror of
https://github.com/openembedded/meta-openembedded.git
synced 2025-07-19 15:29:08 +02:00

22.2.1 Fix bundling of wepoll on Windows. 22.2.0 New features: IPC support on Windows: where available (64bit Windows wheels and bundled libzmq when compiling from source, via wepoll), IPC should work on appropriate Windows versions. Nicer reprs of contexts and sockets Memory allocated by recv(copy=False) is no longer read-only asyncio: Always reference current loop instead of attaching to the current loop at instantiation time. This fixes e.g. contexts and/or sockets instantiated prior to a call to asyncio.run. ssh: $PYZMQ_PARAMIKO_HOST_KEY_POLICY can be used to set the missing host key policy, e.g. AutoAdd. Fixes: Fix memory corruption in gevent integration Fix memoryview(zmq.Frame) with cffi backend Fix threadsafety issue when closing sockets Changes: pypy Windows wheels are 64b-only, following an update in cibuildwheel 2.0 deprecate zmq.utils.jsonapi and remove support for non-stdlib json implementations in send/recv_json. Custom serialization methods should be used instead. Signed-off-by: Zheng Ruoqin <zhengrq.fnst@fujitsu.com> Signed-off-by: Khem Raj <raj.khem@gmail.com> Signed-off-by: Trevor Gamblin <trevor.gamblin@windriver.com> Signed-off-by: Khem Raj <raj.khem@gmail.com>
30 lines
1.0 KiB
BlitzBasic
30 lines
1.0 KiB
BlitzBasic
SUMMARY = "Pyzmq provides Zero message queue access for the Python language"
|
|
HOMEPAGE = "http://zeromq.org/bindings:python"
|
|
LICENSE = "BSD & LGPL-3.0"
|
|
LIC_FILES_CHKSUM = "file://COPYING.BSD;md5=11c65680f637c3df7f58bbc8d133e96e \
|
|
file://COPYING.LESSER;md5=12c592fa0bcfff3fb0977b066e9cb69e"
|
|
DEPENDS = "zeromq"
|
|
|
|
FILESEXTRAPATHS:prepend := "${THISDIR}/python-pyzmq:"
|
|
|
|
SRC_URI += "file://club-rpath-out.patch"
|
|
SRC_URI[sha256sum] = "6d18c76676771fd891ca8e0e68da0bbfb88e30129835c0ade748016adb3b6242"
|
|
|
|
inherit pypi pkgconfig setuptools3
|
|
|
|
RDEPENDS:${PN} += " \
|
|
${PYTHON_PN}-multiprocessing \
|
|
${PYTHON_PN}-json \
|
|
"
|
|
|
|
FILES:${PN}-dbg =+ "${PYTHON_SITEPACKAGES_DIR}/zmq/backend/cython/.debug"
|
|
|
|
do_compile:prepend() {
|
|
echo [global] > ${S}/setup.cfg
|
|
echo zmq_prefix = ${STAGING_DIR_HOST} >> ${S}/setup.cfg
|
|
echo have_sys_un_h = True >> ${S}/setup.cfg
|
|
echo skip_check_zmq = True >> ${S}/setup.cfg
|
|
echo libzmq_extension = False >> ${S}/setup.cfg
|
|
echo no_libzmq_extension = True >> ${S}/setup.cfg
|
|
}
|