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: Thu, 23 Jun 2022 08:17:31
Message-Id: 1655972237.3375d3916e51dfa0d1d5c983e9b56f4ed770464c.mgorny@gentoo
1 commit: 3375d3916e51dfa0d1d5c983e9b56f4ed770464c
2 Author: Michał Górny <mgorny <AT> gentoo <DOT> org>
3 AuthorDate: Thu Jun 23 07:20:51 2022 +0000
4 Commit: Michał Górny <mgorny <AT> gentoo <DOT> org>
5 CommitDate: Thu Jun 23 08:17:17 2022 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=3375d391
7
8 dev-python/cherrypy: Remove old
9
10 Signed-off-by: Michał Górny <mgorny <AT> gentoo.org>
11
12 dev-python/cherrypy/cherrypy-18.6.1.ebuild | 57 ------------------------------
13 1 file changed, 57 deletions(-)
14
15 diff --git a/dev-python/cherrypy/cherrypy-18.6.1.ebuild b/dev-python/cherrypy/cherrypy-18.6.1.ebuild
16 deleted file mode 100644
17 index d1177e6159ad..000000000000
18 --- a/dev-python/cherrypy/cherrypy-18.6.1.ebuild
19 +++ /dev/null
20 @@ -1,57 +0,0 @@
21 -# Copyright 1999-2022 Gentoo Authors
22 -# Distributed under the terms of the GNU General Public License v2
23 -
24 -EAPI=8
25 -
26 -PYTHON_COMPAT=( python3_{8..10} pypy3 )
27 -inherit distutils-r1
28 -
29 -MY_P="CherryPy-${PV}"
30 -
31 -DESCRIPTION="CherryPy is a pythonic, object-oriented HTTP framework"
32 -HOMEPAGE="https://cherrypy.dev https://pypi.org/project/CherryPy/"
33 -SRC_URI="mirror://pypi/C/CherryPy/${MY_P}.tar.gz"
34 -S="${WORKDIR}/${MY_P}"
35 -
36 -LICENSE="BSD"
37 -SLOT="0"
38 -KEYWORDS="amd64 arm arm64 ppc ~ppc64 x86"
39 -IUSE="ssl test"
40 -
41 -RDEPEND="
42 - >=dev-python/cheroot-8.2.1[${PYTHON_USEDEP}]
43 - >=dev-python/portend-2.1.1[${PYTHON_USEDEP}]
44 - dev-python/more-itertools[${PYTHON_USEDEP}]
45 - dev-python/zc-lockfile[${PYTHON_USEDEP}]
46 - dev-python/jaraco-collections[${PYTHON_USEDEP}]
47 - ssl? ( dev-python/pyopenssl[${PYTHON_USEDEP}] )"
48 -BDEPEND="
49 - dev-python/setuptools_scm[${PYTHON_USEDEP}]
50 - test? (
51 - dev-python/routes[${PYTHON_USEDEP}]
52 - dev-python/simplejson[${PYTHON_USEDEP}]
53 - dev-python/objgraph[${PYTHON_USEDEP}]
54 - dev-python/path-py[${PYTHON_USEDEP}]
55 - dev-python/requests-toolbelt[${PYTHON_USEDEP}]
56 - dev-python/pytest-services[${PYTHON_USEDEP}]
57 - )
58 -"
59 -
60 -distutils_enable_tests pytest
61 -
62 -python_prepare_all() {
63 - local PATCHES=(
64 - # https://github.com/cherrypy/cherrypy/pull/1946
65 - "${FILESDIR}"/${P}-close-files.patch
66 - )
67 -
68 - sed -r -e '/(pytest-sugar|pytest-cov)/ d' \
69 - -i setup.py || die
70 -
71 - sed -r -e 's:--cov-report[[:space:]]+[[:graph:]]+::g' \
72 - -e 's:--cov[[:graph:]]+::g' \
73 - -e 's:--doctest[[:graph:]]+::g' \
74 - -i pytest.ini || die
75 -
76 - distutils-r1_python_prepare_all
77 -}