From: "Tobias Klausmann" <klausman@gentoo.org>
To: gentoo-commits@lists.gentoo.org
Subject: [gentoo-commits] repo/gentoo:master commit in: dev-python/pycodestyle/
Date: Mon, 11 Jun 2018 17:50:38 +0000 (UTC) [thread overview]
Message-ID: <1528739414.05744748e9d866af03c257b212a58435e834f6f8.klausman@gentoo> (raw)
commit: 05744748e9d866af03c257b212a58435e834f6f8
Author: Tobias Klausmann <klausman <AT> gentoo <DOT> org>
AuthorDate: Mon Jun 11 17:50:14 2018 +0000
Commit: Tobias Klausmann <klausman <AT> gentoo <DOT> org>
CommitDate: Mon Jun 11 17:50:14 2018 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=05744748
dev-python/pycodestyle: Add 2.4.0 and clean old versions
Package-Manager: Portage-2.3.40, Repoman-2.3.9
dev-python/pycodestyle/Manifest | 4 +--
dev-python/pycodestyle/pycodestyle-2.1.0.ebuild | 37 ----------------------
dev-python/pycodestyle/pycodestyle-2.2.0.ebuild | 37 ----------------------
...style-2.0.0.ebuild => pycodestyle-2.4.0.ebuild} | 4 +--
4 files changed, 3 insertions(+), 79 deletions(-)
diff --git a/dev-python/pycodestyle/Manifest b/dev-python/pycodestyle/Manifest
index 7422364d22c..dc177866ba9 100644
--- a/dev-python/pycodestyle/Manifest
+++ b/dev-python/pycodestyle/Manifest
@@ -1,4 +1,2 @@
-DIST pycodestyle-2.0.0.tar.gz 81701 BLAKE2B 8b209762f7edce1d47a078f8b836efd9a47656c16ecbed1beba6fe989c7898769013433be5902b47ef15d919560534976ae21bb2a18b76c02b95763ce379bd3f SHA512 c003a75bb8873d8ec09cbaf7391c75ebd4739eeab518bbea03c8b2cdc18839773190352166ded78d32992adb56895ee1502003bca11b2d63676c10facb879ac8
-DIST pycodestyle-2.1.0.tar.gz 85519 BLAKE2B 95b0a260ba0cf4b07b02baf9b0a9f7c58634568854455add3bcf8d0597debdec8a1dbf95db4b6d4f8aebd327843a398a88826ed6dad403f0363bdf23ae4dd7b9 SHA512 901025813884612a04a1f37d2197a7757a050cb38f0dcbff7602b636ad22ae73e943d9b6a5028feda3bec9e55eca91064ace0416ffab8ea0c1721c50dd5c2673
-DIST pycodestyle-2.2.0.tar.gz 85811 BLAKE2B 22ec88146292d024ba46ae469d76b45b073f1d914b57fea104483fccec438c8922bf808fa5acda0ce391fb25d27a5ed245be17c19b3a7865299622b9dc073d9b SHA512 19c925158d6d0fa704f58387585aa4a618c4973d9f6e99a7831d9a41cb7886a4f1fec8b696162787a84dc575adb6e1cc253fb4af31252ae9cff0ced4b066c346
DIST pycodestyle-2.3.1.tar.gz 89460 BLAKE2B 0b7e23be13830954277d521262e9504ade8a4d0275a77e6365201ccffae955a8f505a1cd5e739145e1fc5551c3b956ff9a51bb57cede819f2886ee36637f7f9e SHA512 276bc21b4e6898e379be88f3582135a21314460ad20d4b6c3e12825ac1a72082b2c08bb62099e704c3222f879a1098d0b305132fac1095aaa60ca239b9763a2d
+DIST pycodestyle-2.4.0.tar.gz 96665 BLAKE2B 9c847aa9c9ffa1f401595d1c2c3f81f971f69628fb34d4e572ccb99203f8e9abe8101302d61c4ae7d330c03e7d0dd5e252d658065b7ed6660dea186880030529 SHA512 cb35238291fed30f1a4363e65b754165772d01e6006e19ce31769691aed17411cd893899fcd22dfca0455401bee899097fff6f3d63825c7656f186e37b7da3a0
diff --git a/dev-python/pycodestyle/pycodestyle-2.1.0.ebuild b/dev-python/pycodestyle/pycodestyle-2.1.0.ebuild
deleted file mode 100644
index 875a490fe5e..00000000000
--- a/dev-python/pycodestyle/pycodestyle-2.1.0.ebuild
+++ /dev/null
@@ -1,37 +0,0 @@
-# Copyright 1999-2016 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=6
-
-PYTHON_COMPAT=( python2_7 python3_{4,5,6} pypy pypy3 )
-
-inherit distutils-r1
-
-DESCRIPTION="Python style guide checker (fka pep8)"
-HOMEPAGE="https://pypi.org/project/pycodestyle/"
-SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz"
-
-LICENSE="MIT"
-SLOT="0"
-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"
-IUSE="doc"
-
-RDEPEND="dev-python/setuptools[${PYTHON_USEDEP}]"
-DEPEND="${RDEPEND}
- doc? ( dev-python/sphinx[${PYTHON_USEDEP}] )"
-
-python_compile_all() {
- use doc && emake -C docs html
-}
-
-python_test() {
- PYTHONPATH="${S}" "${PYTHON}" pycodestyle.py -v --statistics pycodestyle.py || die
- PYTHONPATH="${S}" "${PYTHON}" pycodestyle.py -v --testsuite=testsuite || die
- PYTHONPATH="${S}" "${PYTHON}" pycodestyle.py --doctest -v || die
- esetup.py test
-}
-
-python_install_all() {
- use doc && local HTML_DOCS=( docs/_build/html/. )
- distutils-r1_python_install_all
-}
diff --git a/dev-python/pycodestyle/pycodestyle-2.2.0.ebuild b/dev-python/pycodestyle/pycodestyle-2.2.0.ebuild
deleted file mode 100644
index b4831ef4d10..00000000000
--- a/dev-python/pycodestyle/pycodestyle-2.2.0.ebuild
+++ /dev/null
@@ -1,37 +0,0 @@
-# Copyright 1999-2017 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=6
-
-PYTHON_COMPAT=( python2_7 python3_{4,5,6} pypy pypy3 )
-
-inherit distutils-r1
-
-DESCRIPTION="Python style guide checker (fka pep8)"
-HOMEPAGE="https://pypi.org/project/pycodestyle/"
-SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz"
-
-LICENSE="MIT"
-SLOT="0"
-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"
-IUSE="doc"
-
-RDEPEND="dev-python/setuptools[${PYTHON_USEDEP}]"
-DEPEND="${RDEPEND}
- doc? ( dev-python/sphinx[${PYTHON_USEDEP}] )"
-
-python_compile_all() {
- use doc && emake -C docs html
-}
-
-python_test() {
- PYTHONPATH="${S}" "${PYTHON}" pycodestyle.py -v --statistics pycodestyle.py || die
- PYTHONPATH="${S}" "${PYTHON}" pycodestyle.py -v --testsuite=testsuite || die
- PYTHONPATH="${S}" "${PYTHON}" pycodestyle.py --doctest -v || die
- esetup.py test
-}
-
-python_install_all() {
- use doc && local HTML_DOCS=( docs/_build/html/. )
- distutils-r1_python_install_all
-}
diff --git a/dev-python/pycodestyle/pycodestyle-2.0.0.ebuild b/dev-python/pycodestyle/pycodestyle-2.4.0.ebuild
similarity index 78%
rename from dev-python/pycodestyle/pycodestyle-2.0.0.ebuild
rename to dev-python/pycodestyle/pycodestyle-2.4.0.ebuild
index 875a490fe5e..10fb79dbb65 100644
--- a/dev-python/pycodestyle/pycodestyle-2.0.0.ebuild
+++ b/dev-python/pycodestyle/pycodestyle-2.4.0.ebuild
@@ -1,4 +1,4 @@
-# Copyright 1999-2016 Gentoo Foundation
+# Copyright 1999-2018 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
EAPI=6
@@ -13,7 +13,7 @@ SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz"
LICENSE="MIT"
SLOT="0"
-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"
+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"
IUSE="doc"
RDEPEND="dev-python/setuptools[${PYTHON_USEDEP}]"
next reply other threads:[~2018-06-11 17:50 UTC|newest]
Thread overview: 74+ messages / expand[flat|nested] mbox.gz Atom feed top
2018-06-11 17:50 Tobias Klausmann [this message]
-- strict thread matches above, loose matches on Subject: below --
2024-08-24 8:10 [gentoo-commits] repo/gentoo:master commit in: dev-python/pycodestyle/ Sam James
2024-08-05 11:48 Michał Górny
2024-07-06 6:35 Michał Górny
2024-07-06 6:26 Sam James
2024-06-16 5:21 Michał Górny
2024-06-10 8:02 Petr Vaněk
2023-11-15 17:10 Michał Górny
2023-11-15 16:34 Arthur Zamarin
2023-10-13 4:44 Michał Górny
2023-09-02 2:58 Michał Górny
2023-09-01 16:30 Arthur Zamarin
2023-07-30 18:27 Michał Górny
2022-12-31 10:55 Michał Górny
2022-12-31 10:55 Michał Górny
2022-12-31 10:41 Arthur Zamarin
2022-11-25 5:14 Michał Górny
2022-09-06 18:24 Arthur Zamarin
2022-08-04 17:55 Arthur Zamarin
2022-07-31 18:20 Arthur Zamarin
2022-06-22 18:17 Arthur Zamarin
2022-06-22 18:16 Arthur Zamarin
2022-05-23 9:38 Michał Górny
2022-05-23 9:38 Michał Górny
2022-05-16 13:01 Andrew Ammerlaan
2021-11-30 11:06 Tobias Klausmann
2021-11-26 20:38 Arthur Zamarin
2021-10-23 13:16 Sam James
2021-10-11 7:56 Michał Górny
2021-09-25 13:09 James Le Cuirot
2021-09-10 11:28 Tobias Klausmann
2021-09-10 10:28 Tobias Klausmann
2021-06-05 17:59 Michał Górny
2021-04-18 1:41 Sam James
2021-03-14 22:10 Michał Górny
2020-08-02 8:36 Michał Górny
2020-07-09 5:14 Michał Górny
2020-07-09 5:14 Michał Górny
2020-06-06 16:42 Andreas Sturmlechner
2020-05-26 20:43 Matt Turner
2020-04-15 2:49 Mike Gilbert
2020-03-28 17:21 Michał Górny
2020-02-11 16:58 Andreas Sturmlechner
2020-02-11 16:17 Andreas Sturmlechner
2020-01-03 23:36 Sergei Trofimovich
2020-01-03 14:33 Agostino Sarubbo
2020-01-03 14:30 Agostino Sarubbo
2020-01-03 13:56 Agostino Sarubbo
2020-01-03 13:44 Agostino Sarubbo
2020-01-03 13:42 Agostino Sarubbo
2020-01-03 12:18 Agostino Sarubbo
2020-01-02 9:58 Sergei Trofimovich
2019-12-02 21:13 Aaron Bauman
2019-11-24 22:21 Andreas Sturmlechner
2018-10-14 13:29 Mikle Kolyada
2018-09-05 13:51 Louis Sautier
2018-04-18 12:58 Mikle Kolyada
2018-04-16 18:36 Sergei Trofimovich
2018-04-07 21:07 Matt Turner
2018-04-07 20:33 Matt Turner
2018-04-07 20:33 Matt Turner
2018-03-05 21:31 Tobias Klausmann
2018-03-02 23:39 Sergei Trofimovich
2018-02-22 17:38 Michał Górny
2017-08-05 9:03 Michael Palimaka
2017-07-15 17:18 Tobias Klausmann
2017-05-21 21:37 Mart Raudsepp
2017-05-15 13:15 Lars Wendler
2017-05-11 19:34 Markus Meier
2017-05-06 17:20 Agostino Sarubbo
2017-05-06 13:26 Agostino Sarubbo
2017-01-02 17:48 Tobias Klausmann
2016-11-10 8:51 Tobias Klausmann
2016-09-06 11:49 Tobias Klausmann
Reply instructions:
You may reply publicly to this message via plain-text email
using any one of the following methods:
* Save the following mbox file, import it into your mail client,
and reply-to-all from there: mbox
Avoid top-posting and favor interleaved quoting:
https://en.wikipedia.org/wiki/Posting_style#Interleaved_style
* Reply using the --to, --cc, and --in-reply-to
switches of git-send-email(1):
git send-email \
--in-reply-to=1528739414.05744748e9d866af03c257b212a58435e834f6f8.klausman@gentoo \
--to=klausman@gentoo.org \
--cc=gentoo-commits@lists.gentoo.org \
--cc=gentoo-dev@lists.gentoo.org \
/path/to/YOUR_REPLY
https://kernel.org/pub/software/scm/git/docs/git-send-email.html
* If your mail client supports setting the In-Reply-To header
via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line
before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox