repo/gentoo:master commit in: dev-python/python-engineio/
MichaŠGórny <[email protected]>
| Newsgroups | gmane.linux.gentoo.cvs |
|---|---|
| Message-ID | <1786588319.d6417a54488f152cf29df7730ce81cd9bfdddde5.mgorny@gentoo> |
commit: d6417a54488f152cf29df7730ce81cd9bfdddde5
Author: Michał Górny <mgorny <AT> gentoo <DOT> org>
AuthorDate: Thu Aug 13 02:02:14 2026 +0000
Commit: Michał Górny <mgorny <AT> gentoo <DOT> org>
CommitDate: Thu Aug 13 02:31:59 2026 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=d6417a54
dev-python/python-engineio: Bump to 4.13.5
Signed-off-by: Michał Górny <mgorny <AT> gentoo.org>
dev-python/python-engineio/Manifest | 1 +
.../python-engineio/python-engineio-4.13.5.ebuild | 55 ++++++++++++++++++++++
2 files changed, 56 insertions(+)
diff --git a/dev-python/python-engineio/Manifest b/dev-python/python-engineio/Manifest
index 29c7e330ec48..7c9c51670166 100644
--- a/dev-python/python-engineio/Manifest
+++ b/dev-python/python-engineio/Manifest
@@ -1 +1,2 @@
DIST python-engineio-4.13.4.gh.tar.gz 324778 BLAKE2B d0054f5a8f082de6bd8eda8f00eab6090698cb7f86718cc6dff1d6a0c791b15621f2affc46ec065915bef01cc3b1f7a87d2bfe1c1fb40832563d610ee5bec085 SHA512 9831f90bd2b4af56a1e24574e624e8c7c7b8e5f260ce60cd1dd505c5221149ae8e0defedc5453adafca34ffadc26f0ec40fde6e35062c16c7de804bf66b8fd21
+DIST python-engineio-4.13.5.gh.tar.gz 324775 BLAKE2B f6023326fd6015e72f464635e8744d5d11d07d7b6c853fe25c6d190f13261cb1a42d6230faf2abe6a5c1c572972f7eed4355896d2a261be96f8d294f8fcd1fd2 SHA512 c5f47d686c95c507a6cb02970c141774a8a360480aab0d2b340f06d27fc6b9e7258854c01f82d8dbff83f385c09f652190cfe33d883bd437caeacb3f2f280d59
diff --git a/dev-python/python-engineio/python-engineio-4.13.5.ebuild b/dev-python/python-engineio/python-engineio-4.13.5.ebuild
new file mode 100644
index 000000000000..feb482104a96
--- /dev/null
+++ b/dev-python/python-engineio/python-engineio-4.13.5.ebuild
@@ -0,0 +1,55 @@
+# Copyright 1999-2026 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=8
+
+DISTUTILS_USE_PEP517=setuptools
+PYTHON_COMPAT=( python3_{12..15} )
+
+inherit distutils-r1
+
+DESCRIPTION="Python implementation of the Engine.IO realtime server"
+HOMEPAGE="
+ https://python-engineio.readthedocs.io/
+ https://github.com/miguelgrinberg/python-engineio/
+ https://pypi.org/project/python-engineio/"
+SRC_URI="
+ https://github.com/miguelgrinberg/python-engineio/archive/v${PV}.tar.gz
+ -> ${P}.gh.tar.gz
+"
+
+LICENSE="MIT"
+SLOT="0"
+KEYWORDS="~amd64 ~arm64 ~x86"
+
+RDEPEND="
+ >=dev-python/aiohttp-3.11[${PYTHON_USEDEP}]
+ dev-python/requests[${PYTHON_USEDEP}]
+ >=dev-python/simple-websocket-0.10.0[${PYTHON_USEDEP}]
+ dev-python/websocket-client[${PYTHON_USEDEP}]
+"
+# Can use eventlet, werkzeug, or gevent, but no tests for werkzeug
+BDEPEND="
+ test? (
+ dev-python/tornado[${PYTHON_USEDEP}]
+ dev-python/websockets[${PYTHON_USEDEP}]
+ )
+"
+
+EPYTEST_PLUGINS=( pytest-asyncio )
+distutils_enable_tests pytest
+distutils_enable_sphinx docs \
+ dev-python/furo
+
+EPYTEST_IGNORE=(
+ # eventlet is masked for removal
+ tests/common/test_async_eventlet.py
+)
+
+EPYTEST_DESELECT=(
+ # also eventlet
+ tests/common/test_server.py::TestServer::test_async_mode_eventlet
+ tests/common/test_server.py::TestServer::test_connect
+ tests/common/test_server.py::TestServer::test_service_task_started
+ tests/common/test_server.py::TestServer::test_upgrades
+)