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/uri_template/
Date: Wed, 11 May 2022 14:33:09
Message-Id: 1652279516.edde4d236a20e3b0450a5bec627b8c67859e081e.mgorny@gentoo
1 commit: edde4d236a20e3b0450a5bec627b8c67859e081e
2 Author: Michał Górny <mgorny <AT> gentoo <DOT> org>
3 AuthorDate: Wed May 11 14:16:39 2022 +0000
4 Commit: Michał Górny <mgorny <AT> gentoo <DOT> org>
5 CommitDate: Wed May 11 14:31:56 2022 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=edde4d23
7
8 dev-python/uri_template: Enable py3.11
9
10 Signed-off-by: Michał Górny <mgorny <AT> gentoo.org>
11
12 dev-python/uri_template/uri_template-1.2.0.ebuild | 11 ++++++++---
13 1 file changed, 8 insertions(+), 3 deletions(-)
14
15 diff --git a/dev-python/uri_template/uri_template-1.2.0.ebuild b/dev-python/uri_template/uri_template-1.2.0.ebuild
16 index 0ca66ff1f4a0..90ea54cc924f 100644
17 --- a/dev-python/uri_template/uri_template-1.2.0.ebuild
18 +++ b/dev-python/uri_template/uri_template-1.2.0.ebuild
19 @@ -4,14 +4,19 @@
20 EAPI=8
21
22 DISTUTILS_USE_PEP517=setuptools
23 -PYTHON_COMPAT=( pypy3 python3_{8..10} )
24 +PYTHON_COMPAT=( pypy3 python3_{8..11} )
25
26 inherit distutils-r1
27
28 MY_P="${PN}-v${PV}"
29 DESCRIPTION="URI Template expansion in strict adherence to RFC 6570"
30 -HOMEPAGE="https://gitlab.linss.com/open-source/uri_template/"
31 -SRC_URI="https://gitlab.linss.com/open-source/${PN}/-/archive/v${PV}/${MY_P}.tar.gz"
32 +HOMEPAGE="
33 + https://gitlab.linss.com/open-source/uri_template/
34 + https://pypi.org/project/uri-template/
35 +"
36 +SRC_URI="
37 + https://gitlab.linss.com/open-source/${PN}/-/archive/v${PV}/${MY_P}.tar.gz
38 +"
39 S="${WORKDIR}/${MY_P}"
40
41 LICENSE="MIT"