Received: by mail.netbsd.org (Postfix, from userid 605) id 5EE9C84EC0; Tue, 22 May 2018 06:23:02 +0000 (UTC) Received: from localhost (localhost [127.0.0.1]) by mail.netbsd.org (Postfix) with ESMTP id 56A6784EC0 for ; Tue, 22 May 2018 06:23:00 +0000 (UTC) X-Virus-Scanned: amavisd-new at netbsd.org Received: from mail.netbsd.org ([IPv6:::1]) by localhost (mail.netbsd.org [IPv6:::1]) (amavisd-new, port 10025) with ESMTP id 6WAf3Mk-n5-0 for ; Tue, 22 May 2018 06:22:59 +0000 (UTC) Received: from cvs.NetBSD.org (ivanova.NetBSD.org [IPv6:2001:470:a085:999:28c:faff:fe03:5984]) by mail.netbsd.org (Postfix) with ESMTP id 6369784EC2 for ; Tue, 22 May 2018 06:22:58 +0000 (UTC) Received: by cvs.NetBSD.org (Postfix, from userid 500) id 81265FBF1; Mon, 21 May 2018 23:14:46 +0000 (UTC) Content-Transfer-Encoding: 7bit Content-Type: multipart/mixed; boundary="_----------=_1526944486262710" MIME-Version: 1.0 Date: Mon, 21 May 2018 23:14:46 +0000 From: "Min Sik Kim" Subject: CVS commit: pkgsrc/devel/py-typed-ast To: pkgsrc-changes@NetBSD.org Reply-To: minskim@netbsd.org X-Mailer: log_accum Message-Id: <20180521231446.81265FBF1@cvs.NetBSD.org> Sender: pkgsrc-changes-owner@NetBSD.org List-Id: pkgsrc-changes.NetBSD.org Precedence: bulk List-Unsubscribe: This is a multi-part message in MIME format. --_----------=_1526944486262710 Content-Disposition: inline Content-Transfer-Encoding: 8bit Content-Type: text/plain; charset="US-ASCII" Module Name: pkgsrc Committed By: minskim Date: Mon May 21 23:14:46 UTC 2018 Added Files: pkgsrc/devel/py-typed-ast: DESCR Makefile PLIST distinfo Log Message: devel/py-typed-ast: Import version 1.1.0 typed_ast is a Python 3 package that provides a Python 2.7 and Python 3 parser similar to the standard ast library. Unlike ast, the parsers in typed_ast include PEP 484 type comments and are independent of the version of Python under which they are run. The typed_ast parsers produce the standard Python AST (plus type comments), and are both fast and correct, as they are based on the CPython 2.7 and 3.6 parsers. To generate a diff of this commit: cvs rdiff -u -r0 -r1.1 pkgsrc/devel/py-typed-ast/DESCR \ pkgsrc/devel/py-typed-ast/Makefile pkgsrc/devel/py-typed-ast/PLIST \ pkgsrc/devel/py-typed-ast/distinfo Please note that diffs are not public domain; they are subject to the copyright notices on the relevant files. --_----------=_1526944486262710 Content-Disposition: inline Content-Length: 2926 Content-Transfer-Encoding: binary Content-Type: text/x-diff; charset=us-ascii Added files: Index: pkgsrc/devel/py-typed-ast/DESCR diff -u /dev/null pkgsrc/devel/py-typed-ast/DESCR:1.1 --- /dev/null Mon May 21 23:14:46 2018 +++ pkgsrc/devel/py-typed-ast/DESCR Mon May 21 23:14:46 2018 @@ -0,0 +1,7 @@ +typed_ast is a Python 3 package that provides a Python 2.7 and Python +3 parser similar to the standard ast library. Unlike ast, the parsers +in typed_ast include PEP 484 type comments and are independent of the +version of Python under which they are run. The typed_ast parsers +produce the standard Python AST (plus type comments), and are both +fast and correct, as they are based on the CPython 2.7 and 3.6 +parsers. Index: pkgsrc/devel/py-typed-ast/Makefile diff -u /dev/null pkgsrc/devel/py-typed-ast/Makefile:1.1 --- /dev/null Mon May 21 23:14:46 2018 +++ pkgsrc/devel/py-typed-ast/Makefile Mon May 21 23:14:46 2018 @@ -0,0 +1,16 @@ +# $NetBSD: Makefile,v 1.1 2018/05/21 23:14:46 minskim Exp $ + +DISTNAME= typed_ast-1.1.0 +PKGNAME= ${PYPKGPREFIX}-${DISTNAME:S/_/-/} +CATEGORIES= devel python +MASTER_SITES= ${MASTER_SITE_GITHUB:=python/} +GITHUB_PROJECT= typed_ast +GITHUB_TAG= ${PKGVERSION_NOREV} + +MAINTAINER= minskim@NetBSD.org +HOMEPAGE= http://mypy-lang.org/ +COMMENT= Optional static typing for Python +LICENSE= apache-2.0 AND python-software-foundation + +.include "../../lang/python/egg.mk" +.include "../../mk/bsd.pkg.mk" Index: pkgsrc/devel/py-typed-ast/PLIST diff -u /dev/null pkgsrc/devel/py-typed-ast/PLIST:1.1 --- /dev/null Mon May 21 23:14:46 2018 +++ pkgsrc/devel/py-typed-ast/PLIST Mon May 21 23:14:46 2018 @@ -0,0 +1,19 @@ +@comment $NetBSD: PLIST,v 1.1 2018/05/21 23:14:46 minskim Exp $ +${PYSITELIB}/${EGG_INFODIR}/PKG-INFO +${PYSITELIB}/${EGG_INFODIR}/SOURCES.txt +${PYSITELIB}/${EGG_INFODIR}/dependency_links.txt +${PYSITELIB}/${EGG_INFODIR}/top_level.txt +${PYSITELIB}/_ast27.so +${PYSITELIB}/_ast3.so +${PYSITELIB}/typed_ast/__init__.py +${PYSITELIB}/typed_ast/__init__.pyc +${PYSITELIB}/typed_ast/__init__.pyo +${PYSITELIB}/typed_ast/ast27.py +${PYSITELIB}/typed_ast/ast27.pyc +${PYSITELIB}/typed_ast/ast27.pyo +${PYSITELIB}/typed_ast/ast3.py +${PYSITELIB}/typed_ast/ast3.pyc +${PYSITELIB}/typed_ast/ast3.pyo +${PYSITELIB}/typed_ast/conversions.py +${PYSITELIB}/typed_ast/conversions.pyc +${PYSITELIB}/typed_ast/conversions.pyo Index: pkgsrc/devel/py-typed-ast/distinfo diff -u /dev/null pkgsrc/devel/py-typed-ast/distinfo:1.1 --- /dev/null Mon May 21 23:14:46 2018 +++ pkgsrc/devel/py-typed-ast/distinfo Mon May 21 23:14:46 2018 @@ -0,0 +1,6 @@ +$NetBSD: distinfo,v 1.1 2018/05/21 23:14:46 minskim Exp $ + +SHA1 (typed_ast-1.1.0.tar.gz) = 5c4404d20c1312c37ebe6ee37b02ab950dfe0afb +RMD160 (typed_ast-1.1.0.tar.gz) = bcf11e8b46c9e1b3a50de9e950d651fbed4f0275 +SHA512 (typed_ast-1.1.0.tar.gz) = 1cde519f6cde535f436066a7f9a78ba9d416457abe995b019b76e49d644ac101a95aa82f6305d762731593648c0faee600e667240baa63a40f36bbfd4ca1bd1f +Size (typed_ast-1.1.0.tar.gz) = 285167 bytes --_----------=_1526944486262710--