Index: head/devel/py-lazy/Makefile =================================================================== --- head/devel/py-lazy/Makefile (revision 476560) +++ head/devel/py-lazy/Makefile (revision 476561) @@ -1,21 +1,24 @@ # Created by: Kubilay Kocak # $FreeBSD$ PORTNAME= lazy -PORTVERSION= 1.2 +PORTVERSION= 1.3 CATEGORIES= devel python MASTER_SITES= CHEESESHOP PKGNAMEPREFIX= ${PYTHON_PKGNAMEPREFIX} MAINTAINER= koobs@FreeBSD.org COMMENT= Lazy attributes for Python objects LICENSE= BSD2CLAUSE +LICENSE_FILE= ${WRKSRC}/LICENSE USES= python zip USE_PYTHON= distutils autoplist + +NO_ARCH= yes do-test: @cd ${WRKSRC} && ${PYTHON_CMD} ${PYSETUP} test .include Index: head/devel/py-lazy/distinfo =================================================================== --- head/devel/py-lazy/distinfo (revision 476560) +++ head/devel/py-lazy/distinfo (revision 476561) @@ -1,2 +1,3 @@ -SHA256 (lazy-1.2.zip) = 127ea610418057b953f0d102bed83f2c367be13b59f8d0ddf3b8a86c7d31b970 -SIZE (lazy-1.2.zip) = 14380 +TIMESTAMP = 1533610709 +SHA256 (lazy-1.3.zip) = c80a77bf7106ba7b27378759900cfefef38271088dc63b014bcfe610c8e68e3d +SIZE (lazy-1.3.zip) = 15996 Index: head/devel/py-lazy/pkg-descr =================================================================== --- head/devel/py-lazy/pkg-descr (revision 476560) +++ head/devel/py-lazy/pkg-descr (revision 476561) @@ -1,5 +1,5 @@ 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.org/project/lazy/ +WWW: https://github.com/stefanholek/lazy