Gentoo Archives: gentoo-commits

From: Sam James <sam@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: dev-python/pylint/
Date: Sun, 26 Sep 2021 04:14:08
Message-Id: 1632627618.81063f1f84410cb7bb4a1228cb7f5360ab041097.sam@gentoo
1 commit: 81063f1f84410cb7bb4a1228cb7f5360ab041097
2 Author: Sam James <sam <AT> gentoo <DOT> org>
3 AuthorDate: Sat Sep 25 23:47:53 2021 +0000
4 Commit: Sam James <sam <AT> gentoo <DOT> org>
5 CommitDate: Sun Sep 26 03:40:18 2021 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=81063f1f
7
8 dev-python/pylint: drop 2.9.6
9
10 Bug: https://bugs.gentoo.org/814854
11 Signed-off-by: Sam James <sam <AT> gentoo.org>
12
13 dev-python/pylint/Manifest | 1 -
14 dev-python/pylint/pylint-2.9.6.ebuild | 57 -----------------------------------
15 2 files changed, 58 deletions(-)
16
17 diff --git a/dev-python/pylint/Manifest b/dev-python/pylint/Manifest
18 index d3c387d2fb8..458d429e51a 100644
19 --- a/dev-python/pylint/Manifest
20 +++ b/dev-python/pylint/Manifest
21 @@ -1,2 +1 @@
22 DIST pylint-2.10.2.gh.tar.gz 813391 BLAKE2B 109f8817e32ddf8d93c9120518e77a1d2f7e61cd1a6362eb1cf9e6d242db72fa1a9271588a3abb28efca54bcc449dce623ae5d5fd63153ec2bc367e008aab465 SHA512 5d694587956c4f11eb4afaec26cefb66ccbe14dc2aacf378a0362326506d80eb2633e0d351c0a20715a3359a9bc438092d77b2e46f7f787210c7ab0555f2722f
23 -DIST pylint-2.9.6.gh.tar.gz 779390 BLAKE2B b1d8794e1e7ccdde87919eb943f83287c0a7b85b67f3722cbbe68887f2c61ab30b354548e25b70c661234647e35f79beb6aaad5f6be6bfde8c2475cf03676922 SHA512 a23ff089853398df2e4232767ca87c21e4ab4fc6805de80db796c78c56e0da1ade9b0586f5c14a98524bf607e0d240c354cf63287eec7dfdce263188eb19ddce
24
25 diff --git a/dev-python/pylint/pylint-2.9.6.ebuild b/dev-python/pylint/pylint-2.9.6.ebuild
26 deleted file mode 100644
27 index ccd48c7f91f..00000000000
28 --- a/dev-python/pylint/pylint-2.9.6.ebuild
29 +++ /dev/null
30 @@ -1,57 +0,0 @@
31 -# Copyright 1999-2021 Gentoo Authors
32 -# Distributed under the terms of the GNU General Public License v2
33 -
34 -EAPI=8
35 -
36 -PYTHON_COMPAT=( python3_{8..9} )
37 -PYTHON_REQ_USE="threads(+)"
38 -
39 -inherit distutils-r1
40 -
41 -DESCRIPTION="Python code static checker"
42 -HOMEPAGE="https://www.logilab.org/project/pylint
43 - https://pypi.org/project/pylint/
44 - https://github.com/pycqa/pylint/"
45 -SRC_URI="
46 - https://github.com/pycqa/pylint/archive/v${PV}.tar.gz -> ${P}.gh.tar.gz"
47 -
48 -LICENSE="GPL-2"
49 -SLOT="0"
50 -KEYWORDS="~alpha amd64 arm arm64 ~ia64 ppc ppc64 ~riscv sparc x86"
51 -IUSE="examples"
52 -
53 -RDEPEND="
54 - <dev-python/astroid-2.7[${PYTHON_USEDEP}]
55 - >=dev-python/astroid-2.6.5[${PYTHON_USEDEP}]
56 - >=dev-python/isort-4.2.5[${PYTHON_USEDEP}]
57 - <dev-python/isort-6[${PYTHON_USEDEP}]
58 - >=dev-python/mccabe-0.6[${PYTHON_USEDEP}]
59 - <dev-python/mccabe-0.7[${PYTHON_USEDEP}]
60 - >=dev-python/toml-0.7.1[${PYTHON_USEDEP}]
61 -"
62 -
63 -PATCHES=(
64 - "${FILESDIR}/${PN}-2.4.4-sphinx-theme.patch"
65 -)
66 -
67 -distutils_enable_sphinx doc --no-autodoc
68 -distutils_enable_tests pytest
69 -
70 -python_test() {
71 - local skipped_tests=(
72 - # No need to run the benchmarks
73 - tests/benchmark/test_baseline_benchmarks.py
74 - )
75 - # Specify the test directory explicitly to avoid import file mismatches
76 - epytest tests ${skipped_tests[@]/#/--deselect }
77 -}
78 -
79 -python_install_all() {
80 - if use examples ; then
81 - docompress -x "/usr/share/doc/${PF}/examples"
82 - docinto examples
83 - dodoc -r examples/.
84 - fi
85 -
86 - distutils-r1_python_install_all
87 -}