aboutsummaryrefslogtreecommitdiff
path: root/dev-python/cached-property
diff options
context:
space:
mode:
authorAutumn <git@autumnfo.rest>2026-04-24 20:09:45 +0100
committerAutumn <git@autumnfo.rest>2026-04-24 20:09:45 +0100
commit822b86e1f35cce6071cd3cc23c20c4c838759092 (patch)
tree46b4b5bf68953b97b133f0259b83aeaaec5565c4 /dev-python/cached-property
parent52166c4d8087326aa2d10cd8b2e460d16a03fae5 (diff)
[dev-python/cached-property] added cached-property 2.0.1
Diffstat (limited to 'dev-python/cached-property')
-rw-r--r--dev-python/cached-property/Manifest1
-rw-r--r--dev-python/cached-property/cached-property-2.0.1.ebuild30
2 files changed, 31 insertions, 0 deletions
diff --git a/dev-python/cached-property/Manifest b/dev-python/cached-property/Manifest
new file mode 100644
index 0000000..e926f73
--- /dev/null
+++ b/dev-python/cached-property/Manifest
@@ -0,0 +1 @@
+DIST cached-property-2.0.1.tar.gz 11315 BLAKE2B 1ae2d3d8ef07558e34354bc0eb2c282e84d067cc44e5da6883d08789d5ec4052a6756a0177e06515f47eb75b3303d41e6681821c5f2b398671529618cc9f1dca SHA512 9dbb5bf5ea33a0da1eb60e138884ee69e2412922bdfbc61b267ca2cb740a937ea390945975dca79a061c1ad6c87e9ca44dda7b32fecf9c65bb3928fed3f0131b
diff --git a/dev-python/cached-property/cached-property-2.0.1.ebuild b/dev-python/cached-property/cached-property-2.0.1.ebuild
new file mode 100644
index 0000000..7b6f037
--- /dev/null
+++ b/dev-python/cached-property/cached-property-2.0.1.ebuild
@@ -0,0 +1,30 @@
+#
+# ~~~ dev-python/cached-property
+#
+# ~~~ a decorator for caching properties in classes
+#
+
+#
+# ~~~ metadata
+
+# portage info
+EAPI=8
+SLOT=0
+
+KEYWORDS="amd64"
+
+# info
+HOMEPAGE="https://github.com/pydanny/cached-property/"
+DESCRIPTION="A decorator for caching properties in classes"
+
+# package data
+SRC_URI="https://github.com/pydanny/cached-property/archive/refs/tags/${PV}.tar.gz -> ${P}.tar.gz"
+
+#
+# ~~~ dependencies
+
+# python setup
+DISTUTILS_USE_PEP517="setuptools"
+PYTHON_COMPAT=( python3_{8..14} )
+
+inherit distutils-r1