commit: 5b9feacb87175fafdbf6c7302287c73b6bce4bf9 Author: Moritz Brunner <moritz.brunner+gentoo <AT> posteo <DOT> de> AuthorDate: Sun Dec 31 18:14:11 2023 +0000 Commit: Moritz Brunner <moritz.brunner+gentoo <AT> posteo <DOT> de> CommitDate: Sun Dec 31 18:24:20 2023 +0000 URL: https://gitweb.gentoo.org/repo/proj/guru.git/commit/?id=5b9feacb
dev-python/python-lsp-isort: new package, add 0.1 Signed-off-by: Moritz Brunner <moritz.brunner+gentoo <AT> posteo.de> dev-python/python-lsp-isort/Manifest | 1 + dev-python/python-lsp-isort/metadata.xml | 13 ++++++++ .../python-lsp-isort/python-lsp-isort-0.1.ebuild | 35 ++++++++++++++++++++++ 3 files changed, 49 insertions(+) diff --git a/dev-python/python-lsp-isort/Manifest b/dev-python/python-lsp-isort/Manifest new file mode 100644 index 0000000000..ae4c07768c --- /dev/null +++ b/dev-python/python-lsp-isort/Manifest @@ -0,0 +1 @@ +DIST python-lsp-isort-0.1.gh.tar.gz 5065 BLAKE2B 385807fde3bbbfd73d7fdefb721375490be592203aac41bcb2e0a56ee5588f66a78c7e2f6b14458c2836987abb1607670935d12127caedb2ddd3b9e67b87b547 SHA512 fd2575e27c5a32c7a8dfabc8777ae9ce82a0c1fe9a46fe64341becbe60e8d37d07736950b986df307e608a777825fd51cbb1345b7163944e19086ab69985a472 diff --git a/dev-python/python-lsp-isort/metadata.xml b/dev-python/python-lsp-isort/metadata.xml new file mode 100644 index 0000000000..339401237c --- /dev/null +++ b/dev-python/python-lsp-isort/metadata.xml @@ -0,0 +1,13 @@ +<?xml version="1.0" encoding="UTF-8"?> +<!DOCTYPE pkgmetadata SYSTEM "https://www.gentoo.org/dtd/metadata.dtd"> +<pkgmetadata> + <maintainer type="person"> + <name>Moritz Brunner</name> + <email>moritz.brunner+gen...@posteo.de</email> + </maintainer> + <stabilize-allarches /> + <upstream> + <remote-id type="pypi">python-lsp-isort</remote-id> + <remote-id type="github">chantera/python-lsp-isort</remote-id> + </upstream> +</pkgmetadata> diff --git a/dev-python/python-lsp-isort/python-lsp-isort-0.1.ebuild b/dev-python/python-lsp-isort/python-lsp-isort-0.1.ebuild new file mode 100644 index 0000000000..3eec423be9 --- /dev/null +++ b/dev-python/python-lsp-isort/python-lsp-isort-0.1.ebuild @@ -0,0 +1,35 @@ +# Copyright 1999-2023 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=8 + +DISTUTILS_USE_PEP517=setuptools +PYTHON_COMPAT=( python3_{10..12} pypy3 ) +MY_PV="0.1" + +inherit distutils-r1 + +DESCRIPTION="isort plugin for the Python LSP Server" +HOMEPAGE=" + https://github.com/chantera/python-lsp-isort + https://pypi.org/project/python-lsp-isort/ +" +SRC_URI=" + https://github.com/chantera/${PN}/archive/refs/tags/v${MY_PV}.tar.gz + -> ${P}.gh.tar.gz +" +S="${WORKDIR}/${PN}-${MY_PV}" + +LICENSE="MIT" +SLOT="0" +KEYWORDS="~amd64 ~arm64 ~x86" + +BDEPEND=" + >=dev-python/isort-5.0[${PYTHON_USEDEP}] +" +RDEPEND=" + dev-python/python-lsp-server[${PYTHON_USEDEP}] + ${BDEPEND} +" + +distutils_enable_tests pytest