svn commit: r404433 - in head/devel: . py-funcsigs

Martin Wilke miwi at FreeBSD.org
Fri Dec 25 16:28:24 UTC 2015


Author: miwi
Date: Fri Dec 25 16:28:22 2015
New Revision: 404433
URL: https://svnweb.freebsd.org/changeset/ports/404433

Log:
  funcsigs is a backport of the PEP 362 function signature features from
  Python 3.3's inspect module. The backport is compatible with Python 2.7
  as well as 3.2 and up.
  
  WWW: http://funcsigs.readthedocs.org/

Added:
  head/devel/py-funcsigs/
  head/devel/py-funcsigs/Makefile   (contents, props changed)
  head/devel/py-funcsigs/distinfo   (contents, props changed)
  head/devel/py-funcsigs/pkg-descr   (contents, props changed)
Modified:
  head/devel/Makefile

Modified: head/devel/Makefile
==============================================================================
--- head/devel/Makefile	Fri Dec 25 15:57:54 2015	(r404432)
+++ head/devel/Makefile	Fri Dec 25 16:28:22 2015	(r404433)
@@ -4040,6 +4040,7 @@
     SUBDIR += py-fsm
     SUBDIR += py-fudge
     SUBDIR += py-funcparserlib
+    SUBDIR += py-funcsigs
     SUBDIR += py-functools32
     SUBDIR += py-fusefs
     SUBDIR += py-future

Added: head/devel/py-funcsigs/Makefile
==============================================================================
--- /dev/null	00:00:00 1970	(empty, because file is newly added)
+++ head/devel/py-funcsigs/Makefile	Fri Dec 25 16:28:22 2015	(r404433)
@@ -0,0 +1,22 @@
+# Created by: Martin Wilke <miwi at FreeBSD.org>
+# $FreeBSD$
+
+PORTNAME=	funcsigs
+PORTVERSION=	0.4
+CATEGORIES=	devel python
+MASTER_SITES=	CHEESESHOP
+PKGNAMEPREFIX=	${PYTHON_PKGNAMEPREFIX}
+
+MAINTAINER=	miwi at FreeBSD.org
+COMMENT=	Python function signatures from PEP362
+
+LICENSE=	APACHE20
+LICENSE_FILE=	${WRKSRC}/LICENSE
+
+USES=		python
+USE_PYTHON=	distutils autoplist
+
+do-test:
+	@cd ${WRKSRC} && ${PYTHON_CMD} ${PYDISTUTILS_SETUP} test
+
+.include <bsd.port.mk>

Added: head/devel/py-funcsigs/distinfo
==============================================================================
--- /dev/null	00:00:00 1970	(empty, because file is newly added)
+++ head/devel/py-funcsigs/distinfo	Fri Dec 25 16:28:22 2015	(r404433)
@@ -0,0 +1,2 @@
+SHA256 (funcsigs-0.4.tar.gz) = d83ce6df0b0ea6618700fe1db353526391a8a3ada1b7aba52fed7a61da772033
+SIZE (funcsigs-0.4.tar.gz) = 25697

Added: head/devel/py-funcsigs/pkg-descr
==============================================================================
--- /dev/null	00:00:00 1970	(empty, because file is newly added)
+++ head/devel/py-funcsigs/pkg-descr	Fri Dec 25 16:28:22 2015	(r404433)
@@ -0,0 +1,5 @@
+funcsigs is a backport of the PEP 362 function signature features from
+Python 3.3's inspect module. The backport is compatible with Python 2.7
+as well as 3.2 and up.
+
+WWW: http://funcsigs.readthedocs.org/


More information about the svn-ports-head mailing list