Gentoo Archives: gentoo-commits

From: Arthur Zamarin <arthurzam@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: dev-python/greenstalk/
Date: Wed, 20 Oct 2021 19:21:46
Message-Id: 1634757658.b88ebf44f18e782ef4225e79d8b0c2d1c6b66052.arthurzam@gentoo
1 commit: b88ebf44f18e782ef4225e79d8b0c2d1c6b66052
2 Author: Arthur Zamarin <arthurzam <AT> gentoo <DOT> org>
3 AuthorDate: Wed Oct 20 18:28:03 2021 +0000
4 Commit: Arthur Zamarin <arthurzam <AT> gentoo <DOT> org>
5 CommitDate: Wed Oct 20 19:20:58 2021 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=b88ebf44
7
8 dev-python/greenstalk: add 2.0.0, enable py3.10
9
10 Signed-off-by: Arthur Zamarin <arthurzam <AT> gentoo.org>
11
12 dev-python/greenstalk/Manifest | 1 +
13 dev-python/greenstalk/greenstalk-2.0.0.ebuild | 26 ++++++++++++++++++++++++++
14 2 files changed, 27 insertions(+)
15
16 diff --git a/dev-python/greenstalk/Manifest b/dev-python/greenstalk/Manifest
17 index bca64cf3ea7..773ecc26f4b 100644
18 --- a/dev-python/greenstalk/Manifest
19 +++ b/dev-python/greenstalk/Manifest
20 @@ -1 +1,2 @@
21 DIST greenstalk-1.0.1.tar.gz 12898 BLAKE2B fc0b90ba95b09e1490025175339c3f9eb7afed16db40ec34031305a3d487582fc7305b1990424f53a06887a34c30ab4f957db01a640576aa1c5db30511161c0f SHA512 8b57ec0c7fd3a60c24e8ddd7d51f31c0986317cbceb0f7045bbd720ca58e8f3c896f2f9924de7b1e8693844c814ecdebc020972d895468d1b0e7d055bf628b16
22 +DIST greenstalk-2.0.0.gh.tar.gz 13280 BLAKE2B 510b84d7dd48e0f5c9fb46ec0158473623a9e4c570e1c72db45802fce7a61b99c8f15f87d6711fa7540e6e2b6d4a846194adc28e2696400c45dc6692747f41fb SHA512 4d338bccb09b7c17c0216ce9cc4c1c9c896d15327053adc248404140ded27df6969fc8f0807120ec9417676ead57395185fb9fc5d826f49a1a1ee473aabbb048
23
24 diff --git a/dev-python/greenstalk/greenstalk-2.0.0.ebuild b/dev-python/greenstalk/greenstalk-2.0.0.ebuild
25 new file mode 100644
26 index 00000000000..a73826cc5bb
27 --- /dev/null
28 +++ b/dev-python/greenstalk/greenstalk-2.0.0.ebuild
29 @@ -0,0 +1,26 @@
30 +# Copyright 1999-2021 Gentoo Authors
31 +# Distributed under the terms of the GNU General Public License v2
32 +
33 +EAPI=8
34 +
35 +PYTHON_COMPAT=( python3_{8..10} )
36 +inherit distutils-r1
37 +
38 +DESCRIPTION="Python 3 client for the beanstalkd work queue"
39 +HOMEPAGE="https://greenstalk.readthedocs.io/ https://github.com/justinmayhew/greenstalk"
40 +SRC_URI="
41 + https://github.com/justinmayhew/greenstalk/archive/v${PV}.tar.gz
42 + -> ${P}.gh.tar.gz
43 +"
44 +
45 +LICENSE="MIT"
46 +SLOT="0"
47 +KEYWORDS="~amd64 ~x86"
48 +
49 +BDEPEND="test? ( app-misc/beanstalkd )"
50 +
51 +distutils_enable_tests pytest
52 +
53 +python_test() {
54 + epytest tests.py
55 +}