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/pycodestyle/
Date: Sat, 28 Mar 2020 17:22:03
Message-Id: 1585415520.2bdbe2dc5adc070371ea2dc5df37a9e7d9c003ae.mgorny@gentoo
1 commit: 2bdbe2dc5adc070371ea2dc5df37a9e7d9c003ae
2 Author: Michał Górny <mgorny <AT> gentoo <DOT> org>
3 AuthorDate: Sat Mar 28 17:12:00 2020 +0000
4 Commit: Michał Górny <mgorny <AT> gentoo <DOT> org>
5 CommitDate: Sat Mar 28 17:12:00 2020 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=2bdbe2dc
7
8 dev-python/pycodestyle: Remove redundant versions
9
10 Signed-off-by: Michał Górny <mgorny <AT> gentoo.org>
11
12 dev-python/pycodestyle/Manifest | 1 -
13 dev-python/pycodestyle/pycodestyle-2.3.1.ebuild | 37 -------------------------
14 2 files changed, 38 deletions(-)
15
16 diff --git a/dev-python/pycodestyle/Manifest b/dev-python/pycodestyle/Manifest
17 index a135ba3e635..b0f8d25bc76 100644
18 --- a/dev-python/pycodestyle/Manifest
19 +++ b/dev-python/pycodestyle/Manifest
20 @@ -1,2 +1 @@
21 -DIST pycodestyle-2.3.1.tar.gz 89460 BLAKE2B 0b7e23be13830954277d521262e9504ade8a4d0275a77e6365201ccffae955a8f505a1cd5e739145e1fc5551c3b956ff9a51bb57cede819f2886ee36637f7f9e SHA512 276bc21b4e6898e379be88f3582135a21314460ad20d4b6c3e12825ac1a72082b2c08bb62099e704c3222f879a1098d0b305132fac1095aaa60ca239b9763a2d
22 DIST pycodestyle-2.5.0.tar.gz 98802 BLAKE2B ec86642f0f37abc4da8886df6395694b54cbe4e1d0030615b2136f0bc265825df254f019483e9094feaad685e43008cefdf0e50b533df434a40de0de11aa5fa1 SHA512 84e751a7d00048393b02ca743de5d71d1641e948ee1b4daebbdf2d07e0cd8f087ca4e81f826061114b40ef41920bbcd680c9f479e7cc1a159a70188425717208
23
24 diff --git a/dev-python/pycodestyle/pycodestyle-2.3.1.ebuild b/dev-python/pycodestyle/pycodestyle-2.3.1.ebuild
25 deleted file mode 100644
26 index d96e2d151da..00000000000
27 --- a/dev-python/pycodestyle/pycodestyle-2.3.1.ebuild
28 +++ /dev/null
29 @@ -1,37 +0,0 @@
30 -# Copyright 1999-2020 Gentoo Authors
31 -# Distributed under the terms of the GNU General Public License v2
32 -
33 -EAPI=6
34 -
35 -PYTHON_COMPAT=( python2_7 python3_6 pypy3 )
36 -
37 -inherit distutils-r1
38 -
39 -DESCRIPTION="Python style guide checker (fka pep8)"
40 -HOMEPAGE="https://pypi.org/project/pycodestyle/"
41 -SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz"
42 -
43 -LICENSE="MIT"
44 -SLOT="0"
45 -KEYWORDS="~alpha amd64 arm ~arm64 hppa ia64 ~mips ppc ppc64 s390 sparc x86 ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos ~sparc-solaris ~sparc64-solaris ~x64-solaris ~x86-solaris"
46 -IUSE="doc"
47 -
48 -RDEPEND="dev-python/setuptools[${PYTHON_USEDEP}]"
49 -DEPEND="${RDEPEND}
50 - doc? ( dev-python/sphinx[${PYTHON_USEDEP}] )"
51 -
52 -python_compile_all() {
53 - use doc && emake -C docs html
54 -}
55 -
56 -python_test() {
57 - PYTHONPATH="${S}" "${PYTHON}" pycodestyle.py -v --statistics pycodestyle.py || die
58 - PYTHONPATH="${S}" "${PYTHON}" pycodestyle.py -v --testsuite=testsuite || die
59 - PYTHONPATH="${S}" "${PYTHON}" pycodestyle.py --doctest -v || die
60 - esetup.py test
61 -}
62 -
63 -python_install_all() {
64 - use doc && local HTML_DOCS=( docs/_build/html/. )
65 - distutils-r1_python_install_all
66 -}