commit: 077c419fa11bb7a6f94bf04e758543ebbb7c5ef6
Author: Arthur Zamarin <arthurzam <AT> gentoo <DOT> org>
AuthorDate: Sat Jan 10 11:28:54 2026 +0000
Commit: Arthur Zamarin <arthurzam <AT> gentoo <DOT> org>
CommitDate: Sat Jan 10 11:41:25 2026 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=077c419f
dev-python/websockets: add 16.0
Signed-off-by: Arthur Zamarin <arthurzam <AT> gentoo.org>
dev-python/websockets/Manifest | 1 +
dev-python/websockets/websockets-16.0.ebuild | 60 ++++++++++++++++++++++++++++
2 files changed, 61 insertions(+)
diff --git a/dev-python/websockets/Manifest b/dev-python/websockets/Manifest
index 078ff64a1c2a..37768e4e4ad7 100644
--- a/dev-python/websockets/Manifest
+++ b/dev-python/websockets/Manifest
@@ -1 +1,2 @@
DIST websockets-15.0.1.gh.tar.gz 455094 BLAKE2B
c3bb0fb19624dbe7d5474584b360415931677ea553170483caee142e8a78120e449902b8ccff76f37ced1959f2758480e536d196fd9488c9a54281e2d82e2820
SHA512
878a5c19e393b4f5994bbe7a4c9d1266d97eaa02e2610f307a62ee9af2386a1210387d2cb81c19b4795ab76b80de4e9e2bfcad89e0bca3f7b9db76ce0a148ebb
+DIST websockets-16.0.gh.tar.gz 458014 BLAKE2B
409323f84f919064f758ad06bccf526d1aafac7aee791b9fd35908081ad13cbd252ca49cefbfdc870e5526da82e641750ee46f0103e53c10f0e9b35f9483982f
SHA512
ed0bfe6e6402c1504680e9afcb7478e06a5f1af6c0761e35a9a6192569b59c5cce5d0a9f0aaea35922e499a3968dba409cb8d398829e9dff6466db5cb5b98b98
diff --git a/dev-python/websockets/websockets-16.0.ebuild
b/dev-python/websockets/websockets-16.0.ebuild
new file mode 100644
index 000000000000..54aec4a413f6
--- /dev/null
+++ b/dev-python/websockets/websockets-16.0.ebuild
@@ -0,0 +1,60 @@
+# Copyright 1999-2026 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=8
+
+DISTUTILS_EXT=1
+DISTUTILS_USE_PEP517=setuptools
+PYTHON_COMPAT=( pypy3_11 python3_{11..14} )
+
+inherit distutils-r1
+
+DESCRIPTION="Library for building WebSocket servers and clients in Python"
+HOMEPAGE="
+ https://websockets.readthedocs.io/
+ https://github.com/python-websockets/websockets/
+ https://pypi.org/project/websockets/
+"
+# tests are missing pypi sdist, as of 16.0
+SRC_URI="
+ https://github.com/python-websockets/websockets/archive/${PV}.tar.gz
+ -> ${P}.gh.tar.gz
+"
+
+LICENSE="BSD"
+SLOT="0"
+KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~loong ~mips ~ppc ~ppc64 ~riscv
~s390 ~sparc ~x86"
+IUSE="+native-extensions"
+
+BDEPEND="
+ test? (
+ dev-python/pytest-rerunfailures[${PYTHON_USEDEP}]
+ dev-python/werkzeug[${PYTHON_USEDEP}]
+ )
+"
+
+distutils_enable_tests pytest
+
+python_compile() {
+ if use native-extensions && [[ ${EPYTHON} != pypy3 ]] ; then
+ local -x BUILD_EXTENSION=yes
+ else
+ local -x BUILD_EXTENSION=no
+ fi
+
+ distutils-r1_python_compile
+}
+
+python_test() {
+ local EPYTEST_DESELECT=(
+ # requires DNS access
+ # https://bugs.gentoo.org/909567
+
tests/legacy/test_client_server.py::ClientServerTests::test_explicit_host_port
+
tests/legacy/test_client_server.py::SecureClientServerTests::test_explicit_host_port
+ # TODO
+
tests/asyncio/test_server.py::ServerTests::test_close_server_keeps_handlers_running
+ )
+
+ local EPYTEST_PLUGINS=( pytest-rerunfailures )
+ epytest tests -p rerunfailures --reruns=10 --reruns-delay=2
+}