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/jaraco-functools/
Date: Mon, 29 Aug 2022 10:37:38
Message-Id: 1661769247.6205f1eb0eda23dfec6a3f678871a8de2e029c09.mgorny@gentoo
1 commit: 6205f1eb0eda23dfec6a3f678871a8de2e029c09
2 Author: Michał Górny <mgorny <AT> gentoo <DOT> org>
3 AuthorDate: Mon Aug 29 10:34:07 2022 +0000
4 Commit: Michał Górny <mgorny <AT> gentoo <DOT> org>
5 CommitDate: Mon Aug 29 10:34:07 2022 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=6205f1eb
7
8 dev-python/jaraco-functools: Modernize & cleanup
9
10 Signed-off-by: Michał Górny <mgorny <AT> gentoo.org>
11
12 dev-python/jaraco-functools/jaraco-functools-3.5.1.ebuild | 12 ++++++------
13 1 file changed, 6 insertions(+), 6 deletions(-)
14
15 diff --git a/dev-python/jaraco-functools/jaraco-functools-3.5.1.ebuild b/dev-python/jaraco-functools/jaraco-functools-3.5.1.ebuild
16 index 4819bf48342f..acc8167daef6 100644
17 --- a/dev-python/jaraco-functools/jaraco-functools-3.5.1.ebuild
18 +++ b/dev-python/jaraco-functools/jaraco-functools-3.5.1.ebuild
19 @@ -11,9 +11,12 @@ inherit distutils-r1
20
21 MY_P=${P/-/.}
22 DESCRIPTION="Additional functions used by other projects by developer jaraco"
23 -HOMEPAGE="https://github.com/jaraco/jaraco.functools"
24 -SRC_URI="mirror://pypi/${PN:0:1}/${PN/-/.}/${MY_P}.tar.gz"
25 -S="${WORKDIR}/${MY_P}"
26 +HOMEPAGE="
27 + https://github.com/jaraco/jaraco.functools/
28 + https://pypi.org/project/jaraco.functools/
29 +"
30 +SRC_URI="mirror://pypi/${PN::1}/${PN/-/.}/${MY_P}.tar.gz"
31 +S=${WORKDIR}/${MY_P}
32
33 LICENSE="MIT"
34 SLOT="0"
35 @@ -28,9 +31,6 @@ BDEPEND="
36 )
37 "
38
39 -distutils_enable_sphinx docs \
40 - ">=dev-python/jaraco-packaging-3.2" \
41 - ">=dev-python/rst-linker-1.9"
42 distutils_enable_tests pytest
43
44 src_configure() {