mirror of
https://github.com/openembedded/meta-openembedded.git
synced 2026-01-13 04:46:02 +01:00
Upgrade to release 21.0.1: - drop support for Python 3.5. Python >= 3.6 is required - mypy type stubs, which should improve static analysis of pyzmq, especially for dynamically defined attributes such as zmq constants. These are new! Let us know if you find any issues. - support for zero-copy and sending bufferables with cffi backend. This is experimental! Please report issues. - zero-copy support in CFFI backend (send(copy=False) now does something). - Support sending any buffer-interface-providing objects in CFFI backend. - Errors during teardown of asyncio Sockets - Missing MSVCP140.dll in Python 3.9 wheels on Windows, causing vcruntime-redist package to be required to use the Python 3.9 wheels for pyzmq 20.0 - pyzmq-21.0.1 only changes CI configuration for Windows wheels (built with VS2017 instead of VS2019), fixing compatibility with some older Windows on all Pythons and removing requirement of VC++ redistributable package on latest Windows and Python < 3.8. 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>
27 lines
998 B
BlitzBasic
27 lines
998 B
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] = "c3a630dd7716e8e127d43b22598e256a2d11a847b8cc3310350528960037fa06"
|
|
|
|
inherit pypi pkgconfig setuptools3
|
|
|
|
RDEPENDS_${PN} += "${PYTHON_PN}-multiprocessing"
|
|
|
|
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
|
|
}
|