Gentoo Archives: gentoo-commits

From: Virgil Dupras <vdupras@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: dev-python/pylint/
Date: Fri, 01 Feb 2019 02:13:22
Message-Id: 1548983412.65708cfc011f69d5fc694a6785bb2b3700371801.vdupras@gentoo
1 commit: 65708cfc011f69d5fc694a6785bb2b3700371801
2 Author: Jonas Jelten <jj <AT> sft <DOT> mx>
3 AuthorDate: Sat Jan 26 23:08:52 2019 +0000
4 Commit: Virgil Dupras <vdupras <AT> gentoo <DOT> org>
5 CommitDate: Fri Feb 1 01:10:12 2019 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=65708cfc
7
8 dev-python/pylint: bump to version 2.2.2
9
10 Closes: https://bugs.gentoo.org/662406
11 Signed-off-by: Jonas Jelten <jj <AT> sft.mx>
12 Signed-off-by: Virgil Dupras <vdupras <AT> gentoo.org>
13
14 dev-python/pylint/Manifest | 1 +
15 dev-python/pylint/pylint-2.2.2.ebuild | 56 +++++++++++++++++++++++++++++++++++
16 2 files changed, 57 insertions(+)
17
18 diff --git a/dev-python/pylint/Manifest b/dev-python/pylint/Manifest
19 index 349ec023c97..90c98c2edd3 100644
20 --- a/dev-python/pylint/Manifest
21 +++ b/dev-python/pylint/Manifest
22 @@ -3,3 +3,4 @@ DIST pylint-1.7.2.tar.gz 488628 BLAKE2B 6f2902bdd18939f251515d652d2e9df43162c1b0
23 DIST pylint-1.7.5.tar.gz 486892 BLAKE2B 0a415045e16aeb6e8543af003cff3061756b01bcbeb9f62de7cf1a63356ff01c3a2fd079e51ee0f8b1b797dd3de29c14d9928c0b4d0214fda82fbc2dc12010c6 SHA512 9f28cc4f88b26d2299ab3ea015935fba8c96f700c7898ad8fbdecfa0902f10a4ca54ad346b18452f8a589f8b63494bc12487dab36d168f336012b259bfa6f3f8
24 DIST pylint-1.8.2.tar.gz 510319 BLAKE2B fd2d28d48cc5b7690428baf3e4a4ba56a6c59dd3bae6fac12046f2c087f1f6d033f4c318f2977d3ee3cc6a463a089a02364f0e38859c2eba5a39dbe6350e19ec SHA512 3cec971314bcc9ad7aa32d6641797adb0adc440414cfe982a10777ffeecfc64588f9c1d8c6d8074131b1389fe5ecb2e6aea5c24ba3047f917a60d12808b52d8c
25 DIST pylint-1.8.4.tar.gz 512582 BLAKE2B 623e224ec71756cc2528346ac62b8e58ac4d5ef55d9e31e667d5389aa5b2dad712f60c7e90df5c831f57bf28e0ccbd00ddece4ade46410c28b67adb1a041a85f SHA512 07e55ed3f09326e1973215046e3b172f6065a7ed0ae657cba7a6825a26bb103bdbf8b83126bafd99f332fe0eec3547bcd6e618d6e9f612ddcf9c504bb850dcd9
26 +DIST pylint-2.2.2.tar.gz 568313 BLAKE2B a6a3a48a96820bf9412dbd5f3e643d95fe7c9ead9752920d9979debaf5da53a3b5076c39975dd37420c86b71fd2ed2f513c42663fbaf1e6103a0958271773c58 SHA512 29a9bf39413479cb2996b1a2e0d3aaa1845faf3038b17c30948554c359fe8cc858e9bfc0488ed0af204daea22e0ab36d765c447eae66ac7ac6d60d66d9a33fef
27
28 diff --git a/dev-python/pylint/pylint-2.2.2.ebuild b/dev-python/pylint/pylint-2.2.2.ebuild
29 new file mode 100644
30 index 00000000000..5a14d9cdd7f
31 --- /dev/null
32 +++ b/dev-python/pylint/pylint-2.2.2.ebuild
33 @@ -0,0 +1,56 @@
34 +# Copyright 1999-2019 Gentoo Foundation
35 +# Distributed under the terms of the GNU General Public License v2
36 +
37 +EAPI=7
38 +
39 +PYTHON_COMPAT=( python3_{5,6,7} )
40 +PYTHON_REQ_USE="threads(+)"
41 +
42 +inherit distutils-r1 eutils
43 +
44 +DESCRIPTION="Python code static checker"
45 +HOMEPAGE="https://www.logilab.org/project/pylint
46 + https://pypi.org/project/pylint/
47 + https://github.com/pycqa/pylint"
48 +SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz"
49 +
50 +LICENSE="GPL-2"
51 +SLOT="0"
52 +KEYWORDS="~amd64 ~x86"
53 +IUSE="doc examples test"
54 +
55 +RDEPEND="
56 + >=dev-python/astroid-2.0.0[${PYTHON_USEDEP}]
57 + >=dev-python/isort-4.2.5[${PYTHON_USEDEP}]
58 + dev-python/mccabe[${PYTHON_USEDEP}]
59 + virtual/python-singledispatch[${PYTHON_USEDEP}]"
60 +DEPEND="dev-python/setuptools[${PYTHON_USEDEP}]
61 + doc? ( dev-python/sphinx[${PYTHON_USEDEP}] )
62 + test? ( ${RDEPEND}
63 + dev-python/pytest[${PYTHON_USEDEP}]
64 + dev-python/six[${PYTHON_USEDEP}]
65 + )"
66 +
67 +python_compile_all() {
68 + # selection of straight html triggers a trivial annoying bug, we skirt it
69 + use doc && PYTHONPATH="${S}" emake -e -C doc singlehtml
70 +}
71 +
72 +python_test() {
73 + ${EPYTHON} -m pytest -v pylint/test/ || die "tests failed"
74 +}
75 +
76 +python_install_all() {
77 + doman man/{pylint,pyreverse}.1
78 + if use examples ; then
79 + docinto examples
80 + dodoc -r examples/.
81 + fi
82 + use doc && local HTML_DOCS=( doc/_build/singlehtml/. )
83 + distutils-r1_python_install_all
84 +}
85 +
86 +pkg_postinst() {
87 + # Optional dependency on "tk" USE flag would break support for Jython.
88 + optfeature "pylint-gui script requires dev-lang/python with \"tk\" USE flag enabled." 'dev-lang/python[tk]'
89 +}