Date: Wed, 30 Aug 2017 00:15:45 +0000 (UTC) From: Jose Alonso Cardenas Marquez <acm@FreeBSD.org> To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r448948 - in head/devel: . py-lazr.delegates Message-ID: <201708300015.v7U0Fj2q013498@repo.freebsd.org>
next in thread | raw e-mail | index | archive | help
Author: acm Date: Wed Aug 30 00:15:45 2017 New Revision: 448948 URL: https://svnweb.freebsd.org/changeset/ports/448948 Log: - New port: devel/py-lazr.delegates The lazr.delegates package makes it easy to write objects that delegate behavior to another object. The new object adds some property or behavior on to the other object, while still providing the underlying interface, and delegating behavior. WWW: https://launchpad.net/lazr.delegates Added: head/devel/py-lazr.delegates/ head/devel/py-lazr.delegates/Makefile (contents, props changed) head/devel/py-lazr.delegates/distinfo (contents, props changed) head/devel/py-lazr.delegates/pkg-descr (contents, props changed) Modified: head/devel/Makefile Modified: head/devel/Makefile ============================================================================== --- head/devel/Makefile Wed Aug 30 00:12:23 2017 (r448947) +++ head/devel/Makefile Wed Aug 30 00:15:45 2017 (r448948) @@ -4494,6 +4494,7 @@ SUBDIR += py-kjbuckets SUBDIR += py-kqueue SUBDIR += py-krosspython + SUBDIR += py-lazr.delegates SUBDIR += py-lazy SUBDIR += py-lazy-object-proxy SUBDIR += py-levenshtein Added: head/devel/py-lazr.delegates/Makefile ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/devel/py-lazr.delegates/Makefile Wed Aug 30 00:15:45 2017 (r448948) @@ -0,0 +1,20 @@ +# $FreeBSD$ + +PORTNAME= lazr.delegates +PORTVERSION= 2.0.3 +CATEGORIES= devel python +MASTER_SITES= CHEESESHOP +PKGNAMEPREFIX= ${PYTHON_PKGNAMEPREFIX} + +MAINTAINER= acm@FreeBSD.org +COMMENT= Easily write objects that delegate behavior + +LICENSE= APACHE20 + +RUN_DEPENDS= ${PYTHON_PKGNAMEPREFIX}zope.interface>=0:devel/py-zope.interface \ + ${PYTHON_PKGNAMEPREFIX}nose>=1.3.7:devel/py-nose + +USES= python:3 +USE_PYTHON= autoplist distutils + +.include <bsd.port.mk> Added: head/devel/py-lazr.delegates/distinfo ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/devel/py-lazr.delegates/distinfo Wed Aug 30 00:15:45 2017 (r448948) @@ -0,0 +1,3 @@ +TIMESTAMP = 1503368711 +SHA256 (lazr.delegates-2.0.3.tar.gz) = 51c80d5ac2c1f8f4a8c75fa271646529c8a6393a0b088dab50fb62138d092ee9 +SIZE (lazr.delegates-2.0.3.tar.gz) = 14039 Added: head/devel/py-lazr.delegates/pkg-descr ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/devel/py-lazr.delegates/pkg-descr Wed Aug 30 00:15:45 2017 (r448948) @@ -0,0 +1,6 @@ +The lazr.delegates package makes it easy to write objects that delegate +behavior to another object. The new object adds some property or behavior on +to the other object, while still providing the underlying interface, and +delegating behavior. + +WWW: https://launchpad.net/lazr.delegates
Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?201708300015.v7U0Fj2q013498>