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/webtest/
Date: Mon, 24 Aug 2020 15:11:41
Message-Id: 1598281761.be2828f44113d82453a7f1bf1d2db2eeddd79a1b.mgorny@gentoo
1 commit: be2828f44113d82453a7f1bf1d2db2eeddd79a1b
2 Author: Michał Górny <mgorny <AT> gentoo <DOT> org>
3 AuthorDate: Mon Aug 24 15:09:21 2020 +0000
4 Commit: Michał Górny <mgorny <AT> gentoo <DOT> org>
5 CommitDate: Mon Aug 24 15:09:21 2020 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=be2828f4
7
8 dev-python/webtest: Remove old
9
10 Signed-off-by: Michał Górny <mgorny <AT> gentoo.org>
11
12 dev-python/webtest/Manifest | 1 -
13 dev-python/webtest/webtest-2.0.33.ebuild | 52 --------------------------------
14 2 files changed, 53 deletions(-)
15
16 diff --git a/dev-python/webtest/Manifest b/dev-python/webtest/Manifest
17 index 18b0e17c5bb..6c5d1fe1ffa 100644
18 --- a/dev-python/webtest/Manifest
19 +++ b/dev-python/webtest/Manifest
20 @@ -1,2 +1 @@
21 -DIST WebTest-2.0.33.tar.gz 76081 BLAKE2B 6c06d7cf6573282342ac190fe2365d041679fd9a75571a525cf0214f22a0631d5f97e94261090d9c2a372f77b005d22be5976f612c27c6b4c832c71469b33ee8 SHA512 9f5c614f8215837dc5cecc9c3e844c5e1678eb8275f9e27a0ec6a68648e9f4f09155aa72f6c731c34028b8671b7776a94235f3e54d7dbf5ff55de94840171ca8
22 DIST WebTest-2.0.35.tar.gz 76227 BLAKE2B 2f10520a66a00cf61834d5ebe2b8eea469d4ca32155c9af3c0b78234607ea5443e695730a7db4476f5296f9b848f3950027d7485a4116e7d736fd9c33d8e78ae SHA512 ecad031702a9d2031d4e2230dc8213aaa6b1a3e9e6add296ee796aa2ef77d81c992dc24e481f721bc34711d1e33f3932d56cec4be3d62ee82a71fb405942c339
23
24 diff --git a/dev-python/webtest/webtest-2.0.33.ebuild b/dev-python/webtest/webtest-2.0.33.ebuild
25 deleted file mode 100644
26 index 184c4d2ff57..00000000000
27 --- a/dev-python/webtest/webtest-2.0.33.ebuild
28 +++ /dev/null
29 @@ -1,52 +0,0 @@
30 -# Copyright 1999-2020 Gentoo Authors
31 -# Distributed under the terms of the GNU General Public License v2
32 -
33 -EAPI=7
34 -
35 -DISTUTILS_USE_SETUPTOOLS=rdepend
36 -PYTHON_COMPAT=( python3_{6,7,8,9} pypy3 )
37 -
38 -inherit distutils-r1
39 -
40 -MY_PN="WebTest"
41 -MY_P="${MY_PN}-${PV}"
42 -
43 -DESCRIPTION="Helper to test WSGI applications"
44 -HOMEPAGE="https://pypi.org/project/WebTest/"
45 -SRC_URI="mirror://pypi/${MY_PN:0:1}/${MY_PN}/${MY_P}.tar.gz"
46 -S="${WORKDIR}/${MY_P}"
47 -
48 -LICENSE="MIT"
49 -SLOT="0"
50 -KEYWORDS="~alpha amd64 arm ~arm64 ~hppa ~ia64 ppc64 s390 sparc x86"
51 -IUSE="test"
52 -RESTRICT="!test? ( test )"
53 -
54 -RDEPEND="
55 - dev-python/paste[${PYTHON_USEDEP}]
56 - dev-python/pastedeploy[${PYTHON_USEDEP}]
57 - dev-python/six[${PYTHON_USEDEP}]
58 - >=dev-python/webob-1.2[${PYTHON_USEDEP}]
59 - >=dev-python/waitress-0.8.5[${PYTHON_USEDEP}]
60 - dev-python/beautifulsoup:4[${PYTHON_USEDEP}]"
61 -BDEPEND="${RDEPEND}
62 - app-arch/unzip
63 - test? ( dev-python/nose[${PYTHON_USEDEP}]
64 - dev-python/pyquery[${PYTHON_USEDEP}]
65 - dev-python/pastedeploy[${PYTHON_USEDEP}]
66 - dev-python/wsgiproxy2[${PYTHON_USEDEP}]
67 - )"
68 -
69 -PATCHES=(
70 - "${FILESDIR}/webtest-2.0.33-no-pylons-theme.patch"
71 -)
72 -
73 -distutils_enable_sphinx docs
74 -distutils_enable_tests pytest
75 -
76 -#python_test() {
77 -# distutils_install_for_testing
78 -# # Tests raise ImportErrors with our default PYTHONPATH.
79 -# local -x PYTHONPATH=
80 -# nosetests -v || die "Tests fail with ${EPYTHON}"
81 -#}