Gentoo Archives: gentoo-commits

From: "Michał Górny" <mgorny@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: dev-python/python-engineio/
Date: Tue, 05 Jul 2022 06:07:41
Message-Id: 1657001249.9a83c7ddaf5d02c9c0ff44edd201151a7226e622.mgorny@gentoo
1 commit: 9a83c7ddaf5d02c9c0ff44edd201151a7226e622
2 Author: Michał Górny <mgorny <AT> gentoo <DOT> org>
3 AuthorDate: Tue Jul 5 05:33:52 2022 +0000
4 Commit: Michał Górny <mgorny <AT> gentoo <DOT> org>
5 CommitDate: Tue Jul 5 06:07:29 2022 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=9a83c7dd
7
8 dev-python/python-engineio: Bump to 4.3.3
9
10 Signed-off-by: Michał Górny <mgorny <AT> gentoo.org>
11
12 dev-python/python-engineio/Manifest | 1 +
13 .../python-engineio/python-engineio-4.3.3.ebuild | 63 ++++++++++++++++++++++
14 2 files changed, 64 insertions(+)
15
16 diff --git a/dev-python/python-engineio/Manifest b/dev-python/python-engineio/Manifest
17 index fbbfbdce8a6f..2ca56917193e 100644
18 --- a/dev-python/python-engineio/Manifest
19 +++ b/dev-python/python-engineio/Manifest
20 @@ -1 +1,2 @@
21 DIST python-engineio-4.3.2.gh.tar.gz 299722 BLAKE2B 87dece98d72b7b0384e3b9d57062a3eaa7aeb80ac3f2f685d50b8816e122398ffd54da1f4b99a90a1f535e2d0f0d282167a682de022373e6108f7e91f8689aa1 SHA512 59933a0093167042a3873ba1561d2859359a5ad160f6b7b5c19478b1f73d1bd068779942c8bfc44dd5a8d9f155359571298b960bcd217aab341bdfec35bc5b28
22 +DIST python-engineio-4.3.3.gh.tar.gz 300494 BLAKE2B 302de4432717154258748602598d455650e858d3193127054abbd6d4e070255b26f38d08f620769b4782b29c43a9e6255896ff1192878c23b033168328036f90 SHA512 a8022b853c0a249e269c1e682f28d67022a2bd44975d67ea55e5244a02b540cded8042d7e9cbc5461f2a12970b64c00fa6d2e1a91ce93926fb0eace60096dccc
23
24 diff --git a/dev-python/python-engineio/python-engineio-4.3.3.ebuild b/dev-python/python-engineio/python-engineio-4.3.3.ebuild
25 new file mode 100644
26 index 000000000000..3853dc3895da
27 --- /dev/null
28 +++ b/dev-python/python-engineio/python-engineio-4.3.3.ebuild
29 @@ -0,0 +1,63 @@
30 +# Copyright 1999-2022 Gentoo Authors
31 +# Distributed under the terms of the GNU General Public License v2
32 +
33 +EAPI=8
34 +
35 +DISTUTILS_USE_PEP517=setuptools
36 +PYTHON_COMPAT=( python3_{8..10} )
37 +
38 +inherit distutils-r1
39 +
40 +DESCRIPTION="Python implementation of the Engine.IO realtime server"
41 +HOMEPAGE="
42 + https://python-engineio.readthedocs.io/
43 + https://github.com/miguelgrinberg/python-engineio/
44 + https://pypi.org/project/python-engineio/"
45 +SRC_URI="
46 + https://github.com/miguelgrinberg/python-engineio/archive/v${PV}.tar.gz
47 + -> ${P}.gh.tar.gz
48 +"
49 +
50 +LICENSE="MIT"
51 +SLOT="0"
52 +KEYWORDS="~amd64 ~x86"
53 +
54 +RDEPEND="
55 + dev-python/aiohttp[${PYTHON_USEDEP}]
56 + dev-python/requests[${PYTHON_USEDEP}]
57 + dev-python/websocket-client[${PYTHON_USEDEP}]
58 +"
59 +# Can use eventlet, werkzeug, or gevent, but no tests for werkzeug
60 +# eventlet doesn't yet support Python 3.10, so let's work around it
61 +BDEPEND="
62 + test? (
63 + $(python_gen_cond_dep '
64 + dev-python/eventlet[${PYTHON_USEDEP}]
65 + ' python3_{8,9} )
66 +
67 + dev-python/gevent[${PYTHON_USEDEP}]
68 + dev-python/websockets[${PYTHON_USEDEP}]
69 + www-servers/tornado[${PYTHON_USEDEP}]
70 + )
71 +"
72 +
73 +distutils_enable_tests pytest
74 +distutils_enable_sphinx docs \
75 + dev-python/alabaster
76 +
77 +python_test() {
78 + if ! has_version "dev-python/eventlet[${PYTHON_USEDEP}]"; then
79 + EPYTEST_IGNORE+=(
80 + tests/common/test_async_eventlet.py
81 + )
82 +
83 + EPYTEST_DESELECT+=(
84 + tests/common/test_server.py::TestServer::test_async_mode_eventlet
85 + tests/common/test_server.py::TestServer::test_connect
86 + tests/common/test_server.py::TestServer::test_service_task_started
87 + tests/common/test_server.py::TestServer::test_upgrades
88 + )
89 + fi
90 +
91 + epytest
92 +}