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/svg-path/
Date: Wed, 25 Aug 2021 05:29:22
Message-Id: 1629869345.283f2743442d8bed702eb69952505b70711d16bf.arthurzam@gentoo
1 commit: 283f2743442d8bed702eb69952505b70711d16bf
2 Author: Arthur Zamarin <arthurzam <AT> gentoo <DOT> org>
3 AuthorDate: Wed Aug 25 04:46:09 2021 +0000
4 Commit: Arthur Zamarin <arthurzam <AT> gentoo <DOT> org>
5 CommitDate: Wed Aug 25 05:29:05 2021 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=283f2743
7
8 dev-python/svg-path: enable py3.10
9
10 Signed-off-by: Arthur Zamarin <arthurzam <AT> gentoo.org>
11
12 dev-python/svg-path/svg-path-4.1.ebuild | 9 ++++++---
13 1 file changed, 6 insertions(+), 3 deletions(-)
14
15 diff --git a/dev-python/svg-path/svg-path-4.1.ebuild b/dev-python/svg-path/svg-path-4.1.ebuild
16 index 04e48aed5e8..a0106eaa7a8 100644
17 --- a/dev-python/svg-path/svg-path-4.1.ebuild
18 +++ b/dev-python/svg-path/svg-path-4.1.ebuild
19 @@ -1,16 +1,19 @@
20 # Copyright 1999-2021 Gentoo Authors
21 # Distributed under the terms of the GNU General Public License v2
22
23 -EAPI=7
24 +EAPI=8
25
26 -PYTHON_COMPAT=( python3_{7..9} )
27 +PYTHON_COMPAT=( python3_{8..10} )
28
29 inherit distutils-r1
30
31 MY_P="svg.path-${PV}"
32 DESCRIPTION="SVG path objects and parser"
33 HOMEPAGE="https://github.com/regebro/svg.path"
34 -SRC_URI="https://github.com/regebro/svg.path/archive/${PV}.tar.gz -> ${MY_P}.tar.gz"
35 +SRC_URI="
36 + https://github.com/regebro/svg.path/archive/${PV}.tar.gz
37 + -> ${MY_P}.tar.gz
38 +"
39 S="${WORKDIR}/${MY_P}"
40
41 LICENSE="MIT"