public inbox for gentoo-commits@lists.gentoo.org
 help / color / mirror / Atom feed
* [gentoo-commits] repo/proj/guru:dev commit in: dev-python/urlmatch/
@ 2021-10-08 19:46 Nicola Smaniotto
  0 siblings, 0 replies; 5+ messages in thread
From: Nicola Smaniotto @ 2021-10-08 19:46 UTC (permalink / raw
  To: gentoo-commits

commit:     b24dc12afb80100f3b46142529d21c3a1145dd9d
Author:     Nicola Smaniotto <smaniotto.nicola <AT> gmail <DOT> com>
AuthorDate: Fri Oct  8 19:40:51 2021 +0000
Commit:     Nicola Smaniotto <smaniotto.nicola <AT> gmail <DOT> com>
CommitDate: Fri Oct  8 19:45:37 2021 +0000
URL:        https://gitweb.gentoo.org/repo/proj/guru.git/commit/?id=b24dc12a

dev-python/urlmatch: new package (1.0.1)

Package-Manager: Portage-3.0.20, Repoman-3.0.3
Signed-off-by: Nicola Smaniotto <smaniotto.nicola <AT> gmail.com>

 dev-python/urlmatch/Manifest              |  1 +
 dev-python/urlmatch/metadata.xml          |  8 ++++++++
 dev-python/urlmatch/urlmatch-1.0.1.ebuild | 27 +++++++++++++++++++++++++++
 3 files changed, 36 insertions(+)

diff --git a/dev-python/urlmatch/Manifest b/dev-python/urlmatch/Manifest
new file mode 100644
index 000000000..6c7d55d3c
--- /dev/null
+++ b/dev-python/urlmatch/Manifest
@@ -0,0 +1 @@
+DIST urlmatch-1.0.1.tar.gz 4852 BLAKE2B 564784d2d6555cab8193136e7626e7c2f9766823faf69de50985a140c72e707b89adf8916915dc4f3e94d389638873a272f6d78b867ae391791dbd9b4fa4c4ae SHA512 f5dc2bae59db0e193de4e5ec5bf7f074da60b925a09d8f466cf29f73ca7bebbe59a63c65d3b361e9dc475aac528f7990ec23fdc73fc24de260fe9f2447e287e0

diff --git a/dev-python/urlmatch/metadata.xml b/dev-python/urlmatch/metadata.xml
new file mode 100644
index 000000000..cbe3c6a53
--- /dev/null
+++ b/dev-python/urlmatch/metadata.xml
@@ -0,0 +1,8 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<!DOCTYPE pkgmetadata SYSTEM 'http://www.gentoo.org/dtd/metadata.dtd'>
+<pkgmetadata>
+	<maintainer type="person">
+		<email>smaniotto.nicola@gmail.com</email>
+		<name>Nicola Smaniotto</name>
+	</maintainer>
+</pkgmetadata>

diff --git a/dev-python/urlmatch/urlmatch-1.0.1.ebuild b/dev-python/urlmatch/urlmatch-1.0.1.ebuild
new file mode 100644
index 000000000..f94bde28e
--- /dev/null
+++ b/dev-python/urlmatch/urlmatch-1.0.1.ebuild
@@ -0,0 +1,27 @@
+# Copyright 2021 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=8
+
+PYTHON_COMPAT=( python3_{8..9} )
+
+inherit distutils-r1
+
+DESCRIPTION="A Python library for easily pattern matching wildcard URLs"
+HOMEPAGE="https://github.com/jessepollak/urlmatch"
+SRC_URI="https://github.com/jessepollak/${PN}/archive/refs/tags/v${PV}.tar.gz -> ${P}.tar.gz"
+
+LICENSE="Apache-2.0"
+SLOT="0"
+KEYWORDS="~amd64"
+
+distutils_enable_tests unittest
+
+src_prepare(){
+	sed 's/find_packages()/find_packages(exclude=["tests*"])/' -i setup.py || die
+	default
+}
+
+python_test(){
+	eunittest tests/ "*.py"
+}


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

* [gentoo-commits] repo/proj/guru:dev commit in: dev-python/urlmatch/
@ 2022-02-22 15:58 Nicola Smaniotto
  0 siblings, 0 replies; 5+ messages in thread
From: Nicola Smaniotto @ 2022-02-22 15:58 UTC (permalink / raw
  To: gentoo-commits

commit:     091f0c396279d09fb3f53aeb9f877a55f4e5ac39
Author:     Nicola Smaniotto <smaniotto.nicola <AT> gmail <DOT> com>
AuthorDate: Tue Feb 22 14:27:46 2022 +0000
Commit:     Nicola Smaniotto <smaniotto.nicola <AT> gmail <DOT> com>
CommitDate: Tue Feb 22 15:57:59 2022 +0000
URL:        https://gitweb.gentoo.org/repo/proj/guru.git/commit/?id=091f0c39

dev-python/urlmatch: allow python3_10

Package-Manager: Portage-3.0.30, Repoman-3.0.3
Signed-off-by: Nicola Smaniotto <smaniotto.nicola <AT> gmail.com>

 .../urlmatch/{urlmatch-1.0.1.ebuild => urlmatch-1.0.1-r1.ebuild}      | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/dev-python/urlmatch/urlmatch-1.0.1.ebuild b/dev-python/urlmatch/urlmatch-1.0.1-r1.ebuild
similarity index 89%
rename from dev-python/urlmatch/urlmatch-1.0.1.ebuild
rename to dev-python/urlmatch/urlmatch-1.0.1-r1.ebuild
index f94bde28e..db6e61ee1 100644
--- a/dev-python/urlmatch/urlmatch-1.0.1.ebuild
+++ b/dev-python/urlmatch/urlmatch-1.0.1-r1.ebuild
@@ -1,9 +1,9 @@
-# Copyright 2021 Gentoo Authors
+# Copyright 2022 Gentoo Authors
 # Distributed under the terms of the GNU General Public License v2
 
 EAPI=8
 
-PYTHON_COMPAT=( python3_{8..9} )
+PYTHON_COMPAT=( python3_{8..10} )
 
 inherit distutils-r1
 


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

* [gentoo-commits] repo/proj/guru:dev commit in: dev-python/urlmatch/
@ 2022-12-12 10:31 Nicola Smaniotto
  0 siblings, 0 replies; 5+ messages in thread
From: Nicola Smaniotto @ 2022-12-12 10:31 UTC (permalink / raw
  To: gentoo-commits

commit:     476c777feb3741052acca918d52b44bc32c4c7ba
Author:     Nicola Smaniotto <smaniotto.nicola <AT> gmail <DOT> com>
AuthorDate: Mon Dec 12 10:28:09 2022 +0000
Commit:     Nicola Smaniotto <smaniotto.nicola <AT> gmail <DOT> com>
CommitDate: Mon Dec 12 10:28:09 2022 +0000
URL:        https://gitweb.gentoo.org/repo/proj/guru.git/commit/?id=476c777f

dev-python/urlmatch: PEP517

Signed-off-by: Nicola Smaniotto <smaniotto.nicola <AT> gmail.com>

 dev-python/urlmatch/urlmatch-1.0.1-r1.ebuild | 1 +
 1 file changed, 1 insertion(+)

diff --git a/dev-python/urlmatch/urlmatch-1.0.1-r1.ebuild b/dev-python/urlmatch/urlmatch-1.0.1-r1.ebuild
index db6e61ee1..e5e87f335 100644
--- a/dev-python/urlmatch/urlmatch-1.0.1-r1.ebuild
+++ b/dev-python/urlmatch/urlmatch-1.0.1-r1.ebuild
@@ -4,6 +4,7 @@
 EAPI=8
 
 PYTHON_COMPAT=( python3_{8..10} )
+DISTUTILS_USE_PEP517=setuptools
 
 inherit distutils-r1
 


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

* [gentoo-commits] repo/proj/guru:dev commit in: dev-python/urlmatch/
@ 2022-12-12 10:31 Nicola Smaniotto
  0 siblings, 0 replies; 5+ messages in thread
From: Nicola Smaniotto @ 2022-12-12 10:31 UTC (permalink / raw
  To: gentoo-commits

commit:     ce9a4ac2116e61afac5f3d778e854dd22d682289
Author:     Nicola Smaniotto <smaniotto.nicola <AT> gmail <DOT> com>
AuthorDate: Mon Dec 12 10:28:42 2022 +0000
Commit:     Nicola Smaniotto <smaniotto.nicola <AT> gmail <DOT> com>
CommitDate: Mon Dec 12 10:28:42 2022 +0000
URL:        https://gitweb.gentoo.org/repo/proj/guru.git/commit/?id=ce9a4ac2

dev-python/urlmatch: enable py3.11

Signed-off-by: Nicola Smaniotto <smaniotto.nicola <AT> gmail.com>

 .../urlmatch/{urlmatch-1.0.1-r1.ebuild => urlmatch-1.0.1-r2.ebuild}     | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/dev-python/urlmatch/urlmatch-1.0.1-r1.ebuild b/dev-python/urlmatch/urlmatch-1.0.1-r2.ebuild
similarity index 94%
rename from dev-python/urlmatch/urlmatch-1.0.1-r1.ebuild
rename to dev-python/urlmatch/urlmatch-1.0.1-r2.ebuild
index e5e87f335..06eac2ed0 100644
--- a/dev-python/urlmatch/urlmatch-1.0.1-r1.ebuild
+++ b/dev-python/urlmatch/urlmatch-1.0.1-r2.ebuild
@@ -3,7 +3,7 @@
 
 EAPI=8
 
-PYTHON_COMPAT=( python3_{8..10} )
+PYTHON_COMPAT=( python3_{8..11} )
 DISTUTILS_USE_PEP517=setuptools
 
 inherit distutils-r1


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

* [gentoo-commits] repo/proj/guru:dev commit in: dev-python/urlmatch/
@ 2024-05-13  9:01 Nicola Smaniotto
  0 siblings, 0 replies; 5+ messages in thread
From: Nicola Smaniotto @ 2024-05-13  9:01 UTC (permalink / raw
  To: gentoo-commits

commit:     34f6cc782e6163a53a7d0a50b1e2ca3d52a44dc0
Author:     Nicola Smaniotto <smaniotto.nicola <AT> gmail <DOT> com>
AuthorDate: Mon May 13 08:48:19 2024 +0000
Commit:     Nicola Smaniotto <smaniotto.nicola <AT> gmail <DOT> com>
CommitDate: Mon May 13 09:00:04 2024 +0000
URL:        https://gitweb.gentoo.org/repo/proj/guru.git/commit/?id=34f6cc78

dev-python/urlmatch: enable py3.12

Closes: https://bugs.gentoo.org/931437
Signed-off-by: Nicola Smaniotto <smaniotto.nicola <AT> gmail.com>

 dev-python/urlmatch/urlmatch-1.0.1-r2.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/dev-python/urlmatch/urlmatch-1.0.1-r2.ebuild b/dev-python/urlmatch/urlmatch-1.0.1-r2.ebuild
index 49c3b30c5d..2650ea8a84 100644
--- a/dev-python/urlmatch/urlmatch-1.0.1-r2.ebuild
+++ b/dev-python/urlmatch/urlmatch-1.0.1-r2.ebuild
@@ -3,7 +3,7 @@
 
 EAPI=8
 
-PYTHON_COMPAT=( python3_{10..11} )
+PYTHON_COMPAT=( python3_{10..12} )
 DISTUTILS_USE_PEP517=setuptools
 
 inherit distutils-r1


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

end of thread, other threads:[~2024-05-13  9:01 UTC | newest]

Thread overview: 5+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2024-05-13  9:01 [gentoo-commits] repo/proj/guru:dev commit in: dev-python/urlmatch/ Nicola Smaniotto
  -- strict thread matches above, loose matches on Subject: below --
2022-12-12 10:31 Nicola Smaniotto
2022-12-12 10:31 Nicola Smaniotto
2022-02-22 15:58 Nicola Smaniotto
2021-10-08 19:46 Nicola Smaniotto

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