svn commit: r432468 - in head/devel: . py-typed-ast

David Naylor dbn at FreeBSD.org
Thu Jan 26 06:18:31 UTC 2017


Author: dbn
Date: Thu Jan 26 06:18:29 2017
New Revision: 432468
URL: https://svnweb.freebsd.org/changeset/ports/432468

Log:
  devel/py-typed-ast: add new port.
  
  Typed AST is a fork of the CPython 2.7 and 3.5 ast modules with the ability to
  parse PEP 484 type comments. The primary goals of Typed ASP are correctness and
  speed.
  
  PR:		209871

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

Modified: head/devel/Makefile
==============================================================================
--- head/devel/Makefile	Thu Jan 26 03:02:55 2017	(r432467)
+++ head/devel/Makefile	Thu Jan 26 06:18:29 2017	(r432468)
@@ -4721,6 +4721,7 @@
     SUBDIR += py-twistedFlow
     SUBDIR += py-twistedRunner
     SUBDIR += py-txaio
+    SUBDIR += py-typed-asp
     SUBDIR += py-typing
     SUBDIR += py-tzlocal
     SUBDIR += py-ua_parser

Added: head/devel/py-typed-ast/Makefile
==============================================================================
--- /dev/null	00:00:00 1970	(empty, because file is newly added)
+++ head/devel/py-typed-ast/Makefile	Thu Jan 26 06:18:29 2017	(r432468)
@@ -0,0 +1,20 @@
+# Created by: David Naylor <dbn at FreeBSD.org>
+# $FreeBSD$
+
+PORTNAME=	typed-ast
+PORTVERSION=	0.6.3
+CATEGORIES=	devel python
+MASTER_SITES=	CHEESESHOP
+PKGNAMEPREFIX=	${PYTHON_PKGNAMEPREFIX}
+
+MAINTAINER=	dbn at FreeBSD.org
+COMMENT=	Fast version of Python's ast module with support for PEP484 typed comments
+
+LICENSE=	MIT PSFL
+LICENSE_COMB=	multi
+LICENSE_FILE=	${WRKSRC}/LICENSE
+
+USES=		python:3.3+
+USE_PYTHON=	autoplist distutils concurrent
+
+.include <bsd.port.mk>

Added: head/devel/py-typed-ast/distinfo
==============================================================================
--- /dev/null	00:00:00 1970	(empty, because file is newly added)
+++ head/devel/py-typed-ast/distinfo	Thu Jan 26 06:18:29 2017	(r432468)
@@ -0,0 +1,3 @@
+TIMESTAMP = 1485410942
+SHA256 (typed-ast-0.6.3.tar.gz) = d41a1856c882a51e398ad9972c9a7964b2f5e210317088382a419b5183544a29
+SIZE (typed-ast-0.6.3.tar.gz) = 190520

Added: head/devel/py-typed-ast/pkg-descr
==============================================================================
--- /dev/null	00:00:00 1970	(empty, because file is newly added)
+++ head/devel/py-typed-ast/pkg-descr	Thu Jan 26 06:18:29 2017	(r432468)
@@ -0,0 +1,5 @@
+Typed AST is a fork of the CPython 2.7 and 3.5 ast modules with the ability to
+parse PEP 484 type comments. The primary goals of Typed ASP are correctness and
+speed.
+
+WWW: https://github.com/python/typed_ast


More information about the svn-ports-head mailing list