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/svg-path/
Date: Thu, 19 May 2022 07:15:03
Message-Id: 1652944482.374e45bffd0cf54552490e317ac53cb6ccedba1a.mgorny@gentoo
1 commit: 374e45bffd0cf54552490e317ac53cb6ccedba1a
2 Author: Michał Górny <mgorny <AT> gentoo <DOT> org>
3 AuthorDate: Thu May 19 05:03:19 2022 +0000
4 Commit: Michał Górny <mgorny <AT> gentoo <DOT> org>
5 CommitDate: Thu May 19 07:14:42 2022 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=374e45bf
7
8 dev-python/svg-path: Enable py3.11
9
10 Signed-off-by: Michał Górny <mgorny <AT> gentoo.org>
11
12 dev-python/svg-path/svg-path-6.0.ebuild | 12 ++++++++----
13 1 file changed, 8 insertions(+), 4 deletions(-)
14
15 diff --git a/dev-python/svg-path/svg-path-6.0.ebuild b/dev-python/svg-path/svg-path-6.0.ebuild
16 index d34abd9823bc..ecf93697e64c 100644
17 --- a/dev-python/svg-path/svg-path-6.0.ebuild
18 +++ b/dev-python/svg-path/svg-path-6.0.ebuild
19 @@ -4,17 +4,21 @@
20 EAPI=8
21
22 DISTUTILS_USE_PEP517=setuptools
23 -PYTHON_COMPAT=( python3_{8..10} )
24 +PYTHON_COMPAT=( python3_{8..11} )
25 +
26 inherit distutils-r1
27
28 -MY_P="svg.path-${PV}"
29 +MY_P=${P/-/.}
30 DESCRIPTION="SVG path objects and parser"
31 -HOMEPAGE="https://github.com/regebro/svg.path"
32 +HOMEPAGE="
33 + https://github.com/regebro/svg.path/
34 + https://pypi.org/project/svg.path/
35 +"
36 SRC_URI="
37 https://github.com/regebro/svg.path/archive/${PV}.tar.gz
38 -> ${P}.gh.tar.gz
39 "
40 -S="${WORKDIR}/${MY_P}"
41 +S=${WORKDIR}/${MY_P}
42
43 LICENSE="MIT"
44 SLOT="0"