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/allpairspy/
Date: Sun, 31 Jul 2022 18:20:41
Message-Id: 1659291622.4c3bb19506ded8d18b5945417c8ad948bcb663ee.arthurzam@gentoo
1 commit: 4c3bb19506ded8d18b5945417c8ad948bcb663ee
2 Author: Arthur Zamarin <arthurzam <AT> gentoo <DOT> org>
3 AuthorDate: Sun Jul 31 17:28:03 2022 +0000
4 Commit: Arthur Zamarin <arthurzam <AT> gentoo <DOT> org>
5 CommitDate: Sun Jul 31 18:20:22 2022 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=4c3bb195
7
8 dev-python/allpairspy: Use PEP517
9
10 Signed-off-by: Arthur Zamarin <arthurzam <AT> gentoo.org>
11
12 dev-python/allpairspy/allpairspy-2.5.0-r1.ebuild | 21 +++++++++++++++++++++
13 1 file changed, 21 insertions(+)
14
15 diff --git a/dev-python/allpairspy/allpairspy-2.5.0-r1.ebuild b/dev-python/allpairspy/allpairspy-2.5.0-r1.ebuild
16 new file mode 100644
17 index 000000000000..c28ca8f108ca
18 --- /dev/null
19 +++ b/dev-python/allpairspy/allpairspy-2.5.0-r1.ebuild
20 @@ -0,0 +1,21 @@
21 +# Copyright 2022 Gentoo Authors
22 +# Distributed under the terms of the GNU General Public License v2
23 +
24 +EAPI=8
25 +
26 +DISTUTILS_USE_PEP517=setuptools
27 +PYTHON_COMPAT=( python3_{8..10} )
28 +
29 +inherit distutils-r1
30 +
31 +DESCRIPTION="Pairwise test combinations generator"
32 +HOMEPAGE="https://github.com/thombashi/allpairspy"
33 +SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz"
34 +
35 +LICENSE="MIT"
36 +SLOT="0"
37 +KEYWORDS="~amd64 ~x86"
38 +
39 +RDEPEND="dev-python/six[${PYTHON_USEDEP}]"
40 +
41 +distutils_enable_tests pytest