public inbox for gentoo-commits@lists.gentoo.org
 help / color / mirror / Atom feed
* [gentoo-commits] repo/proj/guru:master commit in: dev-python/python-lsp-isort/
@ 2024-01-01  3:56 David Roman
  0 siblings, 0 replies; 3+ messages in thread
From: David Roman @ 2024-01-01  3:56 UTC (permalink / raw
  To: gentoo-commits

commit:     5b9feacb87175fafdbf6c7302287c73b6bce4bf9
Author:     Moritz Brunner <moritz.brunner+gentoo <AT> posteo <DOT> de>
AuthorDate: Sun Dec 31 18:14:11 2023 +0000
Commit:     David Roman <davidroman96 <AT> gmail <DOT> com>
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+gentoo@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


^ permalink raw reply related	[flat|nested] 3+ messages in thread

* [gentoo-commits] repo/proj/guru:master commit in: dev-python/python-lsp-isort/
@ 2024-01-01  3:56 David Roman
  0 siblings, 0 replies; 3+ messages in thread
From: David Roman @ 2024-01-01  3:56 UTC (permalink / raw
  To: gentoo-commits

commit:     047be17857361e5b8b93e239b58bc95d98efef5b
Author:     Moritz Brunner <moritz.brunner+gentoo <AT> posteo <DOT> de>
AuthorDate: Sun Dec 31 18:29:51 2023 +0000
Commit:     David Roman <davidroman96 <AT> gmail <DOT> com>
CommitDate: Sun Dec 31 18:29:51 2023 +0000
URL:        https://gitweb.gentoo.org/repo/proj/guru.git/commit/?id=047be178

dev-python/python-lsp-isort: Simplify by removing superfluous MY_PV

Signed-off-by: Moritz Brunner <moritz.brunner+gentoo <AT> posteo.de>

 dev-python/python-lsp-isort/python-lsp-isort-0.1.ebuild | 4 +---
 1 file changed, 1 insertion(+), 3 deletions(-)

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
index 3eec423be9..cc95211426 100644
--- a/dev-python/python-lsp-isort/python-lsp-isort-0.1.ebuild
+++ b/dev-python/python-lsp-isort/python-lsp-isort-0.1.ebuild
@@ -5,7 +5,6 @@ EAPI=8
 
 DISTUTILS_USE_PEP517=setuptools
 PYTHON_COMPAT=( python3_{10..12} pypy3 )
-MY_PV="0.1"
 
 inherit distutils-r1
 
@@ -15,10 +14,9 @@ HOMEPAGE="
 	https://pypi.org/project/python-lsp-isort/
 "
 SRC_URI="
-	https://github.com/chantera/${PN}/archive/refs/tags/v${MY_PV}.tar.gz
+	https://github.com/chantera/${PN}/archive/refs/tags/v${PV}.tar.gz
 		-> ${P}.gh.tar.gz
 "
-S="${WORKDIR}/${PN}-${MY_PV}"
 
 LICENSE="MIT"
 SLOT="0"


^ permalink raw reply related	[flat|nested] 3+ messages in thread

* [gentoo-commits] repo/proj/guru:master commit in: dev-python/python-lsp-isort/
  2024-04-13 18:54 [gentoo-commits] repo/proj/guru:dev " Julien Roy
@ 2024-04-13 22:19 ` Julien Roy
  0 siblings, 0 replies; 3+ messages in thread
From: Julien Roy @ 2024-04-13 22:19 UTC (permalink / raw
  To: gentoo-commits

commit:     e4ea6c00d336a969397fb08afebea8abea4cd093
Author:     Julien Roy <julien <AT> jroy <DOT> ca>
AuthorDate: Sat Apr 13 18:54:05 2024 +0000
Commit:     Julien Roy <julien <AT> jroy <DOT> ca>
CommitDate: Sat Apr 13 18:54:05 2024 +0000
URL:        https://gitweb.gentoo.org/repo/proj/guru.git/commit/?id=e4ea6c00

dev-python/python-lsp-isort: disable pypy3

Signed-off-by: Julien Roy <julien <AT> jroy.ca>

 dev-python/python-lsp-isort/python-lsp-isort-0.1.ebuild | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

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
index cc95211426..f682d6b92a 100644
--- a/dev-python/python-lsp-isort/python-lsp-isort-0.1.ebuild
+++ b/dev-python/python-lsp-isort/python-lsp-isort-0.1.ebuild
@@ -1,10 +1,10 @@
-# Copyright 1999-2023 Gentoo Authors
+# Copyright 1999-2024 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 )
+PYTHON_COMPAT=( python3_{10..12} )
 
 inherit distutils-r1
 


^ permalink raw reply related	[flat|nested] 3+ messages in thread

end of thread, other threads:[~2024-04-13 22:19 UTC | newest]

Thread overview: 3+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2024-01-01  3:56 [gentoo-commits] repo/proj/guru:master commit in: dev-python/python-lsp-isort/ David Roman
  -- strict thread matches above, loose matches on Subject: below --
2024-04-13 18:54 [gentoo-commits] repo/proj/guru:dev " Julien Roy
2024-04-13 22:19 ` [gentoo-commits] repo/proj/guru:master " Julien Roy
2024-01-01  3:56 David Roman

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox