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/python-lsp-server/
Date: Wed, 02 Nov 2022 13:52:25
Message-Id: 1667397132.f2403647746674d5fdce2a47581d2529f31ea61c.andrewammerlaan@gentoo
1 commit: f2403647746674d5fdce2a47581d2529f31ea61c
2 Author: Andrew Ammerlaan <andrewammerlaan <AT> gentoo <DOT> org>
3 AuthorDate: Wed Nov 2 13:51:54 2022 +0000
4 Commit: Andrew Ammerlaan <andrewammerlaan <AT> gentoo <DOT> org>
5 CommitDate: Wed Nov 2 13:52:12 2022 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=f2403647
7
8 dev-python/python-lsp-server: drop 1.4.1
9
10 Signed-off-by: Andrew Ammerlaan <andrewammerlaan <AT> gentoo.org>
11
12 .../python-lsp-server-1.4.1.ebuild | 86 ----------------------
13 1 file changed, 86 deletions(-)
14
15 diff --git a/dev-python/python-lsp-server/python-lsp-server-1.4.1.ebuild b/dev-python/python-lsp-server/python-lsp-server-1.4.1.ebuild
16 deleted file mode 100644
17 index 215fdd8a49a4..000000000000
18 --- a/dev-python/python-lsp-server/python-lsp-server-1.4.1.ebuild
19 +++ /dev/null
20 @@ -1,86 +0,0 @@
21 -# Copyright 1999-2022 Gentoo Authors
22 -# Distributed under the terms of the GNU General Public License v2
23 -
24 -EAPI=8
25 -
26 -DISTUTILS_USE_PEP517=setuptools
27 -PYTHON_COMPAT=( python3_{8..10} )
28 -
29 -inherit distutils-r1 optfeature
30 -
31 -DESCRIPTION="Python Language Server for the Language Server Protocol"
32 -HOMEPAGE="https://github.com/python-lsp/python-lsp-server"
33 -SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz"
34 -
35 -LICENSE="MIT"
36 -SLOT="0"
37 -KEYWORDS="amd64 ~arm64 x86"
38 -
39 -IUSE="all-plugins"
40 -
41 -BDEPEND="
42 - test? (
43 - >=dev-python/autopep8-1.6.0[${PYTHON_USEDEP}]
44 - <dev-python/autopep8-1.7.0[${PYTHON_USEDEP}]
45 - dev-python/flaky[${PYTHON_USEDEP}]
46 - >=dev-python/flake8-4.0.0[${PYTHON_USEDEP}]
47 - <dev-python/flake8-4.1.0[${PYTHON_USEDEP}]
48 - dev-python/matplotlib[${PYTHON_USEDEP}]
49 - >=dev-python/mccabe-0.6.0[${PYTHON_USEDEP}]
50 - <dev-python/mccabe-0.7.0[${PYTHON_USEDEP}]
51 - dev-python/numpy[${PYTHON_USEDEP}]
52 - dev-python/pandas[${PYTHON_USEDEP}]
53 - >=dev-python/pycodestyle-2.8.0[${PYTHON_USEDEP}]
54 - <dev-python/pycodestyle-2.9.0[${PYTHON_USEDEP}]
55 - >=dev-python/pydocstyle-2.0.0[${PYTHON_USEDEP}]
56 - >=dev-python/pyflakes-2.4.0[${PYTHON_USEDEP}]
57 - <dev-python/pyflakes-2.5.0[${PYTHON_USEDEP}]
58 - >=dev-python/pylint-2.5.0[${PYTHON_USEDEP}]
59 - dev-python/QtPy[gui,testlib,${PYTHON_USEDEP}]
60 - >=dev-python/rope-0.10.5[${PYTHON_USEDEP}]
61 - dev-python/yapf[${PYTHON_USEDEP}]
62 - )
63 -"
64 -
65 -RDEPEND="
66 - >=dev-python/jedi-0.17.2[${PYTHON_USEDEP}]
67 - <dev-python/jedi-0.19.0[${PYTHON_USEDEP}]
68 - >=dev-python/python-lsp-jsonrpc-1.0.0[${PYTHON_USEDEP}]
69 - dev-python/pluggy[${PYTHON_USEDEP}]
70 - all-plugins? (
71 - >=dev-python/autopep8-1.6.0[${PYTHON_USEDEP}]
72 - <dev-python/autopep8-1.7.0[${PYTHON_USEDEP}]
73 - >=dev-python/flake8-4.0.0[${PYTHON_USEDEP}]
74 - <dev-python/flake8-4.1.0[${PYTHON_USEDEP}]
75 - >=dev-python/mccabe-0.6.0[${PYTHON_USEDEP}]
76 - <dev-python/mccabe-0.7.0[${PYTHON_USEDEP}]
77 - >=dev-python/pycodestyle-2.8.0[${PYTHON_USEDEP}]
78 - <dev-python/pycodestyle-2.9.0[${PYTHON_USEDEP}]
79 - >=dev-python/pydocstyle-2.0.0[${PYTHON_USEDEP}]
80 - >=dev-python/pyflakes-2.4.0[${PYTHON_USEDEP}]
81 - <dev-python/pyflakes-2.5.0[${PYTHON_USEDEP}]
82 - >=dev-python/pylint-2.5.0[${PYTHON_USEDEP}]
83 - >=dev-python/rope-0.10.5[${PYTHON_USEDEP}]
84 - dev-python/yapf[${PYTHON_USEDEP}]
85 - )
86 -"
87 -
88 -distutils_enable_tests pytest
89 -
90 -python_prepare_all() {
91 - # remove pytest-cov dep
92 - sed -i -e '0,/addopts/I!d' setup.cfg || die
93 - distutils-r1_python_prepare_all
94 -}
95 -
96 -pkg_postinst() {
97 - optfeature "Automatically format Python code to conform to the PEP 8 style guide" dev-python/autopep8
98 - optfeature "A wrapper around PyFlakes, pep8 & mccabe" dev-python/flake8
99 - optfeature "flake8 plugin: McCabe complexity checker" dev-python/mccabe
100 - optfeature "Python style guide checker (fka pep8)" dev-python/pycodestyle
101 - optfeature "Python docstring style checker" dev-python/pydocstyle
102 - optfeature "Passive checker for Python programs" dev-python/pyflakes
103 - optfeature "Python code static checker" dev-python/pylint
104 - optfeature "Python refactoring library" dev-python/rope
105 - optfeature "A formatter for Python files" dev-python/yapf
106 -}