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:21
Message-Id: 1552271548.a84dee9d9eb1914247ad70b7bc79b8373261389b.williamh@gentoo
1 commit: a84dee9d9eb1914247ad70b7bc79b8373261389b
2 Author: William Hubbs <williamh <AT> gentoo <DOT> org>
3 AuthorDate: Mon Mar 11 02:25:17 2019 +0000
4 Commit: William Hubbs <williamh <AT> gentoo <DOT> org>
5 CommitDate: Mon Mar 11 02:32:28 2019 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=a84dee9d
7
8 dev-python/cherrypy: 18.1.0-r1 revbump for dependencies
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-18.1.0-r1.ebuild | 58 +++++++++++++++++++++++++++
14 1 file changed, 58 insertions(+)
15
16 diff --git a/dev-python/cherrypy/cherrypy-18.1.0-r1.ebuild b/dev-python/cherrypy/cherrypy-18.1.0-r1.ebuild
17 new file mode 100644
18 index 00000000000..ec04a4d67c2
19 --- /dev/null
20 +++ b/dev-python/cherrypy/cherrypy-18.1.0-r1.ebuild
21 @@ -0,0 +1,58 @@
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=( python3_{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"
40 +IUSE="ssl"
41 +# IUSE="ssl test"
42 +# See below to see what needs to be done before testing can be enabled
43 +# for this release.
44 +RESTRICT="test"
45 +
46 +RDEPEND=">=dev-python/cheroot-6.2.4[${PYTHON_USEDEP}]
47 + >=dev-python/portend-2.1.1[${PYTHON_USEDEP}]
48 + dev-python/more-itertools[${PYTHON_USEDEP}]
49 + dev-python/zc-lockfile[${PYTHON_USEDEP}]
50 + ssl? ( dev-python/pyopenssl[${PYTHON_USEDEP}] )"
51 +DEPEND="${RDEPEND}
52 + dev-python/setuptools[${PYTHON_USEDEP}]
53 + dev-python/setuptools_scm[${PYTHON_USEDEP}]"
54 + # These will need to be checked for testing and some will need to be
55 + # added to portage.
56 + # test? (
57 +# dev-python/coverage[${PYTHON_USEDEP}]
58 +# dev-python/codecov[${PYTHON_USEDEP}]
59 +# dev-python/objgraph[${PYTHON_USEDEP}]
60 +# dev-python/pytest[${PYTHON_USEDEP}]
61 +# dev-python/pytest-cov[${PYTHON_USEDEP}]
62 +# dev-python/pytest-services[${PYTHON_USEDEP}]
63 +# dev-python/pytest-sugar[${PYTHON_USEDEP}]
64 +# dev-python/backports-unittest-mock[${PYTHON_USEDEP}]
65 +# dev-python/path-py[${PYTHON_USEDEP}]
66 +# dev-python/requests-toolbelt[${PYTHON_USEDEP}]
67 +# )"
68 +S="${WORKDIR}/${MY_P}"
69 +
70 +python_prepare_all() {
71 + # UnicodeEncodeError: 'ascii' codec can't encode character u'\u2603' in position 0: ordinal not in range(128)
72 + sed -e 's|@pytest.mark.xfail(py27_on_windows|@pytest.mark.xfail(sys.version_info < (3,)|' \
73 + -i cherrypy/test/test_static.py || die
74 + distutils-r1_python_prepare_all
75 +}
76 +
77 +# python_test() {
78 +# py.test -v || die "tests failed under ${EPTYHON}"
79 +# }