From ecedc1d079392075f8cb2f65b916771557e15fa5 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Micha=C5=82=20G=C3=B3rny?= Date: Mon, 31 Aug 2026 05:59:56 +0200 Subject: [PATCH] dev-python/python-engineio: Bump to 4.14.0 MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Signed-off-by: Michał Górny --- dev-python/python-engineio/Manifest | 1 + .../python-engineio-4.14.0.ebuild | 55 +++++++++++++++++++ 2 files changed, 56 insertions(+) create mode 100644 dev-python/python-engineio/python-engineio-4.14.0.ebuild diff --git a/dev-python/python-engineio/Manifest b/dev-python/python-engineio/Manifest index cd460daf7b9c9..80498c05698b3 100644 --- a/dev-python/python-engineio/Manifest +++ b/dev-python/python-engineio/Manifest @@ -1 +1,2 @@ DIST python-engineio-4.13.5.gh.tar.gz 324775 BLAKE2B f6023326fd6015e72f464635e8744d5d11d07d7b6c853fe25c6d190f13261cb1a42d6230faf2abe6a5c1c572972f7eed4355896d2a261be96f8d294f8fcd1fd2 SHA512 c5f47d686c95c507a6cb02970c141774a8a360480aab0d2b340f06d27fc6b9e7258854c01f82d8dbff83f385c09f652190cfe33d883bd437caeacb3f2f280d59 +DIST python-engineio-4.14.0.gh.tar.gz 326991 BLAKE2B 9bb26c1e94c2b156ec2c3d0f5e730234d08dfd1f36d130bfbe344b2209949c35bfcadc852fcd1396fd774dd7e4c96580992fb8e9918f9eb6cd2cdcecf94c7845 SHA512 9079c5c831ee11f06b35f80c562ae3182c5dfc8694d711000c8d3d72b92325b25b2ea8a08d8315da8888c8d499c11c8c8db0b4dcc8cdf65fa80ec192ffbb6122 diff --git a/dev-python/python-engineio/python-engineio-4.14.0.ebuild b/dev-python/python-engineio/python-engineio-4.14.0.ebuild new file mode 100644 index 0000000000000..feb482104a966 --- /dev/null +++ b/dev-python/python-engineio/python-engineio-4.14.0.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 +)