Gentoo Archives: gentoo-commits

From: Tobias Klausmann <klausman@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: dev-python/pycodestyle/
Date: Mon, 11 Jun 2018 17:50:44
Message-Id: 1528739414.05744748e9d866af03c257b212a58435e834f6f8.klausman@gentoo
1 commit: 05744748e9d866af03c257b212a58435e834f6f8
2 Author: Tobias Klausmann <klausman <AT> gentoo <DOT> org>
3 AuthorDate: Mon Jun 11 17:50:14 2018 +0000
4 Commit: Tobias Klausmann <klausman <AT> gentoo <DOT> org>
5 CommitDate: Mon Jun 11 17:50:14 2018 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=05744748
7
8 dev-python/pycodestyle: Add 2.4.0 and clean old versions
9
10 Package-Manager: Portage-2.3.40, Repoman-2.3.9
11
12 dev-python/pycodestyle/Manifest | 4 +--
13 dev-python/pycodestyle/pycodestyle-2.1.0.ebuild | 37 ----------------------
14 dev-python/pycodestyle/pycodestyle-2.2.0.ebuild | 37 ----------------------
15 ...style-2.0.0.ebuild => pycodestyle-2.4.0.ebuild} | 4 +--
16 4 files changed, 3 insertions(+), 79 deletions(-)
17
18 diff --git a/dev-python/pycodestyle/Manifest b/dev-python/pycodestyle/Manifest
19 index 7422364d22c..dc177866ba9 100644
20 --- a/dev-python/pycodestyle/Manifest
21 +++ b/dev-python/pycodestyle/Manifest
22 @@ -1,4 +1,2 @@
23 -DIST pycodestyle-2.0.0.tar.gz 81701 BLAKE2B 8b209762f7edce1d47a078f8b836efd9a47656c16ecbed1beba6fe989c7898769013433be5902b47ef15d919560534976ae21bb2a18b76c02b95763ce379bd3f SHA512 c003a75bb8873d8ec09cbaf7391c75ebd4739eeab518bbea03c8b2cdc18839773190352166ded78d32992adb56895ee1502003bca11b2d63676c10facb879ac8
24 -DIST pycodestyle-2.1.0.tar.gz 85519 BLAKE2B 95b0a260ba0cf4b07b02baf9b0a9f7c58634568854455add3bcf8d0597debdec8a1dbf95db4b6d4f8aebd327843a398a88826ed6dad403f0363bdf23ae4dd7b9 SHA512 901025813884612a04a1f37d2197a7757a050cb38f0dcbff7602b636ad22ae73e943d9b6a5028feda3bec9e55eca91064ace0416ffab8ea0c1721c50dd5c2673
25 -DIST pycodestyle-2.2.0.tar.gz 85811 BLAKE2B 22ec88146292d024ba46ae469d76b45b073f1d914b57fea104483fccec438c8922bf808fa5acda0ce391fb25d27a5ed245be17c19b3a7865299622b9dc073d9b SHA512 19c925158d6d0fa704f58387585aa4a618c4973d9f6e99a7831d9a41cb7886a4f1fec8b696162787a84dc575adb6e1cc253fb4af31252ae9cff0ced4b066c346
26 DIST pycodestyle-2.3.1.tar.gz 89460 BLAKE2B 0b7e23be13830954277d521262e9504ade8a4d0275a77e6365201ccffae955a8f505a1cd5e739145e1fc5551c3b956ff9a51bb57cede819f2886ee36637f7f9e SHA512 276bc21b4e6898e379be88f3582135a21314460ad20d4b6c3e12825ac1a72082b2c08bb62099e704c3222f879a1098d0b305132fac1095aaa60ca239b9763a2d
27 +DIST pycodestyle-2.4.0.tar.gz 96665 BLAKE2B 9c847aa9c9ffa1f401595d1c2c3f81f971f69628fb34d4e572ccb99203f8e9abe8101302d61c4ae7d330c03e7d0dd5e252d658065b7ed6660dea186880030529 SHA512 cb35238291fed30f1a4363e65b754165772d01e6006e19ce31769691aed17411cd893899fcd22dfca0455401bee899097fff6f3d63825c7656f186e37b7da3a0
28
29 diff --git a/dev-python/pycodestyle/pycodestyle-2.1.0.ebuild b/dev-python/pycodestyle/pycodestyle-2.1.0.ebuild
30 deleted file mode 100644
31 index 875a490fe5e..00000000000
32 --- a/dev-python/pycodestyle/pycodestyle-2.1.0.ebuild
33 +++ /dev/null
34 @@ -1,37 +0,0 @@
35 -# Copyright 1999-2016 Gentoo Foundation
36 -# Distributed under the terms of the GNU General Public License v2
37 -
38 -EAPI=6
39 -
40 -PYTHON_COMPAT=( python2_7 python3_{4,5,6} pypy pypy3 )
41 -
42 -inherit distutils-r1
43 -
44 -DESCRIPTION="Python style guide checker (fka pep8)"
45 -HOMEPAGE="https://pypi.org/project/pycodestyle/"
46 -SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz"
47 -
48 -LICENSE="MIT"
49 -SLOT="0"
50 -KEYWORDS="~alpha ~amd64 ~arm ~hppa ~ia64 ~ppc ~ppc64 ~x86 ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos ~sparc-solaris ~sparc64-solaris ~x64-solaris ~x86-solaris"
51 -IUSE="doc"
52 -
53 -RDEPEND="dev-python/setuptools[${PYTHON_USEDEP}]"
54 -DEPEND="${RDEPEND}
55 - doc? ( dev-python/sphinx[${PYTHON_USEDEP}] )"
56 -
57 -python_compile_all() {
58 - use doc && emake -C docs html
59 -}
60 -
61 -python_test() {
62 - PYTHONPATH="${S}" "${PYTHON}" pycodestyle.py -v --statistics pycodestyle.py || die
63 - PYTHONPATH="${S}" "${PYTHON}" pycodestyle.py -v --testsuite=testsuite || die
64 - PYTHONPATH="${S}" "${PYTHON}" pycodestyle.py --doctest -v || die
65 - esetup.py test
66 -}
67 -
68 -python_install_all() {
69 - use doc && local HTML_DOCS=( docs/_build/html/. )
70 - distutils-r1_python_install_all
71 -}
72
73 diff --git a/dev-python/pycodestyle/pycodestyle-2.2.0.ebuild b/dev-python/pycodestyle/pycodestyle-2.2.0.ebuild
74 deleted file mode 100644
75 index b4831ef4d10..00000000000
76 --- a/dev-python/pycodestyle/pycodestyle-2.2.0.ebuild
77 +++ /dev/null
78 @@ -1,37 +0,0 @@
79 -# Copyright 1999-2017 Gentoo Foundation
80 -# Distributed under the terms of the GNU General Public License v2
81 -
82 -EAPI=6
83 -
84 -PYTHON_COMPAT=( python2_7 python3_{4,5,6} pypy pypy3 )
85 -
86 -inherit distutils-r1
87 -
88 -DESCRIPTION="Python style guide checker (fka pep8)"
89 -HOMEPAGE="https://pypi.org/project/pycodestyle/"
90 -SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz"
91 -
92 -LICENSE="MIT"
93 -SLOT="0"
94 -KEYWORDS="~alpha amd64 ~arm ~arm64 ~hppa ~ia64 ~ppc ~ppc64 x86 ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos ~sparc-solaris ~sparc64-solaris ~x64-solaris ~x86-solaris"
95 -IUSE="doc"
96 -
97 -RDEPEND="dev-python/setuptools[${PYTHON_USEDEP}]"
98 -DEPEND="${RDEPEND}
99 - doc? ( dev-python/sphinx[${PYTHON_USEDEP}] )"
100 -
101 -python_compile_all() {
102 - use doc && emake -C docs html
103 -}
104 -
105 -python_test() {
106 - PYTHONPATH="${S}" "${PYTHON}" pycodestyle.py -v --statistics pycodestyle.py || die
107 - PYTHONPATH="${S}" "${PYTHON}" pycodestyle.py -v --testsuite=testsuite || die
108 - PYTHONPATH="${S}" "${PYTHON}" pycodestyle.py --doctest -v || die
109 - esetup.py test
110 -}
111 -
112 -python_install_all() {
113 - use doc && local HTML_DOCS=( docs/_build/html/. )
114 - distutils-r1_python_install_all
115 -}
116
117 diff --git a/dev-python/pycodestyle/pycodestyle-2.0.0.ebuild b/dev-python/pycodestyle/pycodestyle-2.4.0.ebuild
118 similarity index 78%
119 rename from dev-python/pycodestyle/pycodestyle-2.0.0.ebuild
120 rename to dev-python/pycodestyle/pycodestyle-2.4.0.ebuild
121 index 875a490fe5e..10fb79dbb65 100644
122 --- a/dev-python/pycodestyle/pycodestyle-2.0.0.ebuild
123 +++ b/dev-python/pycodestyle/pycodestyle-2.4.0.ebuild
124 @@ -1,4 +1,4 @@
125 -# Copyright 1999-2016 Gentoo Foundation
126 +# Copyright 1999-2018 Gentoo Foundation
127 # Distributed under the terms of the GNU General Public License v2
128
129 EAPI=6
130 @@ -13,7 +13,7 @@ SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz"
131
132 LICENSE="MIT"
133 SLOT="0"
134 -KEYWORDS="~alpha ~amd64 ~arm ~hppa ~ia64 ~ppc ~ppc64 ~x86 ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos ~sparc-solaris ~sparc64-solaris ~x64-solaris ~x86-solaris"
135 +KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~mips ~ppc ~ppc64 ~sparc ~x86 ~amd64-fbsd ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos ~sparc-solaris ~sparc64-solaris ~x64-solaris ~x86-solaris"
136 IUSE="doc"
137
138 RDEPEND="dev-python/setuptools[${PYTHON_USEDEP}]"