dev-python/lru-dict: add 1.4.1

Signed-off-by: Anna (cybertailor) Vyalkova <cyber+gentoo@sysrq.in>
This commit is contained in:
Anna (cybertailor) Vyalkova
2025-11-06 20:03:58 +05:00
parent fe3acfc85c
commit 404466fc71
2 changed files with 27 additions and 0 deletions

View File

@@ -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

View File

@@ -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
}