From owner-svn-ports-all@freebsd.org Wed Aug 30 00:15:46 2017 Return-Path: Delivered-To: svn-ports-all@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id A08C5DE961B; Wed, 30 Aug 2017 00:15:46 +0000 (UTC) (envelope-from acm@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 mx1.freebsd.org (Postfix) with ESMTPS id 7B33676F21; Wed, 30 Aug 2017 00:15:46 +0000 (UTC) (envelope-from acm@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id v7U0Fjeh013502; Wed, 30 Aug 2017 00:15:45 GMT (envelope-from acm@FreeBSD.org) Received: (from acm@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id v7U0Fj2q013498; Wed, 30 Aug 2017 00:15:45 GMT (envelope-from acm@FreeBSD.org) Message-Id: <201708300015.v7U0Fj2q013498@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: acm set sender to acm@FreeBSD.org using -f From: Jose Alonso Cardenas Marquez Date: Wed, 30 Aug 2017 00:15:45 +0000 (UTC) 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 X-SVN-Group: ports-head X-SVN-Commit-Author: acm X-SVN-Commit-Paths: in head/devel: . py-lazr.delegates X-SVN-Commit-Revision: 448948 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.23 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: Wed, 30 Aug 2017 00:15:46 -0000 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 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