summaryrefslogtreecommitdiff
path: root/dev-python/rfc3987
diff options
context:
space:
mode:
authorLiguros - Gitlab CI/CD [develop] <gitlab@liguros.net>2022-01-19 01:39:00 +0000
committerLiguros - Gitlab CI/CD [develop] <gitlab@liguros.net>2022-01-19 01:39:00 +0000
commit6fef7915014116f9db7834f594cfa6bd950c45aa (patch)
treec389dc38a3c0b4fc6e79cb3650b709f809d6b528 /dev-python/rfc3987
parentce1ae4eb083d83387e13192d654ccb7bf40f3c7e (diff)
downloadbaldeagleos-repo-6fef7915014116f9db7834f594cfa6bd950c45aa.tar.gz
baldeagleos-repo-6fef7915014116f9db7834f594cfa6bd950c45aa.tar.xz
baldeagleos-repo-6fef7915014116f9db7834f594cfa6bd950c45aa.zip
Adding metadata
Diffstat (limited to 'dev-python/rfc3987')
-rw-r--r--dev-python/rfc3987/rfc3987-1.3.8-r1.ebuild4
-rw-r--r--dev-python/rfc3987/rfc3987-1.3.8-r2.ebuild23
2 files changed, 25 insertions, 2 deletions
diff --git a/dev-python/rfc3987/rfc3987-1.3.8-r1.ebuild b/dev-python/rfc3987/rfc3987-1.3.8-r1.ebuild
index e176aae01ca8..9b8f243d6129 100644
--- a/dev-python/rfc3987/rfc3987-1.3.8-r1.ebuild
+++ b/dev-python/rfc3987/rfc3987-1.3.8-r1.ebuild
@@ -1,9 +1,9 @@
-# Copyright 1999-2021 Gentoo Authors
+# Copyright 1999-2022 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
EAPI=7
-PYTHON_COMPAT=( python3_{6,7,8,9,10} )
+PYTHON_COMPAT=( python3_{6,7,8,9,10} pypy3 )
inherit distutils-r1
diff --git a/dev-python/rfc3987/rfc3987-1.3.8-r2.ebuild b/dev-python/rfc3987/rfc3987-1.3.8-r2.ebuild
new file mode 100644
index 000000000000..2c2a2be936f5
--- /dev/null
+++ b/dev-python/rfc3987/rfc3987-1.3.8-r2.ebuild
@@ -0,0 +1,23 @@
+# 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_{6,7,8,9,10} pypy3 )
+inherit distutils-r1
+
+DESCRIPTION="Parsing and validation of URIs (RFC 3986) and IRIs (RFC 3987)"
+HOMEPAGE="https://github.com/dgerber/rfc3987 https://pypi.org/project/rfc3987/"
+SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz"
+
+LICENSE="GPL-3"
+SLOT="0"
+KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~m68k ~mips ~ppc ~ppc64 ~riscv ~s390 ~sparc ~x86 ~amd64-linux ~x86-linux"
+
+RDEPEND="dev-python/regex[${PYTHON_USEDEP}]"
+DEPEND="${RDEPEND}"
+
+python_test() {
+ ${EPYTHON} -m doctest -v "${S}/${PN}.py" || die
+}