python3-pyzmq: update to 23.2.0.

This commit is contained in:
Andrew J. Hesford 2022-06-23 22:16:04 -04:00
parent 3d94a2de24
commit fe9032530b

View file

@ -1,6 +1,6 @@
# Template file for 'python3-pyzmq'
pkgname=python3-pyzmq
version=23.1.0
version=23.2.0
revision=1
wrksrc="pyzmq-${version}"
build_style=python3-module
@ -8,14 +8,14 @@ make_build_args="--zmq=${XBPS_CROSS_BASE}/usr"
hostmakedepends="python3-setuptools python3-packaging"
makedepends="zeromq-devel python3-devel"
depends="python3"
checkdepends="python3-pytest"
checkdepends="python3-pytest-xdist"
short_desc="Python3 bindings for the ZeroMQ messaging library"
maintainer="Andrew J. Hesford <ajh@sideband.org>"
license="LGPL-3.0-or-later, BSD-3-Clause"
homepage="https://pyzmq.readthedocs.io/"
changelog="https://pyzmq.readthedocs.io/en/latest/changelog.html"
distfiles="${PYPI_SITE}/p/pyzmq/pyzmq-${version}.tar.gz"
checksum=1df26aa854bdd3a8341bf199064dd6aa6e240f2eaa3c9fa8d217e5d8b868c73e
checksum=a51f12a8719aad9dcfb55d456022f16b90abc8dde7d3ca93ce3120b40e3fa169
pre_build() {
cat > setup.cfg <<-EOF
@ -25,7 +25,8 @@ pre_build() {
}
do_check() {
(cd build/lib* && python3 -m pytest zmq/tests -k 'not test_cython')
(cd build/lib* && \
python3 -m pytest -n $XBPS_MAKEJOBS zmq/tests -k 'not test_cython')
}
post_install() {