commit: 4d95d698e8d148079f0cd1145ff748477774c907
Author: Viorel Munteanu <ceamac <AT> gentoo <DOT> org>
AuthorDate: Sun Dec 21 19:56:54 2025 +0000
Commit: Viorel Munteanu <ceamac <AT> gentoo <DOT> org>
CommitDate: Sun Dec 21 19:58:17 2025 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=4d95d698
dev-python/pyro5: add 5.16
Signed-off-by: Viorel Munteanu <ceamac <AT> gentoo.org>
dev-python/pyro5/Manifest | 1 +
dev-python/pyro5/pyro5-5.16.ebuild | 40 ++++++++++++++++++++++++++++++++++++++
2 files changed, 41 insertions(+)
diff --git a/dev-python/pyro5/Manifest b/dev-python/pyro5/Manifest
index 56c28ac55ea0..c4fa94c81221 100644
--- a/dev-python/pyro5/Manifest
+++ b/dev-python/pyro5/Manifest
@@ -1 +1,2 @@
DIST Pyro5-5.15.tar.gz 447559 BLAKE2B
e8831a4321205a8affef5cf0b986b3a10480296b03ac132cb5faa5508a1dbe0ba59a8dfb9a7ec284483d0736224291d033a02061b277078b26c1f71b1fd6bcc8
SHA512
bafed86363b0fd94900f0c708ffb6aa664587a7c032aa974b766556ec86d5db0eb89a8ceffa0a1e7dd043be8d0a1d8826fa79e1ca95002dbe380213c367684a3
+DIST pyro5-5.16.tar.gz 448592 BLAKE2B
dbf0e144564afd7bcfa47fe8cdf9571a5b15be462705db360f2e770333482705864fb1567c028fe2d92573b6e6fcd0ef18d27ef90bf9fa41976e573975085a30
SHA512
4a3c67bedb33788f0dfb9e0d75889b339b12da8806d6f4e1ced6e4b62812071a028d232a0ef44c95841acba523aa7466317c5269f17a0ac3d62c8b3667ac6e3a
diff --git a/dev-python/pyro5/pyro5-5.16.ebuild
b/dev-python/pyro5/pyro5-5.16.ebuild
new file mode 100644
index 000000000000..121f9636563e
--- /dev/null
+++ b/dev-python/pyro5/pyro5-5.16.ebuild
@@ -0,0 +1,40 @@
+# Copyright 2021-2025 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=8
+
+DISTUTILS_USE_PEP517=setuptools
+PYTHON_COMPAT=( python3_{12..14} pypy3 pypy3_11 )
+PYTHON_REQ_USE="sqlite"
+
+inherit distutils-r1 pypi
+
+DESCRIPTION="Distributed object middleware for Python (RPC)"
+HOMEPAGE="
+ https://pyro5.readthedocs.io/
+ https://github.com/irmen/Pyro5/
+ https://pypi.org/project/Pyro5/
+"
+
+LICENSE="MIT"
+SLOT="0"
+KEYWORDS="~amd64 ~arm64 ~x86"
+
+RDEPEND="
+ dev-python/build[${PYTHON_USEDEP}]
+ >=dev-python/serpent-1.40[${PYTHON_USEDEP}]
+"
+
+EPYTEST_PLUGINS=()
+distutils_enable_tests pytest
+distutils_enable_sphinx docs/source \
+ dev-python/sphinx-rtd-theme
+
+python_test() {
+ local EPYTEST_DESELECT=(
+ # https://github.com/irmen/Pyro5/issues/83 (pypy3 specific)
+ tests/test_server.py::TestServerOnce::testRegisterWeak
+ )
+
+ epytest -m 'not network'
+}