dev-python/python-engineio: Bump to 4.14.0

Signed-off-by: Michał Górny <mgorny@gentoo.org>
This commit is contained in:
Michał Górny
2026-08-31 05:59:56 +02:00
parent 6fd189790d
commit ecedc1d079
2 changed files with 56 additions and 0 deletions

View File

@@ -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

View File

@@ -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
)