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/Rx/
Date: Sun, 25 Apr 2021 21:58:55
Message-Id: 1619387923.2f670f844c7f93d1004cc3513ac2ecf8819053f1.mgorny@gentoo
1 commit: 2f670f844c7f93d1004cc3513ac2ecf8819053f1
2 Author: Michał Górny <mgorny <AT> gentoo <DOT> org>
3 AuthorDate: Sun Apr 25 21:32:55 2021 +0000
4 Commit: Michał Górny <mgorny <AT> gentoo <DOT> org>
5 CommitDate: Sun Apr 25 21:58:43 2021 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=2f670f84
7
8 dev-python/Rx: Bump to 3.2.0
9
10 Signed-off-by: Michał Górny <mgorny <AT> gentoo.org>
11
12 dev-python/Rx/Manifest | 1 +
13 dev-python/Rx/Rx-3.2.0.ebuild | 32 ++++++++++++++++++++++++++++++++
14 2 files changed, 33 insertions(+)
15
16 diff --git a/dev-python/Rx/Manifest b/dev-python/Rx/Manifest
17 index c65dbaf4664..3fe4869ea4e 100644
18 --- a/dev-python/Rx/Manifest
19 +++ b/dev-python/Rx/Manifest
20 @@ -1 +1,2 @@
21 DIST Rx-3.1.0.tar.gz 890293 BLAKE2B 268f6df5450d1235d50f9aee5cd43fe6e229acf7b2ddab5f1f97e80594aeff7beaa280fe272ac9cc8b80dc6874f4bb76e438e94c09712f2c37e72d8d40f9f283 SHA512 1d9f6639ef08dc991326b95fcbf0978adea55b35acab653fc16bd94ccf2ad3a1515e8cb4e8d2ff38d7a506306e310394339a8651a2a02fa22bfb7f17d86297f1
22 +DIST RxPY-3.2.0.tar.gz 891490 BLAKE2B 9d4e72c20544f1c607fa28963193ca88d7d6f63c0e4a3faa4e3aafba6cce5bb0c1b99ca7a8fb62052adc3dc02b7ca71d4c190704f18819fbb2598a38b2ce86da SHA512 08a53344ea374b025e51ebf3a7de5ea4e83c7062d0c9a3370b795a56156c8aa068f2b3415f6e5e9e2424a11bcef53a412fd0667afb0016b58b7d2a741ea1007a
23
24 diff --git a/dev-python/Rx/Rx-3.2.0.ebuild b/dev-python/Rx/Rx-3.2.0.ebuild
25 new file mode 100644
26 index 00000000000..d7dc1233b7a
27 --- /dev/null
28 +++ b/dev-python/Rx/Rx-3.2.0.ebuild
29 @@ -0,0 +1,32 @@
30 +# Copyright 1999-2021 Gentoo Authors
31 +# Distributed under the terms of the GNU General Public License v2
32 +
33 +EAPI=7
34 +
35 +PYTHON_COMPAT=( python3_{7..9} )
36 +
37 +inherit distutils-r1 virtualx
38 +
39 +MY_P="RxPY-${PV}"
40 +DESCRIPTION="Reactive Extensions for Python"
41 +HOMEPAGE="http://reactivex.io/"
42 +SRC_URI="
43 + https://github.com/ReactiveX/RxPY/archive/v${PV}.tar.gz
44 + -> ${MY_P}.tar.gz"
45 +S="${WORKDIR}/${MY_P}"
46 +
47 +LICENSE="Apache-2.0"
48 +SLOT="0"
49 +KEYWORDS="~amd64 ~x86"
50 +
51 +DEPEND="
52 + test? (
53 + dev-python/pytest-asyncio[${PYTHON_USEDEP}]
54 + )
55 +"
56 +
57 +distutils_enable_tests pytest
58 +
59 +src_test() {
60 + virtx distutils-r1_src_test
61 +}