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, 27 Dec 2020 08:59:00
Message-Id: 1609059080.f8e57db73ea36ca9581cbe20f0a5782f8741ef13.mgorny@gentoo
1 commit: f8e57db73ea36ca9581cbe20f0a5782f8741ef13
2 Author: Michał Górny <mgorny <AT> gentoo <DOT> org>
3 AuthorDate: Sun Dec 27 08:51:20 2020 +0000
4 Commit: Michał Górny <mgorny <AT> gentoo <DOT> org>
5 CommitDate: Sun Dec 27 08:51:20 2020 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=f8e57db7
7
8 dev-python/cheroot: Remove old
9
10 Signed-off-by: Michał Górny <mgorny <AT> gentoo.org>
11
12 dev-python/cheroot/Manifest | 1 -
13 dev-python/cheroot/cheroot-8.4.5.ebuild | 54 ---------------------------------
14 2 files changed, 55 deletions(-)
15
16 diff --git a/dev-python/cheroot/Manifest b/dev-python/cheroot/Manifest
17 index 9afc9749fc2..0fb3d0fd174 100644
18 --- a/dev-python/cheroot/Manifest
19 +++ b/dev-python/cheroot/Manifest
20 @@ -1,3 +1,2 @@
21 -DIST cheroot-8.4.5.tar.gz 109443 BLAKE2B f8dd7a053304c6be559862028ef306c742c015e98c236f3e154f863c3abbf7d261f85b9a7e880ba9f51e6a8bf25cdf96ed6f45f7758657ecbdc4d6b7dde7f6a9 SHA512 2e8c84a67e24772dfeea7fbb397807e6553912d32392c393ec85181ccb381b1f4d3e38cc2366710a5c789869cbc6d15a79bd1b20b6d3845e5c08496b4f4b0e9e
22 DIST cheroot-8.4.8.tar.gz 111377 BLAKE2B be020dd45fef980e7e7b10e19f1ff2bf076ddd30578a31371afd7b9c85a644d0fb4c4836401f17be8df3307071f3337359f611f9cb6d28b17fb5b7723d6b6f7d SHA512 fa0362d29adbcf0b06038d209e33d722ff2f0766d8f2dd46c8ca217195ef5b30bb51400a9615f11cc136683b146ab2c21c3f1974cb4e7ad55488762e31da40f5
23 DIST cheroot-8.5.0.tar.gz 112163 BLAKE2B f7105f7c2d5433b90832dff6404120f153783b644b5acab72a915899fd138df1ee9ecde6d4148a66472cfb31802e58d684256524a212c65c1c42a22ab7783ce2 SHA512 3e781bfaea0b1d0b339ddb1ef871505c7eb0f4a67873f3207ec3cbb703392f579de90785c196d77f7a484b675de1438def4ad91109e70ad5894d26e55c645a01
24
25 diff --git a/dev-python/cheroot/cheroot-8.4.5.ebuild b/dev-python/cheroot/cheroot-8.4.5.ebuild
26 deleted file mode 100644
27 index 2685ff644e7..00000000000
28 --- a/dev-python/cheroot/cheroot-8.4.5.ebuild
29 +++ /dev/null
30 @@ -1,54 +0,0 @@
31 -# Copyright 1999-2020 Gentoo Authors
32 -# Distributed under the terms of the GNU General Public License v2
33 -
34 -EAPI=7
35 -
36 -PYTHON_COMPAT=( python3_{6..9} )
37 -DISTUTILS_USE_SETUPTOOLS=rdepend
38 -inherit distutils-r1
39 -
40 -DESCRIPTION="Cheroot is the high-performance, pure-Python HTTP server used by CherryPy."
41 -HOMEPAGE="https://cherrypy.org/ https://pypi.org/project/Cheroot/ https://github.com/cherrypy/cheroot"
42 -SRC_URI="mirror://pypi/C/${PN/c/C}/${P}.tar.gz"
43 -
44 -LICENSE="BSD"
45 -SLOT="0"
46 -KEYWORDS="amd64 arm arm64 ~ia64 ppc ~ppc64 x86"
47 -
48 -RDEPEND="
49 - >=dev-python/six-1.11.0[${PYTHON_USEDEP}]
50 - >=dev-python/more-itertools-2.6[${PYTHON_USEDEP}]
51 - dev-python/jaraco-functools[${PYTHON_USEDEP}]
52 -"
53 -BDEPEND="
54 - test? (
55 - ${RDEPEND}
56 - dev-python/jaraco-context[${PYTHON_USEDEP}]
57 - dev-python/jaraco-text[${PYTHON_USEDEP}]
58 - dev-python/portend[${PYTHON_USEDEP}]
59 - dev-python/pytest-forked[${PYTHON_USEDEP}]
60 - >=dev-python/pytest-mock-1.11.0[${PYTHON_USEDEP}]
61 - dev-python/pyopenssl[${PYTHON_USEDEP}]
62 - dev-python/requests-toolbelt[${PYTHON_USEDEP}]
63 - dev-python/requests-unixsocket[${PYTHON_USEDEP}]
64 - dev-python/trustme[${PYTHON_USEDEP}]
65 - dev-python/urllib3[${PYTHON_USEDEP}]
66 - )
67 -"
68 -
69 -distutils_enable_tests pytest
70 -
71 -python_prepare_all() {
72 - sed -e "s/use_scm_version=True/version='${PV}'/" -i setup.py || die
73 - sed -e '/setuptools_scm/d' -i setup.cfg || die
74 - sed -e '/--cov/d' \
75 - -e '/--testmon/d' \
76 - -e '/--numproc/d' \
77 - -i pytest.ini || die
78 -
79 - # broken
80 - sed -e '/False.*localhost/d' \
81 - -i cheroot/test/test_ssl.py || die
82 -
83 - distutils-r1_python_prepare_all
84 -}