From owner-svn-ports-all@freebsd.org Tue Aug 7 03:19:47 2018 Return-Path: Delivered-To: svn-ports-all@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2610:1c1:1:606c::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id CCE5910717C5; Tue, 7 Aug 2018 03:19:47 +0000 (UTC) (envelope-from koobs@FreeBSD.org) Received: from mxrelay.nyi.freebsd.org (mxrelay.nyi.freebsd.org [IPv6:2610:1c1:1:606c::19:3]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client CN "mxrelay.nyi.freebsd.org", Issuer "Let's Encrypt Authority X3" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id 7634D79584; Tue, 7 Aug 2018 03:19:47 +0000 (UTC) (envelope-from koobs@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mxrelay.nyi.freebsd.org (Postfix) with ESMTPS id 575571626A; Tue, 7 Aug 2018 03:19:47 +0000 (UTC) (envelope-from koobs@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id w773JlWw012879; Tue, 7 Aug 2018 03:19:47 GMT (envelope-from koobs@FreeBSD.org) Received: (from koobs@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id w773JkhW012876; Tue, 7 Aug 2018 03:19:46 GMT (envelope-from koobs@FreeBSD.org) Message-Id: <201808070319.w773JkhW012876@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: koobs set sender to koobs@FreeBSD.org using -f From: Kubilay Kocak Date: Tue, 7 Aug 2018 03:19:46 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r476561 - head/devel/py-lazy X-SVN-Group: ports-head X-SVN-Commit-Author: koobs X-SVN-Commit-Paths: head/devel/py-lazy X-SVN-Commit-Revision: 476561 X-SVN-Commit-Repository: ports MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-all@freebsd.org X-Mailman-Version: 2.1.27 Precedence: list List-Id: SVN commit messages for the ports tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 07 Aug 2018 03:19:48 -0000 Author: koobs Date: Tue Aug 7 03:19:46 2018 New Revision: 476561 URL: https://svnweb.freebsd.org/changeset/ports/476561 Log: devel/py-lazy: Update to 1.3 Changelog: https://github.com/stefanholek/lazy/blob/1.3/CHANGES.rst Modified: head/devel/py-lazy/Makefile head/devel/py-lazy/distinfo head/devel/py-lazy/pkg-descr Modified: head/devel/py-lazy/Makefile ============================================================================== --- head/devel/py-lazy/Makefile Tue Aug 7 02:56:04 2018 (r476560) +++ head/devel/py-lazy/Makefile Tue Aug 7 03:19:46 2018 (r476561) @@ -2,7 +2,7 @@ # $FreeBSD$ PORTNAME= lazy -PORTVERSION= 1.2 +PORTVERSION= 1.3 CATEGORIES= devel python MASTER_SITES= CHEESESHOP PKGNAMEPREFIX= ${PYTHON_PKGNAMEPREFIX} @@ -11,9 +11,12 @@ 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 Modified: head/devel/py-lazy/distinfo ============================================================================== --- head/devel/py-lazy/distinfo Tue Aug 7 02:56:04 2018 (r476560) +++ head/devel/py-lazy/distinfo Tue Aug 7 03:19:46 2018 (r476561) @@ -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 Modified: head/devel/py-lazy/pkg-descr ============================================================================== --- head/devel/py-lazy/pkg-descr Tue Aug 7 02:56:04 2018 (r476560) +++ head/devel/py-lazy/pkg-descr Tue Aug 7 03:19:46 2018 (r476561) @@ -2,4 +2,4 @@ The lazy module provides a decorator to create lazy at 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