Gentoo Archives: gentoo-commits

From: Andreas Sturmlechner <asturm@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: dev-python/pycodestyle/
Date: Tue, 11 Feb 2020 16:17:29
Message-Id: 1581437797.84b6f630675d2e997baaf88c9f208e291f7455b6.asturm@gentoo
1 commit: 84b6f630675d2e997baaf88c9f208e291f7455b6
2 Author: Andreas Sturmlechner <asturm <AT> gentoo <DOT> org>
3 AuthorDate: Tue Feb 11 16:16:37 2020 +0000
4 Commit: Andreas Sturmlechner <asturm <AT> gentoo <DOT> org>
5 CommitDate: Tue Feb 11 16:16:37 2020 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=84b6f630
7
8 dev-python/pycodestyle: Drop 2.3.1 and 2.4.0
9
10 Package-Manager: Portage-2.3.88, Repoman-2.3.20
11 Signed-off-by: Andreas Sturmlechner <asturm <AT> gentoo.org>
12
13 dev-python/pycodestyle/Manifest | 2 --
14 dev-python/pycodestyle/pycodestyle-2.3.1.ebuild | 37 -------------------------
15 dev-python/pycodestyle/pycodestyle-2.4.0.ebuild | 37 -------------------------
16 3 files changed, 76 deletions(-)
17
18 diff --git a/dev-python/pycodestyle/Manifest b/dev-python/pycodestyle/Manifest
19 index 5886f5c15dd..b0f8d25bc76 100644
20 --- a/dev-python/pycodestyle/Manifest
21 +++ b/dev-python/pycodestyle/Manifest
22 @@ -1,3 +1 @@
23 -DIST pycodestyle-2.3.1.tar.gz 89460 BLAKE2B 0b7e23be13830954277d521262e9504ade8a4d0275a77e6365201ccffae955a8f505a1cd5e739145e1fc5551c3b956ff9a51bb57cede819f2886ee36637f7f9e SHA512 276bc21b4e6898e379be88f3582135a21314460ad20d4b6c3e12825ac1a72082b2c08bb62099e704c3222f879a1098d0b305132fac1095aaa60ca239b9763a2d
24 -DIST pycodestyle-2.4.0.tar.gz 96665 BLAKE2B 9c847aa9c9ffa1f401595d1c2c3f81f971f69628fb34d4e572ccb99203f8e9abe8101302d61c4ae7d330c03e7d0dd5e252d658065b7ed6660dea186880030529 SHA512 cb35238291fed30f1a4363e65b754165772d01e6006e19ce31769691aed17411cd893899fcd22dfca0455401bee899097fff6f3d63825c7656f186e37b7da3a0
25 DIST pycodestyle-2.5.0.tar.gz 98802 BLAKE2B ec86642f0f37abc4da8886df6395694b54cbe4e1d0030615b2136f0bc265825df254f019483e9094feaad685e43008cefdf0e50b533df434a40de0de11aa5fa1 SHA512 84e751a7d00048393b02ca743de5d71d1641e948ee1b4daebbdf2d07e0cd8f087ca4e81f826061114b40ef41920bbcd680c9f479e7cc1a159a70188425717208
26
27 diff --git a/dev-python/pycodestyle/pycodestyle-2.3.1.ebuild b/dev-python/pycodestyle/pycodestyle-2.3.1.ebuild
28 deleted file mode 100644
29 index d96e2d151da..00000000000
30 --- a/dev-python/pycodestyle/pycodestyle-2.3.1.ebuild
31 +++ /dev/null
32 @@ -1,37 +0,0 @@
33 -# Copyright 1999-2020 Gentoo Authors
34 -# Distributed under the terms of the GNU General Public License v2
35 -
36 -EAPI=6
37 -
38 -PYTHON_COMPAT=( python2_7 python3_6 pypy3 )
39 -
40 -inherit distutils-r1
41 -
42 -DESCRIPTION="Python style guide checker (fka pep8)"
43 -HOMEPAGE="https://pypi.org/project/pycodestyle/"
44 -SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz"
45 -
46 -LICENSE="MIT"
47 -SLOT="0"
48 -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"
49 -IUSE="doc"
50 -
51 -RDEPEND="dev-python/setuptools[${PYTHON_USEDEP}]"
52 -DEPEND="${RDEPEND}
53 - doc? ( dev-python/sphinx[${PYTHON_USEDEP}] )"
54 -
55 -python_compile_all() {
56 - use doc && emake -C docs html
57 -}
58 -
59 -python_test() {
60 - PYTHONPATH="${S}" "${PYTHON}" pycodestyle.py -v --statistics pycodestyle.py || die
61 - PYTHONPATH="${S}" "${PYTHON}" pycodestyle.py -v --testsuite=testsuite || die
62 - PYTHONPATH="${S}" "${PYTHON}" pycodestyle.py --doctest -v || die
63 - esetup.py test
64 -}
65 -
66 -python_install_all() {
67 - use doc && local HTML_DOCS=( docs/_build/html/. )
68 - distutils-r1_python_install_all
69 -}
70
71 diff --git a/dev-python/pycodestyle/pycodestyle-2.4.0.ebuild b/dev-python/pycodestyle/pycodestyle-2.4.0.ebuild
72 deleted file mode 100644
73 index 34a1b6e6bf6..00000000000
74 --- a/dev-python/pycodestyle/pycodestyle-2.4.0.ebuild
75 +++ /dev/null
76 @@ -1,37 +0,0 @@
77 -# Copyright 1999-2020 Gentoo Authors
78 -# Distributed under the terms of the GNU General Public License v2
79 -
80 -EAPI=6
81 -
82 -PYTHON_COMPAT=( pypy3 python{2_7,3_{6,7}} )
83 -
84 -inherit distutils-r1
85 -
86 -DESCRIPTION="Python style guide checker (fka pep8)"
87 -HOMEPAGE="https://pypi.org/project/pycodestyle/"
88 -SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz"
89 -
90 -LICENSE="MIT"
91 -SLOT="0"
92 -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"
93 -IUSE="doc"
94 -
95 -RDEPEND="dev-python/setuptools[${PYTHON_USEDEP}]"
96 -DEPEND="${RDEPEND}
97 - doc? ( dev-python/sphinx[${PYTHON_USEDEP}] )"
98 -
99 -python_compile_all() {
100 - use doc && emake -C docs html
101 -}
102 -
103 -python_test() {
104 - PYTHONPATH="${S}" "${PYTHON}" pycodestyle.py -v --statistics pycodestyle.py || die
105 - PYTHONPATH="${S}" "${PYTHON}" pycodestyle.py -v --testsuite=testsuite || die
106 - PYTHONPATH="${S}" "${PYTHON}" pycodestyle.py --doctest -v || die
107 - esetup.py test
108 -}
109 -
110 -python_install_all() {
111 - use doc && local HTML_DOCS=( docs/_build/html/. )
112 - distutils-r1_python_install_all
113 -}