64e4fb8cc0
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 lines
404 B
Makefile
16 lines
404 B
Makefile
# $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"
|