Gentoo Archives: gentoo-commits

From: Andreas Sturmlechner <asturm@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: dev-python/wsgiproxy2/
Date: Wed, 29 May 2019 18:07:39
Message-Id: 1559153229.d9a964f17a2ce1388f9966bb3c049146b422ff76.asturm@gentoo
1 commit: d9a964f17a2ce1388f9966bb3c049146b422ff76
2 Author: Michael Mair-Keimberger <m.mairkeimberger <AT> gmail <DOT> com>
3 AuthorDate: Thu May 16 19:29:44 2019 +0000
4 Commit: Andreas Sturmlechner <asturm <AT> gentoo <DOT> org>
5 CommitDate: Wed May 29 18:07:09 2019 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=d9a964f1
7
8 dev-python/wsgiproxy2: drop old
9
10 Signed-off-by: Michael Mair-Keimberger <m.mairkeimberger <AT> gmail.com>
11 Signed-off-by: Andreas Sturmlechner <asturm <AT> gentoo.org>
12
13 dev-python/wsgiproxy2/wsgiproxy2-0.4.4.ebuild | 50 ---------------------------
14 1 file changed, 50 deletions(-)
15
16 diff --git a/dev-python/wsgiproxy2/wsgiproxy2-0.4.4.ebuild b/dev-python/wsgiproxy2/wsgiproxy2-0.4.4.ebuild
17 deleted file mode 100644
18 index ab15f36c7cc..00000000000
19 --- a/dev-python/wsgiproxy2/wsgiproxy2-0.4.4.ebuild
20 +++ /dev/null
21 @@ -1,50 +0,0 @@
22 -# Copyright 1999-2019 Gentoo Authors
23 -# Distributed under the terms of the GNU General Public License v2
24 -
25 -EAPI=5
26 -
27 -PYTHON_COMPAT=( python{2_7,3_5,3_6} )
28 -
29 -inherit distutils-r1
30 -
31 -MY_PN="WSGIProxy2"
32 -
33 -DESCRIPTION="HTTP proxying tools for WSGI apps"
34 -HOMEPAGE="https://pypi.org/project/WSGIProxy2/"
35 -SRC_URI="mirror://pypi/${MY_PN:0:1}/${MY_PN}/${MY_PN}-${PV}.tar.gz"
36 -
37 -LICENSE="MIT"
38 -SLOT="0"
39 -KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~ppc64 ~s390 ~sh ~sparc ~x86"
40 -IUSE="doc test"
41 -RESTRICT="!test? ( test )"
42 -
43 -RDEPEND="dev-python/urllib3[${PYTHON_USEDEP}]
44 - dev-python/requests[${PYTHON_USEDEP}]
45 - dev-python/webob[${PYTHON_USEDEP}]
46 - dev-python/six[${PYTHON_USEDEP}]"
47 -DEPEND="dev-python/setuptools[${PYTHON_USEDEP}]
48 - test? ( ${RDEPEND}
49 - >=dev-python/webtest-2.0.17[${PYTHON_USEDEP}]
50 - dev-python/socketpool[${PYTHON_USEDEP}]
51 - dev-python/restkit[$(python_gen_usedep python2_7)] )"
52 -# Tests needing restkit are skipped under py3
53 -# Testing also revealed the suite needs latest webtest
54 -
55 -S="${WORKDIR}/${MY_PN}-${PV}"
56 -
57 -python_compile_all() {
58 - if use doc; then
59 - cd docs || die
60 - sphinx-build -b html -d _build/doctrees . _build/html
61 - fi
62 -}
63 -
64 -python_test() {
65 - nosetests || die "Tests fail with ${EPYTHON}"
66 -}
67 -
68 -python_install_all() {
69 - use doc && local HTML_DOCS=( docs/_build/html/. )
70 - distutils-r1_python_install_all
71 -}