devel/py-lru-dict: Import version 1.1.6
A fixed size dict like container which evicts Least Recently Used (LRU) items once size limit is exceeded. There are many python implementations available which does similar things. This is a fast and efficient C implementation. LRU maximum capacity can be modified at run-time.
This commit is contained in:
parent
be49e02907
commit
64e4fb8cc0
4 changed files with 33 additions and 0 deletions
5
devel/py-lru-dict/DESCR
Normal file
5
devel/py-lru-dict/DESCR
Normal file
|
@ -0,0 +1,5 @@
|
|||
A fixed size dict like container which evicts Least Recently Used
|
||||
(LRU) items once size limit is exceeded. There are many python
|
||||
implementations available which does similar things. This is a fast
|
||||
and efficient C implementation. LRU maximum capacity can be modified
|
||||
at run-time.
|
16
devel/py-lru-dict/Makefile
Normal file
16
devel/py-lru-dict/Makefile
Normal file
|
@ -0,0 +1,16 @@
|
|||
# $NetBSD: Makefile,v 1.1 2017/11/27 23:28:37 minskim Exp $
|
||||
|
||||
DISTNAME= lru-dict-1.1.6
|
||||
PKGNAME= ${PYPKGPREFIX}-${DISTNAME}
|
||||
CATEGORIES= devel python
|
||||
MASTER_SITES= ${MASTER_SITE_PYPI:=l/lru-dict/}
|
||||
|
||||
MAINTAINER= minskim@NetBSD.org
|
||||
HOMEPAGE= https://github.com/amitdev/lru-dict
|
||||
COMMENT= Dict-like LRU container
|
||||
LICENSE= mit
|
||||
|
||||
USE_LANGUAGES= c
|
||||
|
||||
.include "../../lang/python/egg.mk"
|
||||
.include "../../mk/bsd.pkg.mk"
|
6
devel/py-lru-dict/PLIST
Normal file
6
devel/py-lru-dict/PLIST
Normal file
|
@ -0,0 +1,6 @@
|
|||
@comment $NetBSD: PLIST,v 1.1 2017/11/27 23:28:37 minskim Exp $
|
||||
${PYSITELIB}/lru.so
|
||||
${PYSITELIB}/${EGG_INFODIR}/PKG-INFO
|
||||
${PYSITELIB}/${EGG_INFODIR}/SOURCES.txt
|
||||
${PYSITELIB}/${EGG_INFODIR}/dependency_links.txt
|
||||
${PYSITELIB}/${EGG_INFODIR}/top_level.txt
|
6
devel/py-lru-dict/distinfo
Normal file
6
devel/py-lru-dict/distinfo
Normal file
|
@ -0,0 +1,6 @@
|
|||
$NetBSD: distinfo,v 1.1 2017/11/27 23:28:37 minskim Exp $
|
||||
|
||||
SHA1 (lru-dict-1.1.6.tar.gz) = c3f5743617f097132b231b0ba15725ab63a788da
|
||||
RMD160 (lru-dict-1.1.6.tar.gz) = c970d786bf6fc51728bd1a1d6599b3f57aa31663
|
||||
SHA512 (lru-dict-1.1.6.tar.gz) = 3e9ef734ba1dbf4914e1e133063e170038f89884f5ebfe2fd80b949f866e92d16e76b4dc833f73330438dc8b6c48ba4c285a0d6eda65d21d42da3887fd344395
|
||||
Size (lru-dict-1.1.6.tar.gz) = 9434 bytes
|
Loading…
Reference in a new issue