* [gentoo-commits] repo/proj/guru:dev commit in: dev-python/usort/
@ 2022-06-08 5:14 Theo Anderson
0 siblings, 0 replies; 2+ messages in thread
From: Theo Anderson @ 2022-06-08 5:14 UTC (permalink / raw
To: gentoo-commits
commit: 4a1d177abb81cb2b71a6945fd75703dab5c82c1c
Author: James Beddek <telans <AT> posteo <DOT> de>
AuthorDate: Wed Jun 8 05:06:04 2022 +0000
Commit: Theo Anderson <telans <AT> posteo <DOT> de>
CommitDate: Wed Jun 8 05:13:44 2022 +0000
URL: https://gitweb.gentoo.org/repo/proj/guru.git/commit/?id=4a1d177a
dev-python/usort: new package, add 1.0.2
Signed-off-by: James Beddek <telans <AT> posteo.de>
dev-python/usort/Manifest | 1 +
dev-python/usort/metadata.xml | 8 ++++++++
dev-python/usort/usort-1.0.2.ebuild | 35 +++++++++++++++++++++++++++++++++++
3 files changed, 44 insertions(+)
diff --git a/dev-python/usort/Manifest b/dev-python/usort/Manifest
new file mode 100644
index 000000000..9d4dfbab0
--- /dev/null
+++ b/dev-python/usort/Manifest
@@ -0,0 +1 @@
+DIST usort-1.0.2.tar.gz 78068 BLAKE2B f53b7e70d707a569e8c9bb954022ea50ca133e04a6ef3674dadc0e6d78298e005035ee7e63ec349a567493802ec662026b366ebdb508d84da1862adfa9cefc2c SHA512 e950db4c61a14af55a0a39b8a799a2980cc0b2e731dd27b59ee0b345af6102db870d57118dfec94f6a89fbdbf0cdf5df5eb870d0cad657f99487fb21341dc4aa
diff --git a/dev-python/usort/metadata.xml b/dev-python/usort/metadata.xml
new file mode 100644
index 000000000..2924f0387
--- /dev/null
+++ b/dev-python/usort/metadata.xml
@@ -0,0 +1,8 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<!DOCTYPE pkgmetadata SYSTEM 'https://www.gentoo.org/dtd/metadata.dtd'>
+<pkgmetadata>
+ <maintainer type="person">
+ <email>telans@posteo.de</email>
+ <name>James Beddek</name>
+ </maintainer>
+</pkgmetadata>
diff --git a/dev-python/usort/usort-1.0.2.ebuild b/dev-python/usort/usort-1.0.2.ebuild
new file mode 100644
index 000000000..efb78fb32
--- /dev/null
+++ b/dev-python/usort/usort-1.0.2.ebuild
@@ -0,0 +1,35 @@
+# Copyright 1999-2022 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=8
+
+DISTUTILS_USE_PEP517=setuptools
+PYTHON_COMPAT=( python3_{8..10} ) # python3_11 depends on dev-python/libcst
+
+inherit distutils-r1
+
+DESCRIPTION="Safe, minimal import sorting for Python projects"
+HOMEPAGE="https://github.com/facebookexperimental/usort/"
+SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz"
+
+LICENSE="MIT"
+SLOT="0"
+KEYWORDS="~amd64"
+IUSE="test"
+RESTRICT="!test? ( test )"
+
+RDEPEND="
+ dev-python/attrs[${PYTHON_USEDEP}]
+ dev-python/click[${PYTHON_USEDEP}]
+ dev-python/libcst[${PYTHON_USEDEP}]
+ dev-python/stdlibs[${PYTHON_USEDEP}]
+ dev-python/moreorless[${PYTHON_USEDEP}]
+ dev-python/toml[${PYTHON_USEDEP}]
+ dev-python/trailrunner[${PYTHON_USEDEP}]
+"
+DEPEND="
+ ${RDEPEND}
+ test? ( dev-python/volatile[${PYTHON_USEDEP}] )
+"
+
+distutils_enable_tests unittest
^ permalink raw reply related [flat|nested] 2+ messages in thread
* [gentoo-commits] repo/proj/guru:dev commit in: dev-python/usort/
@ 2023-03-17 13:01 Anna Vyalkova
0 siblings, 0 replies; 2+ messages in thread
From: Anna Vyalkova @ 2023-03-17 13:01 UTC (permalink / raw
To: gentoo-commits
commit: dfc989ddae8987187a938749ed3b725dacfa228e
Author: Anna (cybertailor) Vyalkova <cyber+gentoo <AT> sysrq <DOT> in>
AuthorDate: Fri Mar 17 12:49:44 2023 +0000
Commit: Anna Vyalkova <cyber+gentoo <AT> sysrq <DOT> in>
CommitDate: Fri Mar 17 12:58:51 2023 +0000
URL: https://gitweb.gentoo.org/repo/proj/guru.git/commit/?id=dfc989dd
dev-python/usort: Use pypi.eclass
Signed-off-by: Anna (cybertailor) Vyalkova <cyber+gentoo <AT> sysrq.in>
dev-python/usort/usort-1.0.2.ebuild | 3 +--
1 file changed, 1 insertion(+), 2 deletions(-)
diff --git a/dev-python/usort/usort-1.0.2.ebuild b/dev-python/usort/usort-1.0.2.ebuild
index 86719aad1..d7355c609 100644
--- a/dev-python/usort/usort-1.0.2.ebuild
+++ b/dev-python/usort/usort-1.0.2.ebuild
@@ -6,11 +6,10 @@ EAPI=8
DISTUTILS_USE_PEP517=setuptools
PYTHON_COMPAT=( python3_{9..10} ) # python3_11 depends on dev-python/libcst
-inherit distutils-r1
+inherit distutils-r1 pypi
DESCRIPTION="Safe, minimal import sorting for Python projects"
HOMEPAGE="https://github.com/facebookexperimental/usort/"
-SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz"
LICENSE="MIT"
SLOT="0"
^ permalink raw reply related [flat|nested] 2+ messages in thread
end of thread, other threads:[~2023-03-17 13:01 UTC | newest]
Thread overview: 2+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2022-06-08 5:14 [gentoo-commits] repo/proj/guru:dev commit in: dev-python/usort/ Theo Anderson
-- strict thread matches above, loose matches on Subject: below --
2023-03-17 13:01 Anna Vyalkova
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox