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: Thu, 07 Apr 2022 04:27:56
Message-Id: 1649305666.fd528f32558b029c9628aeafb4d31b9cc61584f6.mgorny@gentoo
1 commit: fd528f32558b029c9628aeafb4d31b9cc61584f6
2 Author: Michał Górny <mgorny <AT> gentoo <DOT> org>
3 AuthorDate: Thu Apr 7 04:09:49 2022 +0000
4 Commit: Michał Górny <mgorny <AT> gentoo <DOT> org>
5 CommitDate: Thu Apr 7 04:27:46 2022 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=fd528f32
7
8 dev-python/pylint: Bump to 2.13.5
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.13.5.ebuild | 81 ++++++++++++++++++++++++++++++++++
14 2 files changed, 82 insertions(+)
15
16 diff --git a/dev-python/pylint/Manifest b/dev-python/pylint/Manifest
17 index e2615338cac4..a48829c2ade7 100644
18 --- a/dev-python/pylint/Manifest
19 +++ b/dev-python/pylint/Manifest
20 @@ -4,3 +4,4 @@ DIST pylint-2.13.1.gh.tar.gz 1116054 BLAKE2B 633636f97e284a8a93c598261b90019ea35
21 DIST pylint-2.13.2.gh.tar.gz 1116482 BLAKE2B da35c9f39781bbd796e2ec055b41c44211588d7da360fd27f81eef57a3f5c65e27931ca927b41692627c9914f5c28e3262c0f34a45c38b20aa1b83710ab1d1f1 SHA512 15274658cf3067ffa6635a94f2c75d8854b3843be45ea5dc5896bc12583b156428858baeed19eed4bfab35489326d70d0cce1375354d9ec97d00cfd895fc4a47
22 DIST pylint-2.13.3.gh.tar.gz 1116747 BLAKE2B 9ab6ff4746f78472de9c248754d102e55e8cb60d3ead8c5079cfe851b2b7c8e16afc9b0be02041cf24e789784200b90751ad0bcf172eb6d4edd88463863d18ac SHA512 0bda6d89219ad6f7f64f1361f95b85a34e3bc70f9f18f71eaa3d69deb47ab6fc056000c13a11c8c5644f0a9789eac2a5c262ddcf96302aeebfa16aa2e3b3086c
23 DIST pylint-2.13.4.gh.tar.gz 1117488 BLAKE2B a660c15c41b529d932a21d438c7cf0f3b97683d6b1452f4383193f97dd22ba6e216a7dc8c3677cb1cb0ab5b76ddb936afa2d87df38d41950e2249bd8867bf44d SHA512 2c0c60908f89bf7a2552f65e0b4957ee6223f5429a6c2ec997aaf75572b11e4247e159da744937dbc7752ebd5eab0a0c873d129983de09ea0954f35f47a1f524
24 +DIST pylint-2.13.5.gh.tar.gz 1118551 BLAKE2B 70ee4254aa140aba16adfe67aeb896d9c455843dfa945d335b5ba48e85c9d2d8f057223bc74bd4c0c0bfa2d343a9f78e783705b885caaee6895fcddf7ce23ccb SHA512 e399239fbea58260b17f226dddb63f1e6a2f12cdd601a4e73913a169d23fe2b6085e776bf8144e2c5a555dfdc1b28a5818a4103969d504b638b6b41ee296d182
25
26 diff --git a/dev-python/pylint/pylint-2.13.5.ebuild b/dev-python/pylint/pylint-2.13.5.ebuild
27 new file mode 100644
28 index 000000000000..168eae7e434b
29 --- /dev/null
30 +++ b/dev-python/pylint/pylint-2.13.5.ebuild
31 @@ -0,0 +1,81 @@
32 +# Copyright 1999-2022 Gentoo Authors
33 +# Distributed under the terms of the GNU General Public License v2
34 +
35 +EAPI=8
36 +
37 +DISTUTILS_USE_PEP517=setuptools
38 +PYTHON_COMPAT=( python3_{8..10} )
39 +PYTHON_REQ_USE="threads(+)"
40 +
41 +inherit distutils-r1
42 +
43 +DESCRIPTION="Python code static checker"
44 +HOMEPAGE="
45 + https://pypi.org/project/pylint/
46 + https://github.com/PyCQA/pylint/
47 +"
48 +SRC_URI="
49 + https://github.com/pycqa/pylint/archive/v${PV}.tar.gz
50 + -> ${P}.gh.tar.gz
51 +"
52 +
53 +LICENSE="GPL-2"
54 +SLOT="0"
55 +KEYWORDS="~amd64 ~arm ~arm64 ~m68k ~ppc ~riscv ~x86"
56 +IUSE="examples"
57 +
58 +# Make sure to check https://github.com/PyCQA/pylint/blob/main/setup.cfg#L43 on bumps
59 +# Adjust dep bounds!
60 +RDEPEND="
61 + <dev-python/astroid-2.12[${PYTHON_USEDEP}]
62 + >=dev-python/astroid-2.11.0[${PYTHON_USEDEP}]
63 + >=dev-python/dill-0.2[${PYTHON_USEDEP}]
64 + >=dev-python/isort-4.2.5[${PYTHON_USEDEP}]
65 + <dev-python/isort-6[${PYTHON_USEDEP}]
66 + >=dev-python/mccabe-0.6[${PYTHON_USEDEP}]
67 + <dev-python/mccabe-0.8[${PYTHON_USEDEP}]
68 + >=dev-python/platformdirs-2.2.0[${PYTHON_USEDEP}]
69 + >=dev-python/tomli-1.1.0[${PYTHON_USEDEP}]
70 + $(python_gen_cond_dep '
71 + dev-python/typing-extensions[${PYTHON_USEDEP}]
72 + ' 3.8 3.9)
73 +"
74 +BDEPEND="
75 + test? (
76 + >=dev-python/GitPython-3[${PYTHON_USEDEP}]
77 + dev-python/pytest-timeout[${PYTHON_USEDEP}]
78 + dev-python/typing-extensions[${PYTHON_USEDEP}]
79 + )
80 +"
81 +
82 +PATCHES=(
83 + "${FILESDIR}/${PN}-2.4.4-sphinx-theme.patch"
84 +)
85 +
86 +distutils_enable_sphinx doc --no-autodoc
87 +distutils_enable_tests pytest
88 +
89 +python_test() {
90 + local EPYTEST_DESELECT=(
91 + # No need to run the benchmarks
92 + tests/benchmark/test_baseline_benchmarks.py
93 +
94 + # TODO
95 + 'tests/test_functional.py::test_functional[forgotten_debug_statement_py37]'
96 + 'tests/test_functional.py::test_functional[dataclass_with_field]'
97 + tests/checkers/unittest_typecheck.py::TestTypeChecker::test_nomember_on_c_extension_error_msg
98 + tests/checkers/unittest_typecheck.py::TestTypeChecker::test_nomember_on_c_extension_info_msg
99 + )
100 + # Specify the test directory explicitly to avoid import file mismatches
101 + epytest tests
102 +}
103 +
104 +python_install_all() {
105 + if use examples ; then
106 + docompress -x "/usr/share/doc/${PF}/examples"
107 + docinto examples
108 + dodoc -r examples/.
109 + fi
110 +
111 + distutils-r1_python_install_all
112 +}