* [gentoo-commits] proj/sci:master commit in: dev-python/looseversion/
@ 2023-01-05 8:22 Horea Christian
0 siblings, 0 replies; 4+ messages in thread
From: Horea Christian @ 2023-01-05 8:22 UTC (permalink / raw
To: gentoo-commits
commit: 3da8f1465cde6519b25f7553b97d885b7cdcc913
Author: Horea Christian <chr <AT> chymera <DOT> eu>
AuthorDate: Thu Jan 5 08:22:40 2023 +0000
Commit: Horea Christian <horea.christ <AT> gmail <DOT> com>
CommitDate: Thu Jan 5 08:22:40 2023 +0000
URL: https://gitweb.gentoo.org/proj/sci.git/commit/?id=3da8f146
dev-python/looseversion: new package, add 1.0.2
Signed-off-by: Horea Christian <chr <AT> chymera.eu>
dev-python/looseversion/looseversion-1.0.2.ebuild | 31 +++++++++++++++++++++++
dev-python/looseversion/metadata.xml | 25 ++++++++++++++++++
2 files changed, 56 insertions(+)
diff --git a/dev-python/looseversion/looseversion-1.0.2.ebuild b/dev-python/looseversion/looseversion-1.0.2.ebuild
new file mode 100644
index 000000000..8b3f667f8
--- /dev/null
+++ b/dev-python/looseversion/looseversion-1.0.2.ebuild
@@ -0,0 +1,31 @@
+# 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..11} )
+inherit distutils-r1
+
+DESCRIPTION="A backwards/forwards-compatible fork of distutils' LooseVersion"
+HOMEPAGE="https://github.com/effigies/looseversion"
+SRC_URI="https://github.com/effigies/looseversion/archive/refs/tags/${PV}.tar.gz -> ${P}.gh.tar.gz"
+
+LICENSE="PSF-2"
+SLOT="0"
+KEYWORDS="~amd64"
+IUSE=""
+
+RDEPEND=""
+BEPEND=""
+
+#EPYTEST_DESELECT=(
+# # Reported upstream: https://github.com/datalad/datalad/issues/6870
+# datalad/local/tests/test_gitcredential.py::test_datalad_credential_helper
+#)
+
+distutils_enable_tests pytest
+
+python_test() {
+ epytest tests.py
+}
diff --git a/dev-python/looseversion/metadata.xml b/dev-python/looseversion/metadata.xml
new file mode 100644
index 000000000..20b71d2b7
--- /dev/null
+++ b/dev-python/looseversion/metadata.xml
@@ -0,0 +1,25 @@
+<?xml version='1.0' encoding='UTF-8'?>
+<!DOCTYPE pkgmetadata SYSTEM "http://www.gentoo.org/dtd/metadata.dtd">
+<pkgmetadata>
+ <maintainer type="person">
+ <email>gentoo@chymera.eu</email>
+ <name>Horea Christian</name>
+ </maintainer>
+ <maintainer type="project">
+ <email>sci@gentoo.org</email>
+ <name>Gentoo Science Project</name>
+ </maintainer>
+ <longdescription lang="en">
+ A backwards/forwards-compatible fork of distutils.version.LooseVersion, for times
+ when PEP-440 isn't what you need. The goal of this package is to be a drop-in
+ replacement for the original LooseVersion. It implements an identical interface
+ and comparison logic to LooseVersion. The only major change is that a
+ looseversion.LooseVersion is comparable to a distutils.version.LooseVersion,
+ which means tools should not need to worry whether all dependencies that use
+ LooseVersion have migrated.
+ </longdescription>
+ <upstream>
+ <remote-id type="github">effigies/looseversion</remote-id>
+ <remote-id type="pypi">looseversion</remote-id>
+ </upstream>
+</pkgmetadata>
^ permalink raw reply related [flat|nested] 4+ messages in thread
* [gentoo-commits] proj/sci:master commit in: dev-python/looseversion/
@ 2023-01-05 17:38 Horea Christian
0 siblings, 0 replies; 4+ messages in thread
From: Horea Christian @ 2023-01-05 17:38 UTC (permalink / raw
To: gentoo-commits
commit: 12f398dddd5fbada6dae2a98bbb6e1ae74fb0a99
Author: Horea Christian <chr <AT> chymera <DOT> eu>
AuthorDate: Thu Jan 5 17:38:12 2023 +0000
Commit: Horea Christian <horea.christ <AT> gmail <DOT> com>
CommitDate: Thu Jan 5 17:38:12 2023 +0000
URL: https://gitweb.gentoo.org/proj/sci.git/commit/?id=12f398dd
dev-python/looseversion: add 1.0.3
Signed-off-by: Horea Christian <chr <AT> chymera.eu>
dev-python/looseversion/looseversion-1.0.3.ebuild | 31 +++++++++++++++++++++++
1 file changed, 31 insertions(+)
diff --git a/dev-python/looseversion/looseversion-1.0.3.ebuild b/dev-python/looseversion/looseversion-1.0.3.ebuild
new file mode 100644
index 000000000..5eef4e8c9
--- /dev/null
+++ b/dev-python/looseversion/looseversion-1.0.3.ebuild
@@ -0,0 +1,31 @@
+# Copyright 1999-2022 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=8
+
+DISTUTILS_USE_PEP517=flit
+PYTHON_COMPAT=( python3_{8..11} )
+inherit distutils-r1
+
+DESCRIPTION="A backwards/forwards-compatible fork of distutils' LooseVersion"
+HOMEPAGE="https://github.com/effigies/looseversion"
+SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz"
+
+LICENSE="PSF-2"
+SLOT="0"
+KEYWORDS="~amd64"
+IUSE=""
+
+RDEPEND=""
+BEPEND=""
+
+#EPYTEST_DESELECT=(
+# # Reported upstream: https://github.com/datalad/datalad/issues/6870
+# datalad/local/tests/test_gitcredential.py::test_datalad_credential_helper
+#)
+
+distutils_enable_tests pytest
+
+python_test() {
+ epytest tests.py
+}
^ permalink raw reply related [flat|nested] 4+ messages in thread
* [gentoo-commits] proj/sci:master commit in: dev-python/looseversion/
@ 2023-01-06 18:34 Horea Christian
0 siblings, 0 replies; 4+ messages in thread
From: Horea Christian @ 2023-01-06 18:34 UTC (permalink / raw
To: gentoo-commits
commit: f20be58299108aad94d235acfd1f7f095b598156
Author: Horea Christian <chr <AT> chymera <DOT> eu>
AuthorDate: Fri Jan 6 18:33:33 2023 +0000
Commit: Horea Christian <horea.christ <AT> gmail <DOT> com>
CommitDate: Fri Jan 6 18:34:47 2023 +0000
URL: https://gitweb.gentoo.org/proj/sci.git/commit/?id=f20be582
dev-python/looseversion: removed commented text
Signed-off-by: Horea Christian <chr <AT> chymera.eu>
dev-python/looseversion/looseversion-1.0.2.ebuild | 5 -----
dev-python/looseversion/looseversion-1.0.3.ebuild | 5 -----
2 files changed, 10 deletions(-)
diff --git a/dev-python/looseversion/looseversion-1.0.2.ebuild b/dev-python/looseversion/looseversion-1.0.2.ebuild
index 8b3f667f8..9feb372f7 100644
--- a/dev-python/looseversion/looseversion-1.0.2.ebuild
+++ b/dev-python/looseversion/looseversion-1.0.2.ebuild
@@ -19,11 +19,6 @@ IUSE=""
RDEPEND=""
BEPEND=""
-#EPYTEST_DESELECT=(
-# # Reported upstream: https://github.com/datalad/datalad/issues/6870
-# datalad/local/tests/test_gitcredential.py::test_datalad_credential_helper
-#)
-
distutils_enable_tests pytest
python_test() {
diff --git a/dev-python/looseversion/looseversion-1.0.3.ebuild b/dev-python/looseversion/looseversion-1.0.3.ebuild
index 5eef4e8c9..0b009a5df 100644
--- a/dev-python/looseversion/looseversion-1.0.3.ebuild
+++ b/dev-python/looseversion/looseversion-1.0.3.ebuild
@@ -19,11 +19,6 @@ IUSE=""
RDEPEND=""
BEPEND=""
-#EPYTEST_DESELECT=(
-# # Reported upstream: https://github.com/datalad/datalad/issues/6870
-# datalad/local/tests/test_gitcredential.py::test_datalad_credential_helper
-#)
-
distutils_enable_tests pytest
python_test() {
^ permalink raw reply related [flat|nested] 4+ messages in thread
* [gentoo-commits] proj/sci:master commit in: dev-python/looseversion/
@ 2023-05-02 12:52 Andrew Ammerlaan
0 siblings, 0 replies; 4+ messages in thread
From: Andrew Ammerlaan @ 2023-05-02 12:52 UTC (permalink / raw
To: gentoo-commits
commit: fad926af211c888b7aee18ad42d1d19a0f39a94f
Author: Andrew Ammerlaan <andrewammerlaan <AT> gentoo <DOT> org>
AuthorDate: Tue May 2 12:48:57 2023 +0000
Commit: Andrew Ammerlaan <andrewammerlaan <AT> gentoo <DOT> org>
CommitDate: Tue May 2 12:48:57 2023 +0000
URL: https://gitweb.gentoo.org/proj/sci.git/commit/?id=fad926af
dev-python/looseversion: remove duplicate
Signed-off-by: Andrew Ammerlaan <andrewammerlaan <AT> gentoo.org>
dev-python/looseversion/looseversion-1.0.2.ebuild | 26 -----------------------
dev-python/looseversion/looseversion-1.0.3.ebuild | 26 -----------------------
dev-python/looseversion/metadata.xml | 25 ----------------------
3 files changed, 77 deletions(-)
diff --git a/dev-python/looseversion/looseversion-1.0.2.ebuild b/dev-python/looseversion/looseversion-1.0.2.ebuild
deleted file mode 100644
index 0150e69f5..000000000
--- a/dev-python/looseversion/looseversion-1.0.2.ebuild
+++ /dev/null
@@ -1,26 +0,0 @@
-# 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_{10..11} )
-inherit distutils-r1
-
-DESCRIPTION="A backwards/forwards-compatible fork of distutils' LooseVersion"
-HOMEPAGE="https://github.com/effigies/looseversion"
-SRC_URI="https://github.com/effigies/looseversion/archive/refs/tags/${PV}.tar.gz -> ${P}.gh.tar.gz"
-
-LICENSE="PSF-2"
-SLOT="0"
-KEYWORDS="~amd64"
-IUSE=""
-
-RDEPEND=""
-BEPEND=""
-
-distutils_enable_tests pytest
-
-python_test() {
- epytest tests.py
-}
diff --git a/dev-python/looseversion/looseversion-1.0.3.ebuild b/dev-python/looseversion/looseversion-1.0.3.ebuild
deleted file mode 100644
index aa8ebcc32..000000000
--- a/dev-python/looseversion/looseversion-1.0.3.ebuild
+++ /dev/null
@@ -1,26 +0,0 @@
-# Copyright 1999-2022 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=8
-
-DISTUTILS_USE_PEP517=flit
-PYTHON_COMPAT=( python3_{10..11} )
-inherit distutils-r1
-
-DESCRIPTION="A backwards/forwards-compatible fork of distutils' LooseVersion"
-HOMEPAGE="https://github.com/effigies/looseversion"
-SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz"
-
-LICENSE="PSF-2"
-SLOT="0"
-KEYWORDS="~amd64"
-IUSE=""
-
-RDEPEND=""
-BEPEND=""
-
-distutils_enable_tests pytest
-
-python_test() {
- epytest tests.py
-}
diff --git a/dev-python/looseversion/metadata.xml b/dev-python/looseversion/metadata.xml
deleted file mode 100644
index 20b71d2b7..000000000
--- a/dev-python/looseversion/metadata.xml
+++ /dev/null
@@ -1,25 +0,0 @@
-<?xml version='1.0' encoding='UTF-8'?>
-<!DOCTYPE pkgmetadata SYSTEM "http://www.gentoo.org/dtd/metadata.dtd">
-<pkgmetadata>
- <maintainer type="person">
- <email>gentoo@chymera.eu</email>
- <name>Horea Christian</name>
- </maintainer>
- <maintainer type="project">
- <email>sci@gentoo.org</email>
- <name>Gentoo Science Project</name>
- </maintainer>
- <longdescription lang="en">
- A backwards/forwards-compatible fork of distutils.version.LooseVersion, for times
- when PEP-440 isn't what you need. The goal of this package is to be a drop-in
- replacement for the original LooseVersion. It implements an identical interface
- and comparison logic to LooseVersion. The only major change is that a
- looseversion.LooseVersion is comparable to a distutils.version.LooseVersion,
- which means tools should not need to worry whether all dependencies that use
- LooseVersion have migrated.
- </longdescription>
- <upstream>
- <remote-id type="github">effigies/looseversion</remote-id>
- <remote-id type="pypi">looseversion</remote-id>
- </upstream>
-</pkgmetadata>
^ permalink raw reply related [flat|nested] 4+ messages in thread
end of thread, other threads:[~2023-05-02 12:52 UTC | newest]
Thread overview: 4+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2023-01-05 8:22 [gentoo-commits] proj/sci:master commit in: dev-python/looseversion/ Horea Christian
-- strict thread matches above, loose matches on Subject: below --
2023-01-05 17:38 Horea Christian
2023-01-06 18:34 Horea Christian
2023-05-02 12:52 Andrew Ammerlaan
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox