add lru-dict-1.2.0
This commit is contained in:
@@ -1,3 +1,5 @@
|
||||
DIST lru-dict-1.1.8.tar.gz 10921 BLAKE2B 792e3cde60779ec377f1912edbf557910ffbd581bfa9678a8994046e24c8b6708d2acded8a7ddd5933a33db479e2983d70a08353f1b737e748bd6ea23fcbfb50 SHA512 df1fc927b62a755bbf324a9f95c19eeb97d1bb555f0dc134e774bb7400dab4fda84ec1f667385d8883747d434d71c6b5cb6f9b07ca4ac0f37eb7b07f9a848ac7
|
||||
DIST lru-dict-1.2.0.tar.gz 10895 BLAKE2B 885ff779dcc2c7324ad0b8ce2b031617d4c4214fd5e981dcdc10debe3c4d5a20612e12bfe2ba7974e3e6ea9a43118ae42064a7f987ec44846263692f8e022f53 SHA512 2c96c65a6258023fc0af112e680f41ad28f544b547986230c968e3d429aea3cfcd8e1c8ae912268edb686f00d8164bcfbba6addaaf4586f9d6157dddb53ce970
|
||||
EBUILD lru-dict-1.1.8.ebuild 639 BLAKE2B 6aba4c122148e111c120b2d4d8c5257a59dc2bbc76ada7eb84f1fbae67548df175f7eb0238d25c4f4b030360715242fef7664abbd4d36b190c251352c309cc76 SHA512 189f913368635fecf8964080abc36e2600b4b0d4eb56af806da1910a2011f90e1477f42a5d64f346b502212719e885b9f4229bbbbcbdfa2aab26d8d026d74406
|
||||
EBUILD lru-dict-1.2.0.ebuild 639 BLAKE2B 6aba4c122148e111c120b2d4d8c5257a59dc2bbc76ada7eb84f1fbae67548df175f7eb0238d25c4f4b030360715242fef7664abbd4d36b190c251352c309cc76 SHA512 189f913368635fecf8964080abc36e2600b4b0d4eb56af806da1910a2011f90e1477f42a5d64f346b502212719e885b9f4229bbbbcbdfa2aab26d8d026d74406
|
||||
MISC metadata.xml 385 BLAKE2B f6e09bc4307cbf0774d75534b80cb944b439610091bb67f4966da3aeb95c8f2b769ecfd5a0c707363dbf3ad935c843b8686a8ab9c780630dc8beb115cae0a649 SHA512 5f884b8e5a035f78faa70ad129822ba99fc72a2cc9d95e51322014251b837ae9ed379e418ee0c419ee0781c18a27aae8e9aa51562aae20f6a1d6e603ab8d91ff
|
||||
|
||||
32
dev-python/lru-dict/lru-dict-1.2.0.ebuild
Normal file
32
dev-python/lru-dict/lru-dict-1.2.0.ebuild
Normal file
@@ -0,0 +1,32 @@
|
||||
# Copyright 1999-2023 Gentoo Authors
|
||||
# Distributed under the terms of the GNU General Public License v2
|
||||
|
||||
EAPI=8
|
||||
|
||||
PYTHON_COMPAT=( python3_{10..12} )
|
||||
DISTUTILS_USE_PEP517=setuptools
|
||||
PYPI_NO_NORMALIZE=1
|
||||
inherit distutils-r1 pypi
|
||||
|
||||
DESCRIPTION="An Dict like LRU container."
|
||||
HOMEPAGE="https://github.com/amitdev/lru-dict https://pypi.org/project/lru-dict/"
|
||||
|
||||
LICENSE="MIT"
|
||||
SLOT="0"
|
||||
KEYWORDS="amd64 arm arm64 x86"
|
||||
IUSE="test"
|
||||
RESTRICT="!test? ( test )"
|
||||
|
||||
DOCS="README.rst"
|
||||
|
||||
BDEPEND="
|
||||
dev-python/setuptools[${PYTHON_USEDEP}]
|
||||
test? (
|
||||
dev-python/pytest[${PYTHON_USEDEP}]
|
||||
)"
|
||||
|
||||
python_test() {
|
||||
py.test -v -v || die
|
||||
}
|
||||
|
||||
distutils_enable_tests pytest
|
||||
Reference in New Issue
Block a user