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-stream/
Date: Fri, 13 May 2022 16:31:58
Message-Id: 1652459487.3151ab226751d27146d2febbf76e22d1d6ebe2ee.arthurzam@gentoo
1 commit: 3151ab226751d27146d2febbf76e22d1d6ebe2ee
2 Author: Arthur Zamarin <arthurzam <AT> gentoo <DOT> org>
3 AuthorDate: Fri May 13 16:17:40 2022 +0000
4 Commit: Arthur Zamarin <arthurzam <AT> gentoo <DOT> org>
5 CommitDate: Fri May 13 16:31:27 2022 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=3151ab22
7
8 dev-python/jaraco-stream: Use PEP517
9
10 Signed-off-by: Arthur Zamarin <arthurzam <AT> gentoo.org>
11
12 .../jaraco-stream/jaraco-stream-3.0.3-r1.ebuild | 30 ++++++++++++++++++++++
13 1 file changed, 30 insertions(+)
14
15 diff --git a/dev-python/jaraco-stream/jaraco-stream-3.0.3-r1.ebuild b/dev-python/jaraco-stream/jaraco-stream-3.0.3-r1.ebuild
16 new file mode 100644
17 index 000000000000..601d78e3abe3
18 --- /dev/null
19 +++ b/dev-python/jaraco-stream/jaraco-stream-3.0.3-r1.ebuild
20 @@ -0,0 +1,30 @@
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=( pypy3 python3_{8..10} )
28 +inherit distutils-r1
29 +
30 +MY_P=${P/-/.}
31 +DESCRIPTION="Routines for handling streaming data"
32 +HOMEPAGE="https://github.com/jaraco/jaraco.stream"
33 +SRC_URI="mirror://pypi/${MY_P::1}/${PN/-/.}/${MY_P}.tar.gz"
34 +S=${WORKDIR}/${MY_P}
35 +
36 +LICENSE="MIT"
37 +SLOT="0"
38 +KEYWORDS="~amd64 ~riscv ~x86"
39 +
40 +BDEPEND="
41 + >=dev-python/setuptools_scm-1.15.0[${PYTHON_USEDEP}]
42 + test? (
43 + dev-python/more-itertools[${PYTHON_USEDEP}]
44 + )
45 +"
46 +
47 +distutils_enable_sphinx docs \
48 + ">=dev-python/jaraco-packaging-3.2" \
49 + ">=dev-python/rst-linker-1.9"
50 +distutils_enable_tests pytest