summaryrefslogtreecommitdiff
path: root/dev-python/url-normalize
diff options
context:
space:
mode:
authorLiguros - Gitlab CI/CD [develop] <gitlab@liguros.net>2021-04-10 13:45:26 +0000
committerLiguros - Gitlab CI/CD [develop] <gitlab@liguros.net>2021-04-10 13:45:26 +0000
commitf4ec62be67ca7c839ef6cdbc7b4de72196545f03 (patch)
tree4fb56e62ab708c292e710febe7cbda4f2a41e67b /dev-python/url-normalize
parentf5b63febc661ea97ecc7948da6169d59e628efb5 (diff)
downloadbaldeagleos-repo-f4ec62be67ca7c839ef6cdbc7b4de72196545f03.tar.gz
baldeagleos-repo-f4ec62be67ca7c839ef6cdbc7b4de72196545f03.tar.xz
baldeagleos-repo-f4ec62be67ca7c839ef6cdbc7b4de72196545f03.zip
Adding metadata
Diffstat (limited to 'dev-python/url-normalize')
-rw-r--r--dev-python/url-normalize/Manifest1
-rw-r--r--dev-python/url-normalize/metadata.xml12
-rw-r--r--dev-python/url-normalize/url-normalize-1.4.3.ebuild30
3 files changed, 43 insertions, 0 deletions
diff --git a/dev-python/url-normalize/Manifest b/dev-python/url-normalize/Manifest
new file mode 100644
index 000000000000..1d11186b719f
--- /dev/null
+++ b/dev-python/url-normalize/Manifest
@@ -0,0 +1 @@
+DIST url-normalize-1.4.3.gh.tar.gz 8478 BLAKE2B 2f15a597642626653c96f378b67794819645918473d17faad18187abe35bf7892b11c0bc78451e78f1146389beb3a6470fb3ea1610e60157fee7fbadd9863614 SHA512 46eaa1753b37e89d56cb19818144a7cf5b38653811720eb506732c35bb3732ef0c556420b22a9ee2c08e70e5b408aab7f44cea5e15d1ebe3d717c0c77706bfb8
diff --git a/dev-python/url-normalize/metadata.xml b/dev-python/url-normalize/metadata.xml
new file mode 100644
index 000000000000..27b84c4e41fc
--- /dev/null
+++ b/dev-python/url-normalize/metadata.xml
@@ -0,0 +1,12 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<!DOCTYPE pkgmetadata SYSTEM "https://liguros.gitlab.io/dtd/metadata.dtd">
+<pkgmetadata>
+ <maintainer type="project">
+ <email>python@gentoo.org</email>
+ </maintainer>
+ <upstream>
+ <remote-id type="github">niksite/url-normalize</remote-id>
+ <remote-id type="pypi">url-normalize</remote-id>
+ </upstream>
+ <origin>gentoo-staging</origin>
+</pkgmetadata> \ No newline at end of file
diff --git a/dev-python/url-normalize/url-normalize-1.4.3.ebuild b/dev-python/url-normalize/url-normalize-1.4.3.ebuild
new file mode 100644
index 000000000000..253f937a7bde
--- /dev/null
+++ b/dev-python/url-normalize/url-normalize-1.4.3.ebuild
@@ -0,0 +1,30 @@
+# Copyright 2021 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=7
+
+DISTUTILS_USE_SETUPTOOLS=pyproject.toml
+PYTHON_COMPAT=( python3_{6,7,8,9,10} )
+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/${PV}.tar.gz
+ -> ${P}.gh.tar.gz"
+
+LICENSE="MIT"
+SLOT="0"
+KEYWORDS="~amd64 ~x86"
+
+RDEPEND="dev-python/six[${PYTHON_USEDEP}]"
+
+distutils_enable_tests pytest
+
+src_prepare() {
+ # remove problematic pytest options
+ rm tox.ini || die
+ distutils-r1_src_prepare
+}