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/pastedeploy/
Date: Tue, 17 May 2022 07:21:13
Message-Id: 1652772061.c524406da8ab6e52cfd0efc479cb819118008686.mgorny@gentoo
1 commit: c524406da8ab6e52cfd0efc479cb819118008686
2 Author: Michał Górny <mgorny <AT> gentoo <DOT> org>
3 AuthorDate: Tue May 17 07:10:09 2022 +0000
4 Commit: Michał Górny <mgorny <AT> gentoo <DOT> org>
5 CommitDate: Tue May 17 07:21:01 2022 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=c524406d
7
8 dev-python/pastedeploy: Enable py3.11
9
10 Signed-off-by: Michał Górny <mgorny <AT> gentoo.org>
11
12 dev-python/pastedeploy/pastedeploy-2.1.1-r3.ebuild | 12 +++++++++---
13 1 file changed, 9 insertions(+), 3 deletions(-)
14
15 diff --git a/dev-python/pastedeploy/pastedeploy-2.1.1-r3.ebuild b/dev-python/pastedeploy/pastedeploy-2.1.1-r3.ebuild
16 index f783815afabb..8fda2c1f81ff 100644
17 --- a/dev-python/pastedeploy/pastedeploy-2.1.1-r3.ebuild
18 +++ b/dev-python/pastedeploy/pastedeploy-2.1.1-r3.ebuild
19 @@ -4,16 +4,22 @@
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_PN="PasteDeploy"
29 MY_P="${MY_PN}-${PV}"
30 DESCRIPTION="Load, configure, and compose WSGI applications and servers"
31 -HOMEPAGE="https://pypi.org/project/PasteDeploy/"
32 +HOMEPAGE="
33 + https://github.com/Pylons/pastedeploy/
34 + https://pypi.org/project/PasteDeploy/
35 +"
36 # pypi tarball does not include tests
37 -SRC_URI="https://github.com/Pylons/${PN}/archive/${PV}.tar.gz -> ${P}.tar.gz"
38 +SRC_URI="
39 + https://github.com/Pylons/pastedeploy/archive/${PV}.tar.gz
40 + -> ${P}.tar.gz
41 +"
42
43 LICENSE="MIT"
44 SLOT="0"