svn commit: r404416 - in head/devel: . py-wrapt

Marcus von Appen mva at FreeBSD.org
Fri Dec 25 12:14:38 UTC 2015


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 at FreeBSD.org
+COMMENT=	Decorators, wrappers and monkey patching
+
+LICENSE=	BSD2CLAUSE
+
+USES=		python
+USE_PYTHON=	autoplist distutils
+
+.include <bsd.port.mk>

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


More information about the svn-ports-head mailing list