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/cherrypy/
Date: Sun, 04 Jul 2021 08:29:03
Message-Id: 1625387335.c8b3d98d0b5156cd89526d6b2966f7139bf54d65.mgorny@gentoo
1 commit: c8b3d98d0b5156cd89526d6b2966f7139bf54d65
2 Author: Michał Górny <mgorny <AT> gentoo <DOT> org>
3 AuthorDate: Sun Jul 4 08:09:25 2021 +0000
4 Commit: Michał Górny <mgorny <AT> gentoo <DOT> org>
5 CommitDate: Sun Jul 4 08:28:55 2021 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=c8b3d98d
7
8 dev-python/cherrypy: Port to py3.10
9
10 Signed-off-by: Michał Górny <mgorny <AT> gentoo.org>
11
12 dev-python/cherrypy/cherrypy-18.6.1.ebuild | 6 +++---
13 1 file changed, 3 insertions(+), 3 deletions(-)
14
15 diff --git a/dev-python/cherrypy/cherrypy-18.6.1.ebuild b/dev-python/cherrypy/cherrypy-18.6.1.ebuild
16 index f5d3a478fc2..25be2b216f7 100644
17 --- a/dev-python/cherrypy/cherrypy-18.6.1.ebuild
18 +++ b/dev-python/cherrypy/cherrypy-18.6.1.ebuild
19 @@ -1,15 +1,15 @@
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_{8..9} )
27 +PYTHON_COMPAT=( python3_{8..10} )
28 inherit distutils-r1
29
30 MY_P="CherryPy-${PV}"
31
32 DESCRIPTION="CherryPy is a pythonic, object-oriented HTTP framework"
33 -HOMEPAGE="https://www.cherrypy.org/ https://pypi.org/project/CherryPy/"
34 +HOMEPAGE="https://pypi.org/project/CherryPy/"
35 SRC_URI="mirror://pypi/C/CherryPy/${MY_P}.tar.gz"
36 S="${WORKDIR}/${MY_P}"