dev-python/python-engineio: Bump to 4.13.3

Signed-off-by: Michał Górny <mgorny@gentoo.org>
This commit is contained in:
Michał Górny
2026-06-21 04:44:28 +02:00
parent f95cd970c6
commit 3b53ee3203
2 changed files with 56 additions and 0 deletions

View File

@@ -1 +1,2 @@
DIST python-engineio-4.13.2.gh.tar.gz 324984 BLAKE2B 7f77292a1a0932d458fcc2cecec497ee59d6baa21e52ff6b2950c71b33e3b3412b52d00467472500c70db9712a0d40bdbb2cf791475debcb9386297019360924 SHA512 a25cf314e741944fa4472675484f95ca2117d71d9fb6add2660aa0f3a12684bd4cf6f004eb86455e9017576b0d3c42a6aa5e9114bf73d3454e579f326f9b1861
DIST python-engineio-4.13.3.gh.tar.gz 324530 BLAKE2B 333f97faee3fe186cd38a52ea6a43ca534e3aa8d48cd27979889c445c34bb72038963c6e9a4dd4acc38d5e415859085b8054abe0687e58eb8f83db7bb7306dd6 SHA512 0a8b286974ba2b6be8964963d178b1b211f9b4b04a94fa226408da679d478cdf08a4306023f82611a9b006e029d36fa6fa33a44158557d2663320e986a4b0d37

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..14} )
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/alabaster
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
)