aboutsummaryrefslogtreecommitdiff
path: root/dev-python
diff options
context:
space:
mode:
Diffstat (limited to 'dev-python')
-rw-r--r--dev-python/python-datauri/Manifest1
-rw-r--r--dev-python/python-datauri/python-datauri-3.0.2.ebuild36
2 files changed, 37 insertions, 0 deletions
diff --git a/dev-python/python-datauri/Manifest b/dev-python/python-datauri/Manifest
new file mode 100644
index 0000000..85486fd
--- /dev/null
+++ b/dev-python/python-datauri/Manifest
@@ -0,0 +1 @@
+DIST python-datauri-3.0.2.tar.gz 10788 BLAKE2B c95b4e414206efd95648782c7db5f55239ae2c27758593a45064815b0cea4eab334b4c53d070109f7653e05794d1bae9ae2a59c5e2acdab2740e16f8a0cff294 SHA512 74e28c00dd270e185fe804eec68fda7d63a5988d4eddf9d5839a395cf0b7dab708c73c2b5972759e4a5282a3d7ba71746704642421c0c10f33c6dacf8615d66d
diff --git a/dev-python/python-datauri/python-datauri-3.0.2.ebuild b/dev-python/python-datauri/python-datauri-3.0.2.ebuild
new file mode 100644
index 0000000..85d7d6d
--- /dev/null
+++ b/dev-python/python-datauri/python-datauri-3.0.2.ebuild
@@ -0,0 +1,36 @@
+#
+# ~~~ dev-python/python-datauri
+#
+# ~~~ easy data URI manipulation
+#
+
+#
+# ~~~ metadata
+
+# portage info
+EAPI=8
+SLOT=0
+
+KEYWORDS="amd64"
+
+# info
+HOMEPAGE="https://github.com/fcurella/python-datauri/"
+DESCRIPTION="Data URI manipulation made easy"
+LICENSE="Unlicense"
+
+# package data
+SRC_URI="https://github.com/fcurella/python-datauri/archive/refs/tags/v${PV}.tar.gz -> ${P}.tar.gz"
+
+#
+# ~~~ dependencies
+
+# python setup
+DISTUTILS_USE_PEP517="setuptools"
+PYTHON_COMPAT=( python3_{8..14} )
+
+inherit distutils-r1
+
+# run-time dependencies
+RDEPEND="
+ dev-python/cached-property
+ dev-python/typing-extensions"