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/testtools/
Date: Mon, 05 Jul 2021 22:54:20
Message-Id: 1625525647.3b781a3520fd39359421116ac0e4f7822778c5ed.mgorny@gentoo
1 commit: 3b781a3520fd39359421116ac0e4f7822778c5ed
2 Author: Michał Górny <mgorny <AT> gentoo <DOT> org>
3 AuthorDate: Mon Jul 5 22:23:15 2021 +0000
4 Commit: Michał Górny <mgorny <AT> gentoo <DOT> org>
5 CommitDate: Mon Jul 5 22:54:07 2021 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=3b781a35
7
8 dev-python/testtools: Remove old
9
10 Signed-off-by: Michał Górny <mgorny <AT> gentoo.org>
11
12 dev-python/testtools/testtools-2.4.0-r1.ebuild | 45 --------------------------
13 1 file changed, 45 deletions(-)
14
15 diff --git a/dev-python/testtools/testtools-2.4.0-r1.ebuild b/dev-python/testtools/testtools-2.4.0-r1.ebuild
16 deleted file mode 100644
17 index 7ac7bd38f4e..00000000000
18 --- a/dev-python/testtools/testtools-2.4.0-r1.ebuild
19 +++ /dev/null
20 @@ -1,45 +0,0 @@
21 -# Copyright 1999-2021 Gentoo Authors
22 -# Distributed under the terms of the GNU General Public License v2
23 -
24 -EAPI=7
25 -
26 -PYTHON_COMPAT=( python3_{8..9} pypy3 )
27 -PYTHON_REQ_USE="threads(+)"
28 -
29 -inherit distutils-r1
30 -
31 -DESCRIPTION="Extensions to the Python standard library unit testing framework"
32 -HOMEPAGE="https://github.com/testing-cabal/testtools"
33 -SRC_URI="mirror://pypi/${P:0:1}/${PN}/${P}.tar.gz"
34 -
35 -LICENSE="MIT"
36 -SLOT="0"
37 -KEYWORDS="~alpha amd64 arm arm64 ~hppa ~ia64 ~m68k ~mips ppc ppc64 ~riscv ~s390 sparc x86 ~amd64-linux ~x86-linux ~x64-macos"
38 -
39 -RDEPEND="
40 - >=dev-python/extras-1.0.0[${PYTHON_USEDEP}]
41 - dev-python/python-mimeparse[${PYTHON_USEDEP}]
42 - >=dev-python/pbr-0.11[${PYTHON_USEDEP}]
43 - dev-python/pyrsistent[${PYTHON_USEDEP}]
44 - >=dev-python/six-1.4.0[${PYTHON_USEDEP}]
45 - dev-python/traceback2[${PYTHON_USEDEP}]
46 - >=dev-python/unittest2-1.0.0[${PYTHON_USEDEP}]
47 -"
48 -DEPEND="
49 - test? (
50 - >=dev-python/fixtures-1.3.0[${PYTHON_USEDEP}]
51 - dev-python/testscenarios[${PYTHON_USEDEP}]
52 - )
53 -"
54 -PDEPEND=">=dev-python/fixtures-1.3.0[${PYTHON_USEDEP}]"
55 -
56 -PATCHES=(
57 - "${FILESDIR}"/testtools-2.4.0-py39.patch
58 -)
59 -
60 -distutils_enable_sphinx doc
61 -distutils_enable_tests unittest
62 -
63 -python_test() {
64 - "${PYTHON}" -m testtools.run testtools.tests.test_suite || die "tests failed under ${EPYTHON}"
65 -}