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: Sun, 02 Aug 2020 09:15:31
Message-Id: 1596359076.293c031a2a09b4ff3ac780f118b8d76f9486ca38.mgorny@gentoo
1 commit: 293c031a2a09b4ff3ac780f118b8d76f9486ca38
2 Author: Michał Górny <mgorny <AT> gentoo <DOT> org>
3 AuthorDate: Sun Aug 2 09:04:36 2020 +0000
4 Commit: Michał Górny <mgorny <AT> gentoo <DOT> org>
5 CommitDate: Sun Aug 2 09:04:36 2020 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=293c031a
7
8 dev-python/pytest-cache: Recombine impls into a single ebuild
9
10 Signed-off-by: Michał Górny <mgorny <AT> gentoo.org>
11
12 dev-python/pytest-cache/pytest-cache-1.0-r2.ebuild | 2 +-
13 dev-python/pytest-cache/pytest-cache-1.0-r3.ebuild | 32 ----------------------
14 2 files changed, 1 insertion(+), 33 deletions(-)
15
16 diff --git a/dev-python/pytest-cache/pytest-cache-1.0-r2.ebuild b/dev-python/pytest-cache/pytest-cache-1.0-r2.ebuild
17 index 392412f86a5..375ed19f464 100644
18 --- a/dev-python/pytest-cache/pytest-cache-1.0-r2.ebuild
19 +++ b/dev-python/pytest-cache/pytest-cache-1.0-r2.ebuild
20 @@ -3,7 +3,7 @@
21
22 EAPI=7
23
24 -PYTHON_COMPAT=( python3_{6,7} pypy3 )
25 +PYTHON_COMPAT=( python3_{6,7,8,9} pypy3 )
26
27 inherit distutils-r1
28
29
30 diff --git a/dev-python/pytest-cache/pytest-cache-1.0-r3.ebuild b/dev-python/pytest-cache/pytest-cache-1.0-r3.ebuild
31 deleted file mode 100644
32 index 32f786371d3..00000000000
33 --- a/dev-python/pytest-cache/pytest-cache-1.0-r3.ebuild
34 +++ /dev/null
35 @@ -1,32 +0,0 @@
36 -# Copyright 1999-2020 Gentoo Authors
37 -# Distributed under the terms of the GNU General Public License v2
38 -
39 -EAPI=7
40 -
41 -PYTHON_COMPAT=( python3_{7,8,9} pypy3 )
42 -
43 -inherit distutils-r1
44 -
45 -DESCRIPTION="mechanisms for caching across test runs"
46 -HOMEPAGE="https://pypi.org/project/pytest-cache/
47 - https://bitbucket.org/hpk42/pytest-cache/
48 - https://pythonhosted.org/pytest-cache/"
49 -SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz"
50 -
51 -SLOT="0"
52 -LICENSE="MIT"
53 -KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~m68k ~ppc ~ppc64 ~s390 ~sparc ~x86 ~amd64-linux ~x86-linux"
54 -IUSE="test"
55 -
56 -RDEPEND="dev-python/execnet[${PYTHON_USEDEP}]"
57 -DEPEND="${RDEPEND}
58 - dev-python/setuptools[${PYTHON_USEDEP}]
59 - test? ( dev-python/pytest[${PYTHON_USEDEP}] )
60 - "
61 -
62 -# https://bitbucket.org/hpk42/pytest-cache/issues/12
63 -RESTRICT=test
64 -
65 -python_test() {
66 - PYTEST_PLUGINS="pytest_cache" py.test -v -v || die
67 -}