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/pydocstyle/
Date: Sat, 28 Mar 2020 17:22:04
Message-Id: 1585415861.c8c3ef2eaf7f8b91cc1fee10337047f5e6cd0eec.mgorny@gentoo
1 commit: c8c3ef2eaf7f8b91cc1fee10337047f5e6cd0eec
2 Author: Michał Górny <mgorny <AT> gentoo <DOT> org>
3 AuthorDate: Sat Mar 28 17:17:41 2020 +0000
4 Commit: Michał Górny <mgorny <AT> gentoo <DOT> org>
5 CommitDate: Sat Mar 28 17:17:41 2020 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=c8c3ef2e
7
8 dev-python/pydocstyle: Remove redundant versions
9
10 Signed-off-by: Michał Górny <mgorny <AT> gentoo.org>
11
12 dev-python/pydocstyle/Manifest | 1 -
13 dev-python/pydocstyle/pydocstyle-2.1.1.ebuild | 34 ---------------------------
14 2 files changed, 35 deletions(-)
15
16 diff --git a/dev-python/pydocstyle/Manifest b/dev-python/pydocstyle/Manifest
17 index e0085d8746a..efa1ceaa89d 100644
18 --- a/dev-python/pydocstyle/Manifest
19 +++ b/dev-python/pydocstyle/Manifest
20 @@ -1,2 +1 @@
21 -DIST pydocstyle-2.1.1.tar.gz 55760 BLAKE2B e470b006b5db04c4bed5c3145b14b949980c71d1dd91dbe34d49599063aaf1cb1d0842dfb992e5d471436446455bde2d309ee573826c039540fa99adba3f828b SHA512 f23939e0350094c67565613bab4ddf285dda5a7379e6ac2493953d6e60ab75588143fd374715765d2aa0728e7117d02e91312dbbe5a9cad28aa8e8e7f68e3bc4
22 DIST pydocstyle-5.0.2.tar.gz 68063 BLAKE2B 6d7bf04e97c853e50d953342d332847d0e80b080d5ab044f9d444536ed0352ad44402a1af0c3a6f552ec9f3bb3a372a84af2a5bbdaee58bb18dab585cad5dddb SHA512 5ac2e017ae95ff5c7759d6a2cb9ac990f94f668f5fd940792d927cc62628cd036afcf39ab5db6a11100dcca32af344b47f4a7319dd3a47c36367844d0c06d34a
23
24 diff --git a/dev-python/pydocstyle/pydocstyle-2.1.1.ebuild b/dev-python/pydocstyle/pydocstyle-2.1.1.ebuild
25 deleted file mode 100644
26 index 6f1106d04f6..00000000000
27 --- a/dev-python/pydocstyle/pydocstyle-2.1.1.ebuild
28 +++ /dev/null
29 @@ -1,34 +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=( python{3_6,3_7} )
36 -
37 -inherit distutils-r1
38 -
39 -DESCRIPTION="Python docstring style checker"
40 -HOMEPAGE="https://pypi.python.org/pypi/pep257"
41 -SRC_URI="https://github.com/PyCQA/${PN}/archive/${PV}.tar.gz -> ${P}.tar.gz"
42 -
43 -LICENSE="MIT"
44 -SLOT="0"
45 -KEYWORDS="amd64 x86"
46 -IUSE="test"
47 -RESTRICT="!test? ( test )"
48 -
49 -RDEPEND=""
50 -DEPEND="
51 - dev-python/setuptools[${PYTHON_USEDEP}]
52 - test? (
53 - dev-python/pytest[${PYTHON_USEDEP}]
54 - dev-python/mock[${PYTHON_USEDEP}]
55 - )"
56 -
57 -python_install_all() {
58 - distutils-r1_python_install_all
59 -}
60 -
61 -python_test() {
62 - esetup.py test
63 -}