Gentoo Archives: gentoo-commits

From: Andrew Ammerlaan <andrewammerlaan@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: dev-python/spyder/
Date: Mon, 27 Sep 2021 19:28:19
Message-Id: 1632770892.1f05d0d6c16b6dfb4c59af074c9a862624598597.andrewammerlaan@gentoo
1 commit: 1f05d0d6c16b6dfb4c59af074c9a862624598597
2 Author: Andrew Ammerlaan <andrewammerlaan <AT> gentoo <DOT> org>
3 AuthorDate: Mon Sep 27 19:27:04 2021 +0000
4 Commit: Andrew Ammerlaan <andrewammerlaan <AT> gentoo <DOT> org>
5 CommitDate: Mon Sep 27 19:28:12 2021 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=1f05d0d6
7
8 dev-python/spyder: sed out indirect dependency on pylint
9
10 The incompatibility with pylint>2.10 is in python-lsp
11 and not in spyder
12
13 Closes: https://bugs.gentoo.org/815160
14 Package-Manager: Portage-3.0.23, Repoman-3.0.3
15 Signed-off-by: Andrew Ammerlaan <andrewammerlaan <AT> gentoo.org>
16
17 dev-python/spyder/{spyder-5.1.5.ebuild => spyder-5.1.5-r1.ebuild} | 2 ++
18 1 file changed, 2 insertions(+)
19
20 diff --git a/dev-python/spyder/spyder-5.1.5.ebuild b/dev-python/spyder/spyder-5.1.5-r1.ebuild
21 similarity index 99%
22 rename from dev-python/spyder/spyder-5.1.5.ebuild
23 rename to dev-python/spyder/spyder-5.1.5-r1.ebuild
24 index 43cdc338040..f5b6758981e 100644
25 --- a/dev-python/spyder/spyder-5.1.5.ebuild
26 +++ b/dev-python/spyder/spyder-5.1.5-r1.ebuild
27 @@ -136,12 +136,14 @@ python_prepare_all() {
28 -e '/python-lsp-server/d' \
29 -e '/parso/d' \
30 -e '/jedi/d' \
31 + -e '/pylint/d' \
32 {setup.py,requirements/conda.txt} || die
33 sed -i \
34 -e "/^PYLS_REQVER/c\PYLS_REQVER = '>=0.0.1'" \
35 -e "/^PYLSP_REQVER/c\PYLSP_REQVER = '>=0.0.1'" \
36 -e "/^PARSO_REQVER/c\PARSO_REQVER = '>=0.0.1'" \
37 -e "/^JEDI_REQVER/c\JEDI_REQVER = '>=0.0.1'" \
38 + -e "/^PYLINT_REQVER/c\PYLINT_REQVER = '>=0.0.1'" \
39 spyder/dependencies.py || die
40
41 # do not check deps, fails because we removed pyqt5 dependency above