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/pytest-cache/
Date: Sat, 28 Mar 2020 18:49:09
Message-Id: 1585421301.a02e621776eee9ea6bb6943163511a20914f8edf.mgorny@gentoo
1 commit: a02e621776eee9ea6bb6943163511a20914f8edf
2 Author: Michał Górny <mgorny <AT> gentoo <DOT> org>
3 AuthorDate: Sat Mar 28 18:29:46 2020 +0000
4 Commit: Michał Górny <mgorny <AT> gentoo <DOT> org>
5 CommitDate: Sat Mar 28 18:48:21 2020 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=a02e6217
7
8 dev-python/pytest-cache: Remove redundant versions
9
10 Signed-off-by: Michał Górny <mgorny <AT> gentoo.org>
11
12 dev-python/pytest-cache/pytest-cache-1.0-r1.ebuild | 32 ----------------------
13 1 file changed, 32 deletions(-)
14
15 diff --git a/dev-python/pytest-cache/pytest-cache-1.0-r1.ebuild b/dev-python/pytest-cache/pytest-cache-1.0-r1.ebuild
16 deleted file mode 100644
17 index 1392793f8a8..00000000000
18 --- a/dev-python/pytest-cache/pytest-cache-1.0-r1.ebuild
19 +++ /dev/null
20 @@ -1,32 +0,0 @@
21 -# Copyright 1999-2020 Gentoo Authors
22 -# Distributed under the terms of the GNU General Public License v2
23 -
24 -EAPI=5
25 -
26 -PYTHON_COMPAT=( python2_7 python3_6 pypy3 )
27 -
28 -inherit distutils-r1
29 -
30 -DESCRIPTION="mechanisms for caching across test runs"
31 -HOMEPAGE="https://pypi.org/project/pytest-cache/
32 - https://bitbucket.org/hpk42/pytest-cache/
33 - https://pythonhosted.org/pytest-cache/"
34 -SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz"
35 -
36 -SLOT="0"
37 -LICENSE="MIT"
38 -KEYWORDS="~alpha amd64 arm ~arm64 ~hppa ~ia64 ~m68k ppc ppc64 ~s390 ~sparc x86 ~amd64-linux ~x86-linux"
39 -IUSE="test"
40 -
41 -RDEPEND="dev-python/execnet[${PYTHON_USEDEP}]"
42 -DEPEND="${RDEPEND}
43 - dev-python/setuptools[${PYTHON_USEDEP}]
44 - test? ( dev-python/pytest[${PYTHON_USEDEP}] )
45 - "
46 -
47 -# https://bitbucket.org/hpk42/pytest-cache/issues/12
48 -RESTRICT=test
49 -
50 -python_test() {
51 - PYTEST_PLUGINS="pytest_cache" py.test -v -v || die
52 -}