1
0
mirror of https://git.FreeBSD.org/ports.git synced 2024-12-27 05:10:36 +00:00
freebsd-ports/devel/py-lazy/Makefile
Kubilay Kocak f45ac5f904 [NEW] devel/py-lazy: Lazy attributes for Python objects
The lazy module provides a decorator to create lazy attributes. A lazy
attribute is a computed attribute that is evaluated only once, the first
time it is used. Subsequent uses return the results of the first call.

WWW: https://pypi.python.org/pypi/lazy
2014-07-07 05:50:44 +00:00

22 lines
431 B
Makefile

# Created by: Kubilay Kocak <koobs@FreeBSD.org>
# $FreeBSD$
PORTNAME= lazy
PORTVERSION= 1.2
CATEGORIES= devel python
MASTER_SITES= CHEESESHOP
PKGNAMEPREFIX= ${PYTHON_PKGNAMEPREFIX}
MAINTAINER= koobs@FreeBSD.org
COMMENT= Lazy attributes for Python objects
USES= zip
USE_PYTHON= yes
USE_PYDISTUTILS= yes
PYDISTUTILS_AUTOPLIST= yes
regression-test: build
@cd ${WRKSRC} && ${PYTHON_CMD} ${PYSETUP} test
.include <bsd.port.mk>