summaryrefslogtreecommitdiff
path: root/dev-python/url-normalize
diff options
context:
space:
mode:
Diffstat (limited to 'dev-python/url-normalize')
-rw-r--r--dev-python/url-normalize/Manifest1
-rw-r--r--dev-python/url-normalize/url-normalize-3.0.1.ebuild34
2 files changed, 35 insertions, 0 deletions
diff --git a/dev-python/url-normalize/Manifest b/dev-python/url-normalize/Manifest
index 30189b3821b5..083a522ed16d 100644
--- a/dev-python/url-normalize/Manifest
+++ b/dev-python/url-normalize/Manifest
@@ -1 +1,2 @@
DIST url-normalize-3.0.0.gh.tar.gz 62532 BLAKE2B c79eb146709b4bf031fbfa866df6784f7fea66daa9fd1822830dc5af245fe3ab1d81823c661b1fe3dd3a6c4e8144b5dc2a6522eb8ca18bbf952d385d2c9e00ea SHA512 5d1d4984788d09b88c191807760878391fa6a92b5930d1efe12985a7700126319750f6b1b29632071668f7d2dfe0977c782a0b859ccca10a9114698578cd7e4f
+DIST url-normalize-3.0.1.gh.tar.gz 70269 BLAKE2B 755d5a95f748e6078df228362167d7a7fd4c66c1829a493ea6e8d2c2aa66a3b4bbf595e3b7d07b3f74e630b3f95d0a2c0c6bd430bcb11f7f22c2bce2757d48b2 SHA512 851aadd2ca22f9b41565b91020078da7c421ddb461036bdcfeb7a170fd597c5f63aab4cea2bf059a0e11ebe54e6a8b5eeb9d2b4d457839ef81fb4eb2bcac459c
diff --git a/dev-python/url-normalize/url-normalize-3.0.1.ebuild b/dev-python/url-normalize/url-normalize-3.0.1.ebuild
new file mode 100644
index 000000000000..a0c6d1606cc6
--- /dev/null
+++ b/dev-python/url-normalize/url-normalize-3.0.1.ebuild
@@ -0,0 +1,34 @@
+# Copyright 2021-2026 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=8
+
+DISTUTILS_USE_PEP517=setuptools
+PYTHON_COMPAT=( python3_{13..14} )
+
+inherit distutils-r1
+
+DESCRIPTION="URL normalization for Python"
+HOMEPAGE="
+ https://github.com/niksite/url-normalize/
+ https://pypi.org/project/url-normalize/
+"
+SRC_URI="
+ https://github.com/niksite/url-normalize/archive/v${PV}.tar.gz
+ -> ${P}.gh.tar.gz
+"
+
+LICENSE="MIT"
+SLOT="0"
+KEYWORDS="~amd64 ~arm ~arm64 ~loong ~ppc64 ~riscv ~x86"
+
+RDEPEND="
+ >=dev-python/idna-3.3[${PYTHON_USEDEP}]
+"
+
+EPYTEST_PLUGINS=()
+distutils_enable_tests pytest
+
+python_test() {
+ epytest -o addopts= -m "not socket"
+}