blob: 796b256b668486564470bc6d5d6b786a1c1dd068 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
|
# Copyright 1999-2024 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
EAPI=8
DISTUTILS_EXT=1
DISTUTILS_USE_PEP517=scikit-build-core
PYTHON_COMPAT=( pypy3 python3_{10..13} )
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="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~loong ~m68k ~ppc ~ppc64 ~riscv ~s390 ~sparc ~x86 ~amd64-linux ~x86-linux ~arm64-macos ~x64-macos"
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}
"
BDEPEND="
dev-python/packaging[${PYTHON_USEDEP}]
$(python_gen_cond_dep '
>=dev-python/cython-3.0.0[${PYTHON_USEDEP}]
' 'python*')
test? (
dev-python/pytest-asyncio[${PYTHON_USEDEP}]
dev-python/pytest-rerunfailures[${PYTHON_USEDEP}]
>=dev-python/tornado-5.0.2[${PYTHON_USEDEP}]
)
"
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
src_configure() {
DISTUTILS_ARGS=(
-DZMQ_DRAFT_API="$(usex drafts)"
)
}
python_test() {
local EPYTEST_IGNORE=(
# Avoid dependency on mypy
tests/test_mypy.py
)
case ${EPYTHON} in
pypy3)
EPYTEST_DESELECT+=(
# not implemented in cffi variant?
tests/test_draft.py::TestDraftSockets
)
esac
local -x PYTEST_DISABLE_PLUGIN_AUTOLOAD=1
rm -rf zmq || die
# avoid large to reduce memory consumption
epytest -p asyncio -p rerunfailures tests -m "not large"
}
|