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, 16 Feb 2020 11:41:09
Message-Id: 1581853260.72dc0003d0061dd0a2e2cce28bfc471b00ce49cb.mgorny@gentoo
1 commit: 72dc0003d0061dd0a2e2cce28bfc471b00ce49cb
2 Author: Michał Górny <mgorny <AT> gentoo <DOT> org>
3 AuthorDate: Sun Feb 16 11:39:40 2020 +0000
4 Commit: Michał Górny <mgorny <AT> gentoo <DOT> org>
5 CommitDate: Sun Feb 16 11:41:00 2020 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=72dc0003
7
8 dev-python/aiorpcX: Bump to 0.18.4, add tests
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.18.4.ebuild | 33 ++++++++++++++++++++++++++++++++
14 2 files changed, 34 insertions(+)
15
16 diff --git a/dev-python/aiorpcX/Manifest b/dev-python/aiorpcX/Manifest
17 index bb51639bf5b..6e01e58b930 100644
18 --- a/dev-python/aiorpcX/Manifest
19 +++ b/dev-python/aiorpcX/Manifest
20 @@ -1,3 +1,4 @@
21 DIST aiorpcX-0.10.2.tar.gz 23312 BLAKE2B 62d04099ae272369f29dea3a34a13b4b5cd6052764f2efee1f4a461b8ab52616e0cf69dde47a6f48c60827b3580d35bc39c87371d581a4a95147f5a5691e5111 SHA512 ebdc312c1c8d27382ca02ba6de5a316332b09bfba19399f9a4c3ef603a5d96becdfbed5c360d73aa64b41ecc5b0c3638822b0a5e49fd54c339b601c20add44ea
22 DIST aiorpcX-0.17.0.tar.gz 26346 BLAKE2B 0e60b66dec1ebcabca62e95688761b022a0f2a1062a3bb63c69def67687eb5bfb95d8c671b18ac4990248d7de17b049a7135398e80d23dc9154aaa4c7b17c2d1 SHA512 80731b683e16ad65da71981f81a606647cf3159429db2c37b27b6dc21c2f659fc92d0d0352109e377c2f381a373b9b20eeb0dda0bafe6be482dcf5c10d3bfcb6
23 DIST aiorpcX-0.18.3.tar.gz 27464 BLAKE2B 38a59a6352a4c9bc561f75ecdfb0adc87fe82ad8e05622e67903d6e6e3c225647e75cb7a516005840d008f193288a5dea09042e2091a576be108b735fbbe1446 SHA512 982258fb35c1a4b09def64e2729ac5bab528185963ca0f73571d4a36be2aebadd69e607161462b9c5e07ff3b09fa071949432405a32832d438e07103fa1a8636
24 +DIST aiorpcX-0.18.4.gh.tar.gz 65500 BLAKE2B 8c84ace1e2bc974e68702e25efe126f7f69dd7451f438ccd924ee8be3c0cccc5c9b3d116bf2d0a755b013bdfe61a398d856031970e5ae82b571af09551231bed SHA512 d4df1343f575af72dff31f1794485c0cbb5b6c31d6d933b07cc8375a1418ad4fb81b2649b3c60adaaeab75b7a5d959838accc38269373310eb07895acf4c9496
25
26 diff --git a/dev-python/aiorpcX/aiorpcX-0.18.4.ebuild b/dev-python/aiorpcX/aiorpcX-0.18.4.ebuild
27 new file mode 100644
28 index 00000000000..1dd31c31a60
29 --- /dev/null
30 +++ b/dev-python/aiorpcX/aiorpcX-0.18.4.ebuild
31 @@ -0,0 +1,33 @@
32 +# Copyright 1999-2020 Gentoo Authors
33 +# Distributed under the terms of the GNU General Public License v2
34 +
35 +EAPI=7
36 +
37 +PYTHON_COMPAT=( python3_{6,7} )
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 +IUSE=""
51 +
52 +BDEPEND="
53 + test? (
54 + dev-python/pytest-asyncio[${PYTHON_USEDEP}]
55 + dev-python/uvloop[${PYTHON_USEDEP}] )"
56 +
57 +distutils_enable_tests pytest
58 +
59 +src_prepare() {
60 + # websockets are optional and not packaged in Gentoo
61 + rm tests/test_websocket.py || die
62 +
63 + distutils-r1_src_prepare
64 +}