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: Sat, 26 Jun 2021 20:15:01
Message-Id: 1624738492.0cd2962d68e77f3ed5a00d6a4cea53222f3352bd.andrewammerlaan@gentoo
1 commit: 0cd2962d68e77f3ed5a00d6a4cea53222f3352bd
2 Author: Andrew Ammerlaan <andrewammerlaan <AT> gentoo <DOT> org>
3 AuthorDate: Sat Jun 26 20:11:34 2021 +0000
4 Commit: Andrew Ammerlaan <andrewammerlaan <AT> gentoo <DOT> org>
5 CommitDate: Sat Jun 26 20:14:52 2021 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=0cd2962d
7
8 dev-python/python-lsp-server: add version 1.1.0
9
10 Package-Manager: Portage-3.0.20, Repoman-3.0.3
11 Signed-off-by: Andrew Ammerlaan <andrewammerlaan <AT> gentoo.org>
12
13 dev-python/python-lsp-server/Manifest | 1 +
14 .../python-lsp-server-1.1.0.ebuild | 69 ++++++++++++++++++++++
15 2 files changed, 70 insertions(+)
16
17 diff --git a/dev-python/python-lsp-server/Manifest b/dev-python/python-lsp-server/Manifest
18 index 64972775d70..8f92abb0667 100644
19 --- a/dev-python/python-lsp-server/Manifest
20 +++ b/dev-python/python-lsp-server/Manifest
21 @@ -1 +1,2 @@
22 DIST python-lsp-server-1.0.1.tar.gz 56835 BLAKE2B 430e215b7d65bff2008136783539c262ee201d651bf83750333d41353483882fe7a603208c2725c89530a34cef22e73fe1ef26ec80fe7fb42d2df79eae511528 SHA512 bf116d92bdebea41e4f6647673d390887d84be70d612b92b8c3973aa55db4b151c1188b06fb8e3b6dccb814fd22f938572e998f0b1329bf0b69d0e4750b8f5f6
23 +DIST python-lsp-server-1.1.0.tar.gz 58194 BLAKE2B bc1d542e90a1295e7bddf68d366a738b371895a453e8fb7de5b0d688c49b45b9c3441d479c1f760291e32eedc6fd42cb5ee0966ed32a10ee7f883dee3559932f SHA512 fd9f1985bd55f93740671e83696b02567b12b9b77db14c495482494d23f0a73b2048d99fce9c1be0b7d7c847f213a681d379c342d128a95cf40bd3ffeca9766f
24
25 diff --git a/dev-python/python-lsp-server/python-lsp-server-1.1.0.ebuild b/dev-python/python-lsp-server/python-lsp-server-1.1.0.ebuild
26 new file mode 100644
27 index 00000000000..7bfbc16308b
28 --- /dev/null
29 +++ b/dev-python/python-lsp-server/python-lsp-server-1.1.0.ebuild
30 @@ -0,0 +1,69 @@
31 +# Copyright 1999-2021 Gentoo Authors
32 +# Distributed under the terms of the GNU General Public License v2
33 +
34 +EAPI=7
35 +
36 +PYTHON_COMPAT=( python3_{7..9} )
37 +
38 +DISTUTILS_USE_SETUPTOOLS=rdepend
39 +inherit distutils-r1 optfeature
40 +
41 +DESCRIPTION="Python Language Server for the Language Server Protocol"
42 +HOMEPAGE="https://github.com/python-lsp/python-lsp-server"
43 +SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz"
44 +
45 +LICENSE="MIT"
46 +SLOT="0"
47 +KEYWORDS="~amd64 ~arm64 ~x86"
48 +
49 +BDEPEND="
50 + test? (
51 + dev-python/autopep8[${PYTHON_USEDEP}]
52 + dev-python/flaky[${PYTHON_USEDEP}]
53 + >=dev-python/flake8-3.8.0[${PYTHON_USEDEP}]
54 + dev-python/matplotlib[${PYTHON_USEDEP}]
55 + >=dev-python/mccabe-0.6.0[${PYTHON_USEDEP}]
56 + <dev-python/mccabe-0.7.0[${PYTHON_USEDEP}]
57 + dev-python/numpy[${PYTHON_USEDEP}]
58 + dev-python/pandas[${PYTHON_USEDEP}]
59 + >=dev-python/pycodestyle-2.7.0[${PYTHON_USEDEP}]
60 + >=dev-python/pydocstyle-2.0.0[${PYTHON_USEDEP}]
61 + >=dev-python/pyflakes-2.3.0[${PYTHON_USEDEP}]
62 + <dev-python/pyflakes-2.4.0[${PYTHON_USEDEP}]
63 + >=dev-python/pylint-2.5.0[${PYTHON_USEDEP}]
64 + dev-python/QtPy[gui,testlib,${PYTHON_USEDEP}]
65 + >=dev-python/rope-0.10.5[${PYTHON_USEDEP}]
66 + dev-python/yapf[${PYTHON_USEDEP}]
67 + )"
68 +
69 +RDEPEND="
70 + >=dev-python/jedi-0.17.2[${PYTHON_USEDEP}]
71 + <dev-python/jedi-0.19.0[${PYTHON_USEDEP}]
72 + >=dev-python/python-lsp-jsonrpc-1.0.0[${PYTHON_USEDEP}]
73 + dev-python/pluggy[${PYTHON_USEDEP}]
74 + >=dev-python/ujson-3[${PYTHON_USEDEP}]
75 +"
76 +
77 +distutils_enable_tests pytest
78 +
79 +python_prepare_all() {
80 + # remove pytest-cov dep
81 + sed -i -e '0,/addopts/I!d' setup.cfg || die
82 +
83 + # This test is continuously breaking
84 + sed -i -e 's/test_folding/_&/' test/plugins/test_folding.py || die
85 +
86 + distutils-r1_python_prepare_all
87 +}
88 +
89 +pkg_postinst() {
90 + optfeature "Automatically formats Python code to conform to the PEP 8 style guide" dev-python/autopep8
91 + optfeature "A wrapper around PyFlakes, pep8 & mccabe" dev-python/flake8
92 + optfeature "flake8 plugin: McCabe complexity checker" dev-python/mccabe
93 + optfeature "Python style guide checker (fka pep8)" dev-python/pycodestyle
94 + optfeature "Python docstring style checker" dev-python/pydocstyle
95 + optfeature "Passive checker for Python programs" dev-python/pyflakes
96 + optfeature "Python code static checker" dev-python/pylint
97 + optfeature "Python refactoring library" dev-python/rope
98 + optfeature "A formatter for Python files" dev-python/yapf
99 +}