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/aiorpcX/
Date: Sun, 25 Apr 2021 21:58:55
Message-Id: 1619387922.dbfced676274b181bfdcb6f6e394883646838fd6.mgorny@gentoo
1 commit: dbfced676274b181bfdcb6f6e394883646838fd6
2 Author: Michał Górny <mgorny <AT> gentoo <DOT> org>
3 AuthorDate: Sun Apr 25 21:29:45 2021 +0000
4 Commit: Michał Górny <mgorny <AT> gentoo <DOT> org>
5 CommitDate: Sun Apr 25 21:58:42 2021 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=dbfced67
7
8 dev-python/aiorpcX: Bump to 0.22.0
9
10 Signed-off-by: Michał Górny <mgorny <AT> gentoo.org>
11
12 dev-python/aiorpcX/Manifest | 1 +
13 dev-python/aiorpcX/aiorpcX-0.22.0.ebuild | 36 ++++++++++++++++++++++++++++++++
14 2 files changed, 37 insertions(+)
15
16 diff --git a/dev-python/aiorpcX/Manifest b/dev-python/aiorpcX/Manifest
17 index 39e948bce6b..0c18f321c98 100644
18 --- a/dev-python/aiorpcX/Manifest
19 +++ b/dev-python/aiorpcX/Manifest
20 @@ -5,3 +5,4 @@ DIST aiorpcX-0.20.1.gh.tar.gz 74087 BLAKE2B eee9b3d7d1e513e5eefec97ba30b8b5783b3
21 DIST aiorpcX-0.20.2.gh.tar.gz 74627 BLAKE2B e5a33dfd8ef0c18e26cfee881fd7515437598628bf61dfd86a34f0a758474abcf257c7afcbf0ee1d11ed6bad44596289efe2261d9ca7ccc26e7d949f05b3ad40 SHA512 af63d51bd21a045d71073ba6cd030834f8262e393eac9c44e6b33a2b3cecd86a5d2a6a0ed7ab60d2362e99ab38c801abcae1ada368a533d8f7fb8b616c43e582
22 DIST aiorpcX-0.21.0.gh.tar.gz 75194 BLAKE2B dc8494531ca64db15e3e4b35ef5392e8177ca9b5c885c93c146edf921154f42caef5a7b2863a166d337a2f16e99e880b1e315f1f72624f50aa2d73a93c23e054 SHA512 0bcbb31cf367db029ef4acc06b23b6d3f861ab168971e367d760a220c0a6688934a8a91f7bb2fd9d993e173f2049e45556b6f094bb7ca005b37f66179061484d
23 DIST aiorpcX-0.21.1.gh.tar.gz 75205 BLAKE2B 5190e8bedf9c605f57d469f351d0cc3bed0c1fad53778ea0f29c02615b0ca816a7bbc60b863dc613f72c67455966ef3ceb31b825eed3cead25f47c29012f7ce5 SHA512 c77d4bfe72f2cd4215e15330c60aabdeee9f4e1613ba5dcfedea9368c85519b36ecc7dbfa2f6682df7d802204b9cea7c9a889ee479dcffbc728ee0c112039779
24 +DIST aiorpcX-0.22.0.gh.tar.gz 75160 BLAKE2B c9aa55c932546512019c058dd29d397bba79638a56aa949d69980abd56b4d024e9d1f99e96909c2256cce1578ffaf55b14b95d0adf77752180fcbd8ab997555b SHA512 a65202f8233adac587c98da812ab27a26740a21a68df431bf0394dc3df37f3cb15c397c6a9044201b4a1a8d6bcc283a7cf7b4dd27885a2ea0f5942cbbfc6f405
25
26 diff --git a/dev-python/aiorpcX/aiorpcX-0.22.0.ebuild b/dev-python/aiorpcX/aiorpcX-0.22.0.ebuild
27 new file mode 100644
28 index 00000000000..8ba0167288f
29 --- /dev/null
30 +++ b/dev-python/aiorpcX/aiorpcX-0.22.0.ebuild
31 @@ -0,0 +1,36 @@
32 +# Copyright 1999-2021 Gentoo Authors
33 +# Distributed under the terms of the GNU General Public License v2
34 +
35 +EAPI=7
36 +
37 +PYTHON_COMPAT=( python3_{8..9} )
38 +
39 +inherit distutils-r1
40 +
41 +DESCRIPTION="Generic async RPC implementation, including JSON-RPC"
42 +HOMEPAGE="https://pypi.org/project/aiorpcX/
43 + https://github.com/kyuupichan/aiorpcX/"
44 +SRC_URI="https://github.com/kyuupichan/aiorpcX/archive/${PV}.tar.gz
45 + -> ${P}.gh.tar.gz"
46 +
47 +LICENSE="MIT"
48 +SLOT="0"
49 +KEYWORDS="~amd64 ~x86"
50 +
51 +BDEPEND="
52 + test? (
53 + dev-python/pytest-asyncio[${PYTHON_USEDEP}]
54 + dev-python/uvloop[${PYTHON_USEDEP}]
55 + dev-python/websockets[${PYTHON_USEDEP}]
56 + )"
57 +
58 +distutils_enable_tests pytest
59 +
60 +python_test() {
61 + local deselect=(
62 + # require Internet
63 + tests/test_socks.py::TestSOCKSProxy::test_create_connection_resolve_good
64 + )
65 +
66 + epytest ${deselect[@]/#/--deselect }
67 +}