From owner-svn-ports-all@freebsd.org Thu Jan 26 06:18:31 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 95568CC2C19; Thu, 26 Jan 2017 06:18:31 +0000 (UTC) (envelope-from dbn@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 3CE583EC; Thu, 26 Jan 2017 06:18:31 +0000 (UTC) (envelope-from dbn@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id v0Q6IUJg032581; Thu, 26 Jan 2017 06:18:30 GMT (envelope-from dbn@FreeBSD.org) Received: (from dbn@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id v0Q6ITnK032577; Thu, 26 Jan 2017 06:18:29 GMT (envelope-from dbn@FreeBSD.org) Message-Id: <201701260618.v0Q6ITnK032577@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: dbn set sender to dbn@FreeBSD.org using -f From: David Naylor Date: Thu, 26 Jan 2017 06:18:29 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r432468 - in head/devel: . py-typed-ast X-SVN-Group: ports-head 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: Thu, 26 Jan 2017 06:18:31 -0000 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 +# $FreeBSD$ + +PORTNAME= typed-ast +PORTVERSION= 0.6.3 +CATEGORIES= devel python +MASTER_SITES= CHEESESHOP +PKGNAMEPREFIX= ${PYTHON_PKGNAMEPREFIX} + +MAINTAINER= dbn@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 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