From owner-svn-ports-head@freebsd.org Fri Dec 25 12:14:38 2015 Return-Path: Delivered-To: svn-ports-head@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 CDD6EA52059; Fri, 25 Dec 2015 12:14:38 +0000 (UTC) (envelope-from mva@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 8057619A0; Fri, 25 Dec 2015 12:14:38 +0000 (UTC) (envelope-from mva@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id tBPCEb9w073926; Fri, 25 Dec 2015 12:14:37 GMT (envelope-from mva@FreeBSD.org) Received: (from mva@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id tBPCEbDW073922; Fri, 25 Dec 2015 12:14:37 GMT (envelope-from mva@FreeBSD.org) Message-Id: <201512251214.tBPCEbDW073922@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: mva set sender to mva@FreeBSD.org using -f From: Marcus von Appen Date: Fri, 25 Dec 2015 12:14:37 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r404416 - in head/devel: . py-wrapt X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.20 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 25 Dec 2015 12:14:38 -0000 Author: mva Date: Fri Dec 25 12:14:37 2015 New Revision: 404416 URL: https://svnweb.freebsd.org/changeset/ports/404416 Log: The aim of the wrapt module is to provide a transparent object proxy for Python, which can be used as the basis for the construction of function wrappers and decorator functions. WWW: https://github.com/GrahamDumpleton/wrapt Added: head/devel/py-wrapt/ head/devel/py-wrapt/Makefile (contents, props changed) head/devel/py-wrapt/distinfo (contents, props changed) head/devel/py-wrapt/pkg-descr (contents, props changed) Modified: head/devel/Makefile Modified: head/devel/Makefile ============================================================================== --- head/devel/Makefile Fri Dec 25 12:13:04 2015 (r404415) +++ head/devel/Makefile Fri Dec 25 12:14:37 2015 (r404416) @@ -4400,6 +4400,7 @@ SUBDIR += py-wcwidth SUBDIR += py-weblib SUBDIR += py-wheel + SUBDIR += py-wrapt SUBDIR += py-wsgi_xmlrpc SUBDIR += py-wsgitools SUBDIR += py-wsgiutils Added: head/devel/py-wrapt/Makefile ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/devel/py-wrapt/Makefile Fri Dec 25 12:14:37 2015 (r404416) @@ -0,0 +1,17 @@ +# $FreeBSD$ + +PORTNAME= wrapt +PORTVERSION= 1.10.6 +CATEGORIES= devel python +MASTER_SITES= CHEESESHOP +PKGNAMEPREFIX= ${PYTHON_PKGNAMEPREFIX} + +MAINTAINER= mva@FreeBSD.org +COMMENT= Decorators, wrappers and monkey patching + +LICENSE= BSD2CLAUSE + +USES= python +USE_PYTHON= autoplist distutils + +.include Added: head/devel/py-wrapt/distinfo ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/devel/py-wrapt/distinfo Fri Dec 25 12:14:37 2015 (r404416) @@ -0,0 +1,2 @@ +SHA256 (wrapt-1.10.6.tar.gz) = 9576869bb74a43cbb36ee39dc3584e6830b8e5c788e83edf0a397eba807734ab +SIZE (wrapt-1.10.6.tar.gz) = 25134 Added: head/devel/py-wrapt/pkg-descr ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/devel/py-wrapt/pkg-descr Fri Dec 25 12:14:37 2015 (r404416) @@ -0,0 +1,5 @@ +The aim of the wrapt module is to provide a transparent object proxy for +Python, which can be used as the basis for the construction of function +wrappers and decorator functions. + +WWW: https://github.com/GrahamDumpleton/wrapt