commit: 404466fc71d06b9282499dfb9609916e8c8af576
Author: Anna (cybertailor) Vyalkova <cyber+gentoo <AT> sysrq <DOT> in>
AuthorDate: Thu Nov 6 15:03:58 2025 +0000
Commit: Anna Vyalkova <cyber+gentoo <AT> sysrq <DOT> in>
CommitDate: Thu Nov 6 16:52:09 2025 +0000
URL: https://gitweb.gentoo.org/repo/proj/guru.git/commit/?id=404466fc
dev-python/lru-dict: add 1.4.1
Signed-off-by: Anna (cybertailor) Vyalkova <cyber+gentoo <AT> sysrq.in>
dev-python/lru-dict/Manifest | 1 +
dev-python/lru-dict/lru-dict-1.4.1.ebuild | 26 ++++++++++++++++++++++++++
2 files changed, 27 insertions(+)
diff --git a/dev-python/lru-dict/Manifest b/dev-python/lru-dict/Manifest
index d22ee8d5fd..d81b348353 100644
--- a/dev-python/lru-dict/Manifest
+++ b/dev-python/lru-dict/Manifest
@@ -1 +1,2 @@
DIST lru-dict-1.3.0.tar.gz 13123 BLAKE2B
705fb47e2f8564e5aea43d2a9a08b834e2f645dd78e6604896b159aceb75d71bf88c138fb2db746808b0d901e18d206c09181997f2a7366264d91bd412856d10
SHA512
c5db55f7808ce404a71990546a40c26a9c46c3edff475cf5c0cb5082c5527793c41c517a2d615145f4733c6f39b988775f2092f55b58ea54a8e6830a66bbaf5a
+DIST lru_dict-1.4.1.tar.gz 13439 BLAKE2B
7d110828696b56bf61beed5ecb672660d41fef5736e98996febd4786f91874c3f7fc58c2f4e03bace51c70214edbf16e5c5af822570030a2063ea71cbb255a32
SHA512
fd4328c78a19c026c5b239b87561d989be1fc25e76a09158df9437dd1963148968b615bf24971c2595abab379276cc142793e0608f33500fc0ee3488226cd82b
diff --git a/dev-python/lru-dict/lru-dict-1.4.1.ebuild
b/dev-python/lru-dict/lru-dict-1.4.1.ebuild
new file mode 100644
index 0000000000..e8febc0428
--- /dev/null
+++ b/dev-python/lru-dict/lru-dict-1.4.1.ebuild
@@ -0,0 +1,26 @@
+# Copyright 2024-2025 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=8
+
+DISTUTILS_USE_PEP517=setuptools
+DISTUTILS_EXT=1
+PYTHON_COMPAT=( python3_{11..14} pypy3_11 )
+inherit distutils-r1 pypi
+
+DESCRIPTION="Dict like LRU container"
+HOMEPAGE="
+ https://pypi.org/project/lru-dict/
+ https://github.com/amitdev/lru-dict
+"
+
+LICENSE="MIT"
+SLOT="0"
+KEYWORDS="~amd64"
+
+distutils_enable_tests unittest
+
+python_test() {
+ cd "${T}" || die
+ eunittest "${S}"/test
+}