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: Thu, 24 Jun 2021 08:20:50
Message-Id: 1624522825.20aac4d58c9ebae81b771e13f05f3591048007ec.mgorny@gentoo
1 commit: 20aac4d58c9ebae81b771e13f05f3591048007ec
2 Author: Michał Górny <mgorny <AT> gentoo <DOT> org>
3 AuthorDate: Thu Jun 24 08:01:45 2021 +0000
4 Commit: Michał Górny <mgorny <AT> gentoo <DOT> org>
5 CommitDate: Thu Jun 24 08:20:25 2021 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=20aac4d5
7
8 dev-python/pydocstyle: Remove old
9
10 Signed-off-by: Michał Górny <mgorny <AT> gentoo.org>
11
12 dev-python/pydocstyle/Manifest | 1 -
13 dev-python/pydocstyle/pydocstyle-6.0.0.ebuild | 30 ---------------------------
14 2 files changed, 31 deletions(-)
15
16 diff --git a/dev-python/pydocstyle/Manifest b/dev-python/pydocstyle/Manifest
17 index 4192487cbf2..70448015989 100644
18 --- a/dev-python/pydocstyle/Manifest
19 +++ b/dev-python/pydocstyle/Manifest
20 @@ -1,2 +1 @@
21 -DIST pydocstyle-6.0.0.tar.gz 72143 BLAKE2B 1036a5eab38a38bda0f98371f7e4094248cf5057a9afd8743a478f153a5f06feab6b3e7d6be031615b5e88c388786f59a0619f774f492e40a722f39973051d5b SHA512 609a10307aa24513f476ef639771fc095fe7a65ffd8d530fad02886369c62969c69a5134fd0ec79a1e07d1b6cb8f920c3478db546c26aefb0e45771777c02a0b
22 DIST pydocstyle-6.1.1.tar.gz 73982 BLAKE2B 6a896221fdcd257f0475472e1cf87ef892d8292a4c0faf661595adb17e2d18f4a8277cda498197309d34597c448203856c272256277a7e35fba20e2e5ba47f2b SHA512 ce4932a6601c80d05a46600f5af7df54798025a5f3dc41ab8cf1bc0d63e7f78b70cccb17dc99ddab25eda9abd639f91468fca1b1ceb4539708350212e481a156
23
24 diff --git a/dev-python/pydocstyle/pydocstyle-6.0.0.ebuild b/dev-python/pydocstyle/pydocstyle-6.0.0.ebuild
25 deleted file mode 100644
26 index e434a8ff0cf..00000000000
27 --- a/dev-python/pydocstyle/pydocstyle-6.0.0.ebuild
28 +++ /dev/null
29 @@ -1,30 +0,0 @@
30 -# Copyright 1999-2021 Gentoo Authors
31 -# Distributed under the terms of the GNU General Public License v2
32 -
33 -EAPI=7
34 -
35 -PYTHON_COMPAT=( pypy3 python3_{7..9} )
36 -DISTUTILS_USE_SETUPTOOLS=rdepend
37 -
38 -inherit distutils-r1
39 -
40 -DESCRIPTION="Python docstring style checker"
41 -HOMEPAGE="https://github.com/PyCQA/pydocstyle/"
42 -SRC_URI="https://github.com/PyCQA/${PN}/archive/${PV}.tar.gz -> ${P}.tar.gz"
43 -
44 -LICENSE="MIT"
45 -SLOT="0"
46 -KEYWORDS="~alpha amd64 arm arm64 ~ia64 ppc ppc64 sparc x86 ~x64-macos"
47 -
48 -RDEPEND="dev-python/snowballstemmer[${PYTHON_USEDEP}]"
49 -
50 -distutils_enable_tests --install pytest
51 -# Requires network to lookup github issues
52 -#distutils_enable_sphinx docs dev-python/sphinx_rtd_theme dev-python/sphinxcontrib-issuetracker
53 -
54 -src_prepare() {
55 - # no, seriously, you don't need to install it yourself
56 - sed -i -e '/pip/d' src/tests/test_integration.py || die
57 -
58 - distutils-r1_src_prepare
59 -}