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/testscenarios/
Date: Tue, 28 Jun 2022 08:11:10
Message-Id: 1656403674.faddd7bc78f6ae2ac07951942484321295497be6.mgorny@gentoo
1 commit: faddd7bc78f6ae2ac07951942484321295497be6
2 Author: Michał Górny <mgorny <AT> gentoo <DOT> org>
3 AuthorDate: Tue Jun 28 08:07:54 2022 +0000
4 Commit: Michał Górny <mgorny <AT> gentoo <DOT> org>
5 CommitDate: Tue Jun 28 08:07:54 2022 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=faddd7bc
7
8 dev-python/testscenarios: Remove old
9
10 Signed-off-by: Michał Górny <mgorny <AT> gentoo.org>
11
12 .../testscenarios/testscenarios-0.5.0-r1.ebuild | 28 ----------------------
13 1 file changed, 28 deletions(-)
14
15 diff --git a/dev-python/testscenarios/testscenarios-0.5.0-r1.ebuild b/dev-python/testscenarios/testscenarios-0.5.0-r1.ebuild
16 deleted file mode 100644
17 index db9786403f7e..000000000000
18 --- a/dev-python/testscenarios/testscenarios-0.5.0-r1.ebuild
19 +++ /dev/null
20 @@ -1,28 +0,0 @@
21 -# Copyright 1999-2022 Gentoo Authors
22 -# Distributed under the terms of the GNU General Public License v2
23 -
24 -EAPI=8
25 -
26 -PYTHON_COMPAT=( python3_{8..10} pypy3 )
27 -inherit distutils-r1
28 -
29 -DESCRIPTION="A pyunit extension for dependency injection"
30 -HOMEPAGE="https://launchpad.net/testscenarios"
31 -SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz"
32 -
33 -LICENSE="Apache-2.0"
34 -SLOT="0"
35 -KEYWORDS="~alpha amd64 arm arm64 hppa ~ia64 ~m68k ~mips ppc ppc64 ~riscv ~s390 sparc x86 ~amd64-linux ~x86-linux ~x64-macos"
36 -
37 -RDEPEND="
38 - dev-python/testtools[${PYTHON_USEDEP}]"
39 -
40 -# using pytest for tests since unittest loader fails with py3.5+
41 -BDEPEND="
42 - >=dev-python/pbr-0.11[${PYTHON_USEDEP}]"
43 -
44 -distutils_enable_tests pytest
45 -
46 -python_test() {
47 - epytest --deselect testscenarios/tests/test_testcase.py
48 -}