commit:     1bd5fe72031f6219d29b01f1e2a55e318f65f522
Author:     Michał Górny <mgorny <AT> gentoo <DOT> org>
AuthorDate: Fri Aug 11 06:16:33 2023 +0000
Commit:     Michał Górny <mgorny <AT> gentoo <DOT> org>
CommitDate: Fri Aug 11 06:35:28 2023 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=1bd5fe72

dev-python/pyzmq: Bump to 25.1.1

Signed-off-by: Michał Górny <mgorny <AT> gentoo.org>

 dev-python/pyzmq/Manifest            |  1 +
 dev-python/pyzmq/pyzmq-25.1.1.ebuild | 84 ++++++++++++++++++++++++++++++++++++
 2 files changed, 85 insertions(+)

diff --git a/dev-python/pyzmq/Manifest b/dev-python/pyzmq/Manifest
index d38c7e62d2fe..3d938ca11667 100644
--- a/dev-python/pyzmq/Manifest
+++ b/dev-python/pyzmq/Manifest
@@ -1,2 +1,3 @@
 DIST pyzmq-25.0.2.gh.tar.gz 398050 BLAKE2B 
501aea8b46ef5c06ca75489869047b2e6aefd06d121b540fdfc85c45ea2f9a40b58b84433555d8001fbfb1671ad6df1953c79567aabc8cffba26516a4a60626c
 SHA512 
dcba8fb561d1be135ba03e28078ed68835dc20a52ef9c47be240bd1edd37eb92d4da184045e8eff666f3d84a376ae35ca08172fc207823b5255160e9e3b1ef01
 DIST pyzmq-25.1.0.gh.tar.gz 399044 BLAKE2B 
c5507819844f174fcc5245fd89e6bff231ddc99add2c431a77a73955ce5e874f7387727380dee6a0618842762ed19a867699efed69c7997d5d4bcca480e30c44
 SHA512 
5a2a80162da4d1eb34cc13bc831cf01b98a1cfb62dd0595b81e47e77d752ecd59110fd447e5a936f74239253073fc5ceb6451e924928cd2c472e2ac61d26a78c
+DIST pyzmq-25.1.1.gh.tar.gz 389825 BLAKE2B 
d8e231a0eeaa6a7ad372da912cb42e96e4d862e163859b97d1c369a7940e019c074fc717685f53da06de69cfee79430e343fcd1987d768f3cc99ec75cad0955b
 SHA512 
4aa0d5d5c1036e6ac35898c48d9612f677ee6e9345fafd02091ba81a5081f1ac8bf552eb5c03636ad643cc87e17f037013ec981d9b852c0252d30de8ce046d5a

diff --git a/dev-python/pyzmq/pyzmq-25.1.1.ebuild 
b/dev-python/pyzmq/pyzmq-25.1.1.ebuild
new file mode 100644
index 000000000000..ecdc730d9117
--- /dev/null
+++ b/dev-python/pyzmq/pyzmq-25.1.1.ebuild
@@ -0,0 +1,84 @@
+# Copyright 1999-2023 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=8
+
+DISTUTILS_EXT=1
+DISTUTILS_USE_PEP517=setuptools
+PYTHON_COMPAT=( python3_{10..12} )
+PYTHON_REQ_USE="threads(+)"
+
+inherit distutils-r1
+
+DESCRIPTION="Lightweight and super-fast messaging library built on top of the 
ZeroMQ library"
+HOMEPAGE="
+       https://zeromq.org/languages/python/
+       https://pypi.org/project/pyzmq/
+       https://github.com/zeromq/pyzmq/
+"
+SRC_URI="
+       https://github.com/zeromq/pyzmq/archive/v${PV}.tar.gz
+               -> ${P}.gh.tar.gz
+"
+
+LICENSE="LGPL-3"
+SLOT="0"
+KEYWORDS="~amd64 ~arm ~arm64 ~hppa ~ia64 ~loong ~m68k ~mips ~ppc ~ppc64 ~riscv 
~s390 ~sparc ~x86 ~amd64-linux ~x86-linux"
+IUSE="drafts"
+
+# There are additional test failures if zeromq has the draft api enabled, but 
pyzmq has it disabled.
+DEPEND="
+       >=net-libs/zeromq-4.2.2-r2:=[drafts=]
+"
+# It uses cffi backend for pypy, cython backend for cpython
+RDEPEND="${DEPEND}
+       $(python_gen_cond_dep '
+               dev-python/py[${PYTHON_USEDEP}]
+               dev-python/cffi:=[${PYTHON_USEDEP}]
+       ' pypy3)
+"
+BDEPEND="
+       $(python_gen_cond_dep '
+               dev-python/cython[${PYTHON_USEDEP}]
+       ' 'python*')
+       test? (
+               dev-python/pytest-asyncio[${PYTHON_USEDEP}]
+               dev-python/pytest-rerunfailures[${PYTHON_USEDEP}]
+               >=dev-python/tornado-5.0.2[${PYTHON_USEDEP}]
+       )
+"
+
+PATCHES=(
+       "${FILESDIR}"/${PN}-23.2.0-libdir.patch
+)
+
+EPYTEST_DESELECT=(
+       # TODO
+       zmq/tests/test_auth.py
+       zmq/tests/test_cython.py
+       zmq/tests/test_zmqstream.py
+)
+
+EPYTEST_IGNORE=(
+       # Avoid dependency on mypy
+       zmq/tests/test_mypy.py
+)
+
+distutils_enable_tests pytest
+# TODO: Package enum_tools
+# distutils_enable_sphinx docs/source \
+#      dev-python/numpydoc \
+#      dev-python/sphinx-rtd-theme \
+#      dev-python/myst-parser
+
+python_prepare_all() {
+       export ZMQ_DRAFT_API=$(usex drafts '1' '0')
+       export ZMQ_PREFIX="${EPREFIX}/usr"
+       distutils-r1_python_prepare_all
+}
+
+python_test() {
+       local -x PYTEST_DISABLE_PLUGIN_AUTOLOAD=1
+       cd "${BUILD_DIR}/install$(python_get_sitedir)" || die
+       epytest -p asyncio -p rerunfailures
+}

Reply via email to