Gentoo Archives: gentoo-commits

From: William Hubbs <williamh@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: dev-python/cherrypy/
Date: Mon, 11 Mar 2019 02:33:22
Message-Id: 1552271517.a13ffac40a3ee5e20fb3b918ebc38ca4e45d63ee.williamh@gentoo
1 commit: a13ffac40a3ee5e20fb3b918ebc38ca4e45d63ee
2 Author: William Hubbs <williamh <AT> gentoo <DOT> org>
3 AuthorDate: Mon Mar 11 01:46:47 2019 +0000
4 Commit: William Hubbs <williamh <AT> gentoo <DOT> org>
5 CommitDate: Mon Mar 11 02:31:57 2019 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=a13ffac4
7
8 dev-python/cherrypy: remove 17.4.1 broken version
9
10 Package-Manager: Portage-2.3.51, Repoman-2.3.12
11 Signed-off-by: William Hubbs <williamh <AT> gentoo.org>
12
13 dev-python/cherrypy/cherrypy-17.4.1.ebuild | 44 ------------------------------
14 1 file changed, 44 deletions(-)
15
16 diff --git a/dev-python/cherrypy/cherrypy-17.4.1.ebuild b/dev-python/cherrypy/cherrypy-17.4.1.ebuild
17 deleted file mode 100644
18 index db0bd2c75f8..00000000000
19 --- a/dev-python/cherrypy/cherrypy-17.4.1.ebuild
20 +++ /dev/null
21 @@ -1,44 +0,0 @@
22 -# Copyright 1999-2019 Gentoo Authors
23 -# Distributed under the terms of the GNU General Public License v2
24 -
25 -EAPI=7
26 -
27 -PYTHON_COMPAT=( python2_7 python3_{4,5,6,7} pypy3 )
28 -
29 -inherit distutils-r1
30 -
31 -MY_P="CherryPy-${PV}"
32 -
33 -DESCRIPTION="CherryPy is a pythonic, object-oriented HTTP framework"
34 -HOMEPAGE="https://www.cherrypy.org https://pypi.org/project/CherryPy/"
35 -SRC_URI="mirror://pypi/C/CherryPy/${MY_P}.tar.gz"
36 -
37 -LICENSE="BSD"
38 -SLOT="0"
39 -KEYWORDS="~amd64 ~arm ~ia64 ~ppc ~x86"
40 -IUSE="test"
41 -
42 -RDEPEND=">=dev-python/cheroot-5.9.1[${PYTHON_USEDEP}]
43 - >=dev-python/portend-2.1.1[${PYTHON_USEDEP}]
44 - >=dev-python/six-1.11.0[${PYTHON_USEDEP}]"
45 -DEPEND="${RDEPEND}
46 - dev-python/setuptools[${PYTHON_USEDEP}]
47 - dev-python/setuptools_scm[${PYTHON_USEDEP}]
48 - test? (
49 - dev-python/backports-unittest-mock[${PYTHON_USEDEP}]
50 - dev-python/path-py[${PYTHON_USEDEP}]
51 - dev-python/pytest[${PYTHON_USEDEP}]
52 - dev-python/pytest-cov[${PYTHON_USEDEP}]
53 - )"
54 -S="${WORKDIR}/${MY_P}"
55 -
56 -python_prepare_all() {
57 - # UnicodeEncodeError: 'ascii' codec can't encode character u'\u2603' in position 0: ordinal not in range(128)
58 - sed -e 's|@pytest.mark.xfail(py27_on_windows|@pytest.mark.xfail(sys.version_info < (3,)|' \
59 - -i cherrypy/test/test_static.py || die
60 - distutils-r1_python_prepare_all
61 -}
62 -
63 -python_test() {
64 - py.test -v || die "tests failed under ${EPTYHON}"
65 -}