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-pep8/
Date: Sat, 28 Mar 2020 18:49:16
Message-Id: 1585421326.9812670c5a65a2ed2dee25b010ca5b1f0cf243a5.mgorny@gentoo
1 commit: 9812670c5a65a2ed2dee25b010ca5b1f0cf243a5
2 Author: Michał Górny <mgorny <AT> gentoo <DOT> org>
3 AuthorDate: Sat Mar 28 18:41:36 2020 +0000
4 Commit: Michał Górny <mgorny <AT> gentoo <DOT> org>
5 CommitDate: Sat Mar 28 18:48:46 2020 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=9812670c
7
8 dev-python/pytest-pep8: Remove redundant versions
9
10 Signed-off-by: Michał Górny <mgorny <AT> gentoo.org>
11
12 dev-python/pytest-pep8/pytest-pep8-1.0.6.ebuild | 33 -------------------------
13 1 file changed, 33 deletions(-)
14
15 diff --git a/dev-python/pytest-pep8/pytest-pep8-1.0.6.ebuild b/dev-python/pytest-pep8/pytest-pep8-1.0.6.ebuild
16 deleted file mode 100644
17 index 6dd813f124c..00000000000
18 --- a/dev-python/pytest-pep8/pytest-pep8-1.0.6.ebuild
19 +++ /dev/null
20 @@ -1,33 +0,0 @@
21 -# Copyright 1999-2020 Gentoo Authors
22 -# Distributed under the terms of the GNU General Public License v2
23 -
24 -EAPI=6
25 -
26 -PYTHON_COMPAT=( python3_{6,7} pypy3 )
27 -
28 -inherit distutils-r1
29 -
30 -DESCRIPTION="pytest plugin to check PEP8 requirements"
31 -HOMEPAGE="https://pypi.org/project/pytest-pep8/"
32 -SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz"
33 -
34 -SLOT="0"
35 -LICENSE="MIT"
36 -KEYWORDS="~amd64 ~arm64 ~x86"
37 -IUSE=""
38 -
39 -RDEPEND="
40 - dev-python/setuptools[${PYTHON_USEDEP}]
41 - >=dev-python/pep8-1.3[${PYTHON_USEDEP}]
42 - >=dev-python/pytest-2.4.2[${PYTHON_USEDEP}]
43 - dev-python/pytest-cache[${PYTHON_USEDEP}]
44 -"
45 -DEPEND="${RDEPEND}"
46 -
47 -PATCHES=(
48 - "${FILESDIR}"/1.0.6-MANIFEST.patch
49 -)
50 -
51 -python_test() {
52 - ${EPYTHON} test_pep8.py || die
53 -}