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/pylint/
Date: Sat, 08 Jan 2022 16:56:38
Message-Id: 1641660919.480a245aceb7eae9917251fad112744c1a641166.mgorny@gentoo
1 commit: 480a245aceb7eae9917251fad112744c1a641166
2 Author: Michał Górny <mgorny <AT> gentoo <DOT> org>
3 AuthorDate: Sat Jan 8 16:55:19 2022 +0000
4 Commit: Michał Górny <mgorny <AT> gentoo <DOT> org>
5 CommitDate: Sat Jan 8 16:55:19 2022 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=480a245a
7
8 dev-python/pylint: Remove old
9
10 Signed-off-by: Michał Górny <mgorny <AT> gentoo.org>
11
12 dev-python/pylint/Manifest | 1 -
13 dev-python/pylint/pylint-2.11.1.ebuild | 58 ----------------------------------
14 2 files changed, 59 deletions(-)
15
16 diff --git a/dev-python/pylint/Manifest b/dev-python/pylint/Manifest
17 index c03bb75cfcbe..ee99635a75bf 100644
18 --- a/dev-python/pylint/Manifest
19 +++ b/dev-python/pylint/Manifest
20 @@ -1,2 +1 @@
21 -DIST pylint-2.11.1.gh.tar.gz 967223 BLAKE2B 435bb4589fa6dbfadfa234f8cb968a1d5c39efaf9b37fd20dfadc6feb1e997b34124386dab777b1aa1657bd9a36055d535e231181c71834517528cbbc04c698f SHA512 fe283b6eb8090414ea99809158b4e7f9fe85187ef6488ec37c5f34430793b0b4ff8afd9c97452fe0bb88efb9be001c0fd9f9a09a23081cb79084ae409b277f34
22 DIST pylint-2.12.2.gh.tar.gz 1032702 BLAKE2B de7dce04159b332baa5c23f4034ee249e49f9239c5c9190213a51a84a47ac2129f8a2265e1ad9c01ab448ec58f4f36653c6de5b0be6bfdf6aa286c8887313759 SHA512 0d2b9b785371af0a1c809271153abbab58f50455b34f12370461ded2c4f3d62656e4c0391adff48e179b95da945a2f44e762863e2b7d63808976bf5f684e20d2
23
24 diff --git a/dev-python/pylint/pylint-2.11.1.ebuild b/dev-python/pylint/pylint-2.11.1.ebuild
25 deleted file mode 100644
26 index 5d8bf6a9f5e8..000000000000
27 --- a/dev-python/pylint/pylint-2.11.1.ebuild
28 +++ /dev/null
29 @@ -1,58 +0,0 @@
30 -# Copyright 1999-2021 Gentoo Authors
31 -# Distributed under the terms of the GNU General Public License v2
32 -
33 -EAPI=8
34 -
35 -PYTHON_COMPAT=( python3_{8..10} )
36 -PYTHON_REQ_USE="threads(+)"
37 -
38 -inherit distutils-r1
39 -
40 -DESCRIPTION="Python code static checker"
41 -HOMEPAGE="https://www.logilab.org/project/pylint
42 - https://pypi.org/project/pylint/
43 - https://github.com/pycqa/pylint/"
44 -SRC_URI="
45 - https://github.com/pycqa/pylint/archive/v${PV}.tar.gz -> ${P}.gh.tar.gz"
46 -
47 -LICENSE="GPL-2"
48 -SLOT="0"
49 -KEYWORDS="~alpha amd64 arm arm64 hppa ~ia64 ~m68k ppc ppc64 ~riscv ~s390 sparc x86"
50 -IUSE="examples"
51 -
52 -RDEPEND="
53 - <dev-python/astroid-2.9[${PYTHON_USEDEP}]
54 - >=dev-python/astroid-2.8.0[${PYTHON_USEDEP}]
55 - >=dev-python/isort-4.2.5[${PYTHON_USEDEP}]
56 - <dev-python/isort-6[${PYTHON_USEDEP}]
57 - >=dev-python/mccabe-0.6[${PYTHON_USEDEP}]
58 - <dev-python/mccabe-0.7[${PYTHON_USEDEP}]
59 - >=dev-python/platformdirs-2.2.0[${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 EPYTEST_DESELECT=(
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
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 -}