aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--dev-python/toml/Manifest1
-rw-r--r--dev-python/toml/toml-0.10.2.ebuild31
2 files changed, 32 insertions, 0 deletions
diff --git a/dev-python/toml/Manifest b/dev-python/toml/Manifest
new file mode 100644
index 0000000..cfbbc78
--- /dev/null
+++ b/dev-python/toml/Manifest
@@ -0,0 +1 @@
+DIST toml-0.10.2.tar.gz 23325 BLAKE2B dedab7d08dadca963e62d64e9108e254dd73b78761985faa892792823027befc6473ae02c35c275a216b4544d1af8776afa78e39c63c95eb856e2bccf1de49c4 SHA512 5c706a3ae336e6b29bdce9752b91c677f7610cbcc1af4169cc24779e248031406cd19ac367725b2aa7903e4b1db71fa59255238c0270b2c146fd5d7e12d9a5da
diff --git a/dev-python/toml/toml-0.10.2.ebuild b/dev-python/toml/toml-0.10.2.ebuild
new file mode 100644
index 0000000..41aacef
--- /dev/null
+++ b/dev-python/toml/toml-0.10.2.ebuild
@@ -0,0 +1,31 @@
+#
+# ~~~ dev-python/toml
+#
+# ~~~ a TOML library
+#
+
+#
+# ~~~ metadata
+
+# portage info
+EAPI=8
+SLOT=0
+
+KEYWORDS="amd64"
+
+# info
+HOMEPAGE="https://github.com/uiri/toml/"
+DESCRIPTION="A Python library for TOML"
+LICENSE="MIT"
+
+# package data
+SRC_URI="https://github.com/uiri/toml/archive/refs/tags/${PV}.tar.gz -> ${P}.tar.gz"
+
+#
+# ~~~ dependencies
+
+# python setup
+DISTUTILS_USE_PEP517="setuptools"
+PYTHON_COMPAT=( python3_{3..14} )
+
+inherit distutils-r1