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/strict-rfc3339/
Date: Wed, 11 May 2022 14:33:04
Message-Id: 1652279512.eba9983b123d8c94ef93c3dcd8f02a3139e07b87.mgorny@gentoo
1 commit: eba9983b123d8c94ef93c3dcd8f02a3139e07b87
2 Author: Michał Górny <mgorny <AT> gentoo <DOT> org>
3 AuthorDate: Wed May 11 14:10:05 2022 +0000
4 Commit: Michał Górny <mgorny <AT> gentoo <DOT> org>
5 CommitDate: Wed May 11 14:31:52 2022 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=eba9983b
7
8 dev-python/strict-rfc3339: Enable py3.11
9
10 Signed-off-by: Michał Górny <mgorny <AT> gentoo.org>
11
12 dev-python/strict-rfc3339/strict-rfc3339-0.7-r2.ebuild | 12 +++++++++---
13 1 file changed, 9 insertions(+), 3 deletions(-)
14
15 diff --git a/dev-python/strict-rfc3339/strict-rfc3339-0.7-r2.ebuild b/dev-python/strict-rfc3339/strict-rfc3339-0.7-r2.ebuild
16 index bc75e01f1faf..128cf024e743 100644
17 --- a/dev-python/strict-rfc3339/strict-rfc3339-0.7-r2.ebuild
18 +++ b/dev-python/strict-rfc3339/strict-rfc3339-0.7-r2.ebuild
19 @@ -4,14 +4,20 @@
20 EAPI=8
21
22 DISTUTILS_USE_PEP517=setuptools
23 -PYTHON_COMPAT=( python3_{8..10} pypy3 )
24 +PYTHON_COMPAT=( python3_{8..11} pypy3 )
25
26 inherit distutils-r1
27
28 MY_P="${PN}-version-${PV}"
29 DESCRIPTION="Strict, simple, lightweight RFC3339 functions"
30 -HOMEPAGE="https://pypi.org/project/strict-rfc3339/ https://github.com/danielrichman/strict-rfc3339"
31 -SRC_URI="https://github.com/danielrichman/${PN}/archive/version-${PV}.tar.gz -> ${MY_P}.tar.gz"
32 +HOMEPAGE="
33 + https://pypi.org/project/strict-rfc3339/
34 + https://github.com/danielrichman/strict-rfc3339
35 +"
36 +SRC_URI="
37 + https://github.com/danielrichman/${PN}/archive/version-${PV}.tar.gz
38 + -> ${MY_P}.tar.gz
39 +"
40 S="${WORKDIR}/${MY_P}"
41
42 LICENSE="GPL-3+"