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: Mon, 01 Mar 2021 08:25:08
Message-Id: 1614586409.00dc6270720bf1a3b150bab66b61b42e3cb8f337.mgorny@gentoo
1 commit: 00dc6270720bf1a3b150bab66b61b42e3cb8f337
2 Author: Michał Górny <mgorny <AT> gentoo <DOT> org>
3 AuthorDate: Mon Mar 1 07:51:41 2021 +0000
4 Commit: Michał Górny <mgorny <AT> gentoo <DOT> org>
5 CommitDate: Mon Mar 1 08:13:29 2021 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=00dc6270
7
8 dev-python/pylint: Bump to 2.7.2
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.7.2.ebuild | 68 +++++++++++++++++++++++++++++++++++
14 2 files changed, 69 insertions(+)
15
16 diff --git a/dev-python/pylint/Manifest b/dev-python/pylint/Manifest
17 index 34586e8868a..1bf5b1472dc 100644
18 --- a/dev-python/pylint/Manifest
19 +++ b/dev-python/pylint/Manifest
20 @@ -2,3 +2,4 @@ DIST pylint-2.6.0.tar.gz 680289 BLAKE2B f7d4159478f667a3234beefd148857f26c8f7ea3
21 DIST pylint-2.6.1.tar.gz 694232 BLAKE2B c169939a49a9a8f3225e120cf56df12fabd8d1940504231d0e1c3783dd8b87beb24e7095e15b332189043d5790b69bd2a41b0baf56cffccb4ef5d7cfe2be9cf8 SHA512 6a6bda57ed22df8378aea3de3fe3b97deb7c0742abeb08463d3d2e0f0cbf6bd2166861456b3fa7cd2d7cf148b052fc4913479c3f632b8e92ebf8d26189a122b1
22 DIST pylint-2.6.2.tar.gz 680364 BLAKE2B 59bd18d5458f86a7279a7fc895f1564fc575c27e7ad7b4a668456d6005cc2a4d920e2221c2ec3f447c1c63376e1b35f1e1c5177c355f52872d3c556aa63ae462 SHA512 75e88aea23e4e68714451d22b0a6a2106a4821c05cdd7d077e12ea7f6198959ebdace6824b1e2fb42a632051e049a2c84eb93990a7b6af23c7fee7e2f56bf6ec
23 DIST pylint-2.7.1.tar.gz 708916 BLAKE2B 606637ff25daccba741ae5bcdecb6a2be50bc17393009193a29312b4a218622d23287a0f0c5a81e79e77cc54dfe529483ad01fa39445103f240addaa3ad58bf7 SHA512 eebf1d3da5ca072cb912ecffebf183c79f2f8b2c2b14044751aad202d75d06d1c06abb561d4581990b92fe54c06b570a1de39b792b0d729cf300c01c82c4e3c0
24 +DIST pylint-2.7.2.tar.gz 709177 BLAKE2B 5e4daeb19b6b18d570f4d78b01cc5023d5d245840160fdbddb194ab7036118742ffe3075ee27c37bd7a700d11d9006dc9abaaba9cf9596ae1b63941f139da7ac SHA512 800b210fbe5665db390d5c885d103856dc474b4e43d2f752bdcfcea36121132c26eecdcb67620c4a90456823f11a33568de4d37d59eea692dcd1751d931420f7
25
26 diff --git a/dev-python/pylint/pylint-2.7.2.ebuild b/dev-python/pylint/pylint-2.7.2.ebuild
27 new file mode 100644
28 index 00000000000..e6b283ca3cf
29 --- /dev/null
30 +++ b/dev-python/pylint/pylint-2.7.2.ebuild
31 @@ -0,0 +1,68 @@
32 +# Copyright 1999-2021 Gentoo Authors
33 +# Distributed under the terms of the GNU General Public License v2
34 +
35 +EAPI=7
36 +
37 +PYTHON_COMPAT=( python3_{7..9} )
38 +PYTHON_REQ_USE="threads(+)"
39 +DISTUTILS_USE_SETUPTOOLS=rdepend
40 +
41 +inherit distutils-r1
42 +
43 +DESCRIPTION="Python code static checker"
44 +HOMEPAGE="https://www.logilab.org/project/pylint
45 + https://pypi.org/project/pylint/
46 + https://github.com/pycqa/pylint"
47 +SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz"
48 +
49 +LICENSE="GPL-2"
50 +SLOT="0"
51 +KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~ia64 ~ppc ~ppc64 ~sparc ~x86"
52 +IUSE="examples"
53 +
54 +# Mirror requirements from pylint/__pkginfo__.py
55 +RDEPEND="
56 + <dev-python/astroid-2.6[${PYTHON_USEDEP}]
57 + >=dev-python/astroid-2.5.1[${PYTHON_USEDEP}]
58 + >=dev-python/isort-4.2.5[${PYTHON_USEDEP}]
59 + <dev-python/isort-6[${PYTHON_USEDEP}]
60 + >=dev-python/mccabe-0.6[${PYTHON_USEDEP}]
61 + <dev-python/mccabe-0.7[${PYTHON_USEDEP}]
62 + >=dev-python/toml-0.7.1[${PYTHON_USEDEP}]
63 +"
64 +BDEPEND="
65 + test? (
66 + dev-python/six[${PYTHON_USEDEP}]
67 + )
68 +"
69 +
70 +PATCHES=(
71 + "${FILESDIR}/${PN}-2.4.4-sphinx-theme.patch"
72 +)
73 +
74 +distutils_enable_sphinx doc --no-autodoc
75 +distutils_enable_tests pytest
76 +
77 +python_test() {
78 + local skipped_tests=(
79 + # Fails when PYTHONPATH ends with a colon
80 + # https://github.com/PyCQA/pylint/issues/3636
81 + tests/test_self.py::TestRunTC::test_do_not_import_files_from_local_directory
82 + # No need to run the benchmarks
83 + tests/benchmark/test_baseline_benchmarks.py
84 + )
85 + # Specify the test directory explicitly to avoid import file mismatches
86 + pytest -vv tests ${skipped_tests[@]/#/--deselect } \
87 + || die "Tests failed with ${EPYTHON}"
88 +}
89 +
90 +python_install_all() {
91 + doman man/{pylint,pyreverse}.1
92 + if use examples ; then
93 + docompress -x "/usr/share/doc/${PF}/examples"
94 + docinto examples
95 + dodoc -r examples/.
96 + fi
97 +
98 + distutils-r1_python_install_all
99 +}