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/cheroot/
Date: Sun, 04 Jul 2021 08:29:02
Message-Id: 1625387326.e69b2883d62f46b9fa3ae225fe05481cd0a23728.mgorny@gentoo
1 commit: e69b2883d62f46b9fa3ae225fe05481cd0a23728
2 Author: Michał Górny <mgorny <AT> gentoo <DOT> org>
3 AuthorDate: Sun Jul 4 07:59:19 2021 +0000
4 Commit: Michał Górny <mgorny <AT> gentoo <DOT> org>
5 CommitDate: Sun Jul 4 08:28:46 2021 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=e69b2883
7
8 dev-python/cheroot: Port to py3.10
9
10 Signed-off-by: Michał Górny <mgorny <AT> gentoo.org>
11
12 dev-python/cheroot/cheroot-8.5.2.ebuild | 9 ++++-----
13 1 file changed, 4 insertions(+), 5 deletions(-)
14
15 diff --git a/dev-python/cheroot/cheroot-8.5.2.ebuild b/dev-python/cheroot/cheroot-8.5.2.ebuild
16 index ad187eb5f9b..7e861985327 100644
17 --- a/dev-python/cheroot/cheroot-8.5.2.ebuild
18 +++ b/dev-python/cheroot/cheroot-8.5.2.ebuild
19 @@ -1,13 +1,12 @@
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 -DISTUTILS_USE_SETUPTOOLS=rdepend
28 +PYTHON_COMPAT=( python3_{8..10} )
29 inherit distutils-r1
30
31 -DESCRIPTION="Cheroot is the high-performance, pure-Python HTTP server used by CherryPy."
32 +DESCRIPTION="High-performance, pure-Python HTTP server used by CherryPy"
33 HOMEPAGE="https://cherrypy.org/
34 https://pypi.org/project/cheroot/
35 https://github.com/cherrypy/cheroot/"
36 @@ -57,5 +56,5 @@ python_prepare_all() {
37
38 python_test() {
39 cd "${BUILD_DIR}" || die
40 - pytest -vv || die "Tests failed with ${EPYTHON}"
41 + epytest
42 }