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/jaraco-collections/
Date: Fri, 13 May 2022 16:31:57
Message-Id: 1652459486.df38e10fa1a1480d86ffc72080c3f30770c8a95c.arthurzam@gentoo
1 commit: df38e10fa1a1480d86ffc72080c3f30770c8a95c
2 Author: Arthur Zamarin <arthurzam <AT> gentoo <DOT> org>
3 AuthorDate: Fri May 13 16:15:16 2022 +0000
4 Commit: Arthur Zamarin <arthurzam <AT> gentoo <DOT> org>
5 CommitDate: Fri May 13 16:31:26 2022 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=df38e10f
7
8 dev-python/jaraco-collections: Use PEP517
9
10 Signed-off-by: Arthur Zamarin <arthurzam <AT> gentoo.org>
11
12 .../jaraco-collections-3.5.1-r1.ebuild | 31 ++++++++++++++++++++++
13 1 file changed, 31 insertions(+)
14
15 diff --git a/dev-python/jaraco-collections/jaraco-collections-3.5.1-r1.ebuild b/dev-python/jaraco-collections/jaraco-collections-3.5.1-r1.ebuild
16 new file mode 100644
17 index 000000000000..97771dd5c2aa
18 --- /dev/null
19 +++ b/dev-python/jaraco-collections/jaraco-collections-3.5.1-r1.ebuild
20 @@ -0,0 +1,31 @@
21 +# Copyright 1999-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} pypy3 )
28 +inherit distutils-r1
29 +
30 +MY_PN="${PN/-/.}"
31 +DESCRIPTION="Models and classes to supplement the stdlib collections module"
32 +HOMEPAGE="https://github.com/jaraco/jaraco.collections"
33 +SRC_URI="mirror://pypi/${PN:0:1}/${MY_PN}/${MY_PN}-${PV}.tar.gz"
34 +S="${WORKDIR}/${MY_PN}-${PV}"
35 +
36 +LICENSE="MIT"
37 +SLOT="0"
38 +KEYWORDS="~amd64 ~arm ~arm64 ~ia64 ~ppc ~ppc64 ~riscv ~x86"
39 +
40 +RDEPEND="
41 + dev-python/jaraco-classes[${PYTHON_USEDEP}]
42 + dev-python/jaraco-text[${PYTHON_USEDEP}]
43 +"
44 +BDEPEND="
45 + >=dev-python/setuptools_scm-1.15.0[${PYTHON_USEDEP}]
46 +"
47 +
48 +distutils_enable_sphinx docs \
49 + '>=dev-python/jaraco-packaging-3.2' \
50 + '>=dev-python/rst-linker-1.9'
51 +distutils_enable_tests pytest