commit:     5ae1005adadf2775626172f3443ad4ee0a8722e1
Author:     Patrick McLean <patrick.mclean <AT> sony <DOT> com>
AuthorDate: Tue Jun 16 22:54:28 2020 +0000
Commit:     Patrick McLean <chutzpah <AT> gentoo <DOT> org>
CommitDate: Tue Jun 16 22:54:28 2020 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=5ae1005a

dev-python/pylint-2.5.3: Version bump

Copyright: Sony Interactive Entertainment Inc.
Package-Manager: Portage-2.3.101, Repoman-2.3.22
Signed-off-by: Patrick McLean <chutzpah <AT> gentoo.org>

 dev-python/pylint/Manifest                         |  1 +
 .../files/pylint-2.5.3-no-pytest-runner.patch      | 20 +++++++
 dev-python/pylint/files/pylint-2.5.3-tests.patch   | 12 ++++
 dev-python/pylint/pylint-2.5.3.ebuild              | 65 ++++++++++++++++++++++
 4 files changed, 98 insertions(+)

diff --git a/dev-python/pylint/Manifest b/dev-python/pylint/Manifest
index 8d809f2782b..4c40eb2364a 100644
--- a/dev-python/pylint/Manifest
+++ b/dev-python/pylint/Manifest
@@ -1 +1,2 @@
 DIST pylint-2.4.4.tar.gz 646113 BLAKE2B 
d62b66b056e01cc13e90f45ff4a11f94983e0b9b42b9a05e5c7b7385280000d15ead9a282e7eea31a8ee6a24ffe539576a6e9bd40dc4d89093263da99029123b
 SHA512 
835e0687ebc76c530e0042c5a5188b8aedab446531f621627e990cbeb37ab6ecc8de0f8c6ab171abaa63488e049e8d7782958461421f9a4127435f56b6d2ed0b
+DIST pylint-2.5.3.tar.gz 684449 BLAKE2B 
7b494f5334376ff571fd8971851198d037e87c5be83d0123fcb108701489769785164bb077eb10b4851c89b82dadc40c510186eaf03be1621c4d78c79dffbceb
 SHA512 
03fcd893d361b66794f17433e90df108099fee2eccb35507c7f61befb8db846f0242e5ce2b4ee63727c9cc780a376c3b93d5af3186f884a4fdaad68b224ed7d2

diff --git a/dev-python/pylint/files/pylint-2.5.3-no-pytest-runner.patch 
b/dev-python/pylint/files/pylint-2.5.3-no-pytest-runner.patch
new file mode 100644
index 00000000000..f4cc6be360d
--- /dev/null
+++ b/dev-python/pylint/files/pylint-2.5.3-no-pytest-runner.patch
@@ -0,0 +1,20 @@
+diff --git a/setup.py b/setup.py
+index 92d059ff..cbc5b881 100644
+--- a/setup.py
++++ b/setup.py
+@@ -67,7 +67,6 @@ else:
+ 
+ 
+ needs_pytest = {"pytest", "test", "ptr"}.intersection(sys.argv)
+-pytest_runner = ["pytest-runner"] if needs_pytest else []
+ 
+ 
+ def ensure_scripts(linux_scripts):
+@@ -151,7 +150,6 @@ def install(**kwargs):
+         extras_require=extras_require,
+         test_suite="test",
+         python_requires=">=3.5.*",
+-        setup_requires=pytest_runner,
+         tests_require=["pytest"],
+         **kwargs
+     )

diff --git a/dev-python/pylint/files/pylint-2.5.3-tests.patch 
b/dev-python/pylint/files/pylint-2.5.3-tests.patch
new file mode 100644
index 00000000000..72a42e4caae
--- /dev/null
+++ b/dev-python/pylint/files/pylint-2.5.3-tests.patch
@@ -0,0 +1,12 @@
+diff --git a/tests/test_self.py b/tests/test_self.py
+index 6c27fd6c..9fde0214 100644
+--- a/tests/test_self.py
++++ b/tests/test_self.py
+@@ -686,6 +686,7 @@ class TestRunTC:
+         )
+ 
+     @staticmethod
++    @pytest.mark.skip("seems to be failing to import nonexistant module")
+     def test_do_not_import_files_from_local_directory(tmpdir):
+         p_astroid = tmpdir / "astroid.py"
+         p_astroid.write("'Docstring'\nimport completely_unknown\n")

diff --git a/dev-python/pylint/pylint-2.5.3.ebuild 
b/dev-python/pylint/pylint-2.5.3.ebuild
new file mode 100644
index 00000000000..d2d671ed062
--- /dev/null
+++ b/dev-python/pylint/pylint-2.5.3.ebuild
@@ -0,0 +1,65 @@
+# Copyright 1999-2020 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=7
+
+PYTHON_COMPAT=( python3_{6,7,8} )
+PYTHON_REQ_USE="threads(+)"
+DISTUTILS_USE_SETUPTOOLS=rdepend
+# entry_points is added via **kwargs in a dict
+_DISTUTILS_SETUPTOOLS_WARNED=1
+
+inherit distutils-r1 eutils
+
+DESCRIPTION="Python code static checker"
+HOMEPAGE="https://www.logilab.org/project/pylint
+       https://pypi.org/project/pylint/
+       https://github.com/pycqa/pylint";
+SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz"
+
+LICENSE="GPL-2"
+SLOT="0"
+KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~ia64 ~ppc ~ppc64 ~sparc ~x86"
+IUSE="examples test"
+RESTRICT="!test? ( test )"
+
+RDEPEND="
+       >=dev-python/astroid-2.3.3[${PYTHON_USEDEP}]
+       >=dev-python/isort-4.2.5[${PYTHON_USEDEP}]
+       dev-python/mccabe[${PYTHON_USEDEP}]"
+BDEPEND="
+       test? (
+               ${RDEPEND}
+               dev-python/six[${PYTHON_USEDEP}]
+       )"
+
+PATCHES=(
+       "${FILESDIR}/${PN}-2.4.4-sphinx-theme.patch"
+       "${FILESDIR}/${PN}-2.5.3-no-pytest-runner.patch"
+       "${FILESDIR}/${PN}-2.5.3-tests.patch"
+)
+
+distutils_enable_sphinx doc
+distutils_enable_tests pytest
+
+python_prepare_all() {
+       # we don't want to run the benchmarking tests
+       rm -f tests/benchmark/test_baseline_benchmarks.py || die
+
+       distutils-r1_python_prepare_all
+}
+
+python_install_all() {
+       doman man/{pylint,pyreverse}.1
+       if use examples ; then
+               docinto examples
+               dodoc -r examples/.
+       fi
+
+       distutils-r1_python_install_all
+}
+
+pkg_postinst() {
+       # Optional dependency on "tk" USE flag would break support for Jython.
+       optfeature "pylint-gui script requires dev-lang/python with \"tk\" USE 
flag enabled." 'dev-lang/python[tk]'
+}

Reply via email to