cd35437744
repoze.lru is a LRU (least recently used) cache implementation. Keys and values that are not used frequently will be evicted from the cache faster than keys and values that are used frequently. ok rpoinel@
29 lines
637 B
Makefile
29 lines
637 B
Makefile
# $OpenBSD: Makefile,v 1.1.1.1 2012/05/01 12:21:17 jasper Exp $
|
|
|
|
COMMENT = tiny LRU cache implementation and decorator
|
|
|
|
MODPY_EGG_VERSION = 0.5
|
|
DISTNAME = repoze.lru-${MODPY_EGG_VERSION}
|
|
PKGNAME = py-${DISTNAME:S/./-/}
|
|
|
|
CATEGORIES = www devel
|
|
|
|
# BSD-derived
|
|
PERMIT_PACKAGE_CDROM = Yes
|
|
PERMIT_PACKAGE_FTP = Yes
|
|
PERMIT_DISTFILES_CDROM = Yes
|
|
PERMIT_DISTFILES_FTP = Yes
|
|
|
|
MASTER_SITES = ${MASTER_SITE_PYPI:=r/repoze.lru/}
|
|
|
|
MODULES = lang/python
|
|
|
|
MODPY_SETUPTOOLS = Yes
|
|
|
|
post-install:
|
|
${INSTALL_DATA_DIR} ${PREFIX}/share/doc/py-repoze-lru
|
|
${INSTALL_DATA} ${WRKSRC}/README.txt \
|
|
${PREFIX}/share/doc/py-repoze-lru
|
|
|
|
.include <bsd.port.mk>
|