Received: by mail.netbsd.org (Postfix, from userid 605) id 39BAA85594; Tue, 31 Oct 2017 12:51:25 +0000 (UTC) Received: from localhost (localhost [127.0.0.1]) by mail.netbsd.org (Postfix) with ESMTP id B9CF484D5F for ; Tue, 31 Oct 2017 12:51:24 +0000 (UTC) X-Virus-Scanned: amavisd-new at netbsd.org Received: from mail.netbsd.org ([127.0.0.1]) by localhost (mail.netbsd.org [127.0.0.1]) (amavisd-new, port 10025) with ESMTP id bAuRerdg8KmX for ; Tue, 31 Oct 2017 12:51:24 +0000 (UTC) Received: from cvs.NetBSD.org (ivanova.netbsd.org [199.233.217.197]) by mail.netbsd.org (Postfix) with ESMTP id 0426884D20 for ; Tue, 31 Oct 2017 12:51:24 +0000 (UTC) Received: by cvs.NetBSD.org (Postfix, from userid 500) id F304AFBDE; Tue, 31 Oct 2017 12:51:23 +0000 (UTC) Content-Transfer-Encoding: 7bit Content-Type: multipart/mixed; boundary="_----------=_1509454283191140" MIME-Version: 1.0 Date: Tue, 31 Oct 2017 12:51:23 +0000 From: "Adam Ciarcinski" Subject: CVS commit: pkgsrc/devel/py-astor To: pkgsrc-changes@NetBSD.org Reply-To: adam@netbsd.org X-Mailer: log_accum Message-Id: <20171031125123.F304AFBDE@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. --_----------=_1509454283191140 Content-Disposition: inline Content-Transfer-Encoding: 8bit Content-Type: text/plain; charset="US-ASCII" Module Name: pkgsrc Committed By: adam Date: Tue Oct 31 12:51:23 UTC 2017 Modified Files: pkgsrc/devel/py-astor: Makefile PLIST distinfo Log Message: py-astor: updated to 0.6 0.6: New features * New astor.rtrip command-line tool to test round-tripping of Python source to AST and back to source. (Contributed by Patrick Maupin.) * New pretty printer outputs much better looking code: . Remove parentheses where not necessary . Use triple-quoted strings where it makes sense . Add placeholder for function to do nice line wrapping on output * Additional Python 3.5 support: - Additional unpacking generalizations (PEP 448) . Async and await (PEP 492) * Added Python 3.6 feature support: . f-strings (PEP 498) . async comprehensions (PEP 530) . variable annotations (PEP 526) * Code cleanup, including renaming for PEP8 and deprecation of old names. See :ref:`deprecations` for more information. Bug fixes * Don't put trailing comma-spaces in dictionaries. astor will now create {'three': 3} instead of {'three': 3, }. * Fixed several bugs in code generation. To generate a diff of this commit: cvs rdiff -u -r1.6 -r1.7 pkgsrc/devel/py-astor/Makefile cvs rdiff -u -r1.1 -r1.2 pkgsrc/devel/py-astor/PLIST cvs rdiff -u -r1.5 -r1.6 pkgsrc/devel/py-astor/distinfo Please note that diffs are not public domain; they are subject to the copyright notices on the relevant files. --_----------=_1509454283191140 Content-Disposition: inline Content-Length: 3599 Content-Transfer-Encoding: binary Content-Type: text/x-diff; charset=us-ascii Modified files: Index: pkgsrc/devel/py-astor/Makefile diff -u pkgsrc/devel/py-astor/Makefile:1.6 pkgsrc/devel/py-astor/Makefile:1.7 --- pkgsrc/devel/py-astor/Makefile:1.6 Sat Sep 16 19:26:47 2017 +++ pkgsrc/devel/py-astor/Makefile Tue Oct 31 12:51:23 2017 @@ -1,12 +1,12 @@ -# $NetBSD: Makefile,v 1.6 2017/09/16 19:26:47 wiz Exp $ +# $NetBSD: Makefile,v 1.7 2017/10/31 12:51:23 adam Exp $ -DISTNAME= astor-0.5 +DISTNAME= astor-0.6 PKGNAME= ${PYPKGPREFIX}-${DISTNAME} CATEGORIES= devel python MASTER_SITES= ${MASTER_SITE_PYPI:=a/astor/} MAINTAINER= pkgsrc-users@NetBSD.org -HOMEPAGE= https://github.com/pmaupin/astor +HOMEPAGE= https://github.com/berkerpeksag/astor COMMENT= Read/rewrite/write Python ASTs LICENSE= 2-clause-bsd Index: pkgsrc/devel/py-astor/PLIST diff -u pkgsrc/devel/py-astor/PLIST:1.1 pkgsrc/devel/py-astor/PLIST:1.2 --- pkgsrc/devel/py-astor/PLIST:1.1 Sun May 18 03:22:03 2014 +++ pkgsrc/devel/py-astor/PLIST Tue Oct 31 12:51:23 2017 @@ -1,4 +1,4 @@ -@comment $NetBSD: PLIST,v 1.1 2014/05/18 03:22:03 rodent Exp $ +@comment $NetBSD: PLIST,v 1.2 2017/10/31 12:51:23 adam Exp $ ${PYSITELIB}/${EGG_INFODIR}/PKG-INFO ${PYSITELIB}/${EGG_INFODIR}/SOURCES.txt ${PYSITELIB}/${EGG_INFODIR}/dependency_links.txt @@ -6,15 +6,30 @@ ${PYSITELIB}/${EGG_INFODIR}/top_level.tx ${PYSITELIB}/astor/__init__.py ${PYSITELIB}/astor/__init__.pyc ${PYSITELIB}/astor/__init__.pyo -${PYSITELIB}/astor/codegen.py -${PYSITELIB}/astor/codegen.pyc -${PYSITELIB}/astor/codegen.pyo -${PYSITELIB}/astor/misc.py -${PYSITELIB}/astor/misc.pyc -${PYSITELIB}/astor/misc.pyo -${PYSITELIB}/astor/treewalk.py -${PYSITELIB}/astor/treewalk.pyc -${PYSITELIB}/astor/treewalk.pyo +${PYSITELIB}/astor/code_gen.py +${PYSITELIB}/astor/code_gen.pyc +${PYSITELIB}/astor/code_gen.pyo +${PYSITELIB}/astor/file_util.py +${PYSITELIB}/astor/file_util.pyc +${PYSITELIB}/astor/file_util.pyo +${PYSITELIB}/astor/node_util.py +${PYSITELIB}/astor/node_util.pyc +${PYSITELIB}/astor/node_util.pyo +${PYSITELIB}/astor/op_util.py +${PYSITELIB}/astor/op_util.pyc +${PYSITELIB}/astor/op_util.pyo +${PYSITELIB}/astor/rtrip.py +${PYSITELIB}/astor/rtrip.pyc +${PYSITELIB}/astor/rtrip.pyo +${PYSITELIB}/astor/source_repr.py +${PYSITELIB}/astor/source_repr.pyc +${PYSITELIB}/astor/source_repr.pyo +${PYSITELIB}/astor/string_repr.py +${PYSITELIB}/astor/string_repr.pyc +${PYSITELIB}/astor/string_repr.pyo +${PYSITELIB}/astor/tree_walk.py +${PYSITELIB}/astor/tree_walk.pyc +${PYSITELIB}/astor/tree_walk.pyo ${PYSITELIB}/setuputils.py ${PYSITELIB}/setuputils.pyc ${PYSITELIB}/setuputils.pyo Index: pkgsrc/devel/py-astor/distinfo diff -u pkgsrc/devel/py-astor/distinfo:1.5 pkgsrc/devel/py-astor/distinfo:1.6 --- pkgsrc/devel/py-astor/distinfo:1.5 Tue Nov 3 03:29:04 2015 +++ pkgsrc/devel/py-astor/distinfo Tue Oct 31 12:51:23 2017 @@ -1,6 +1,6 @@ -$NetBSD: distinfo,v 1.5 2015/11/03 03:29:04 agc Exp $ +$NetBSD: distinfo,v 1.6 2017/10/31 12:51:23 adam Exp $ -SHA1 (astor-0.5.tar.gz) = ec9b78ac901a857e62574fa4b262dc52b0ecce87 -RMD160 (astor-0.5.tar.gz) = d204d3ddc43d3a4388382a885742fc8a504416ab -SHA512 (astor-0.5.tar.gz) = 7c940371a6c3ddbc4a6691edb6ee17eef61436912bb873c5c0cba4f3865c9d4f8e077674b14ccc7e319b749898782aaf87e085eedd9ba7f8638130deb67f549b -Size (astor-0.5.tar.gz) = 10999 bytes +SHA1 (astor-0.6.tar.gz) = 40f3b2e18d00975f5a36f023c19f6221b5d43e42 +RMD160 (astor-0.6.tar.gz) = 9ee21e2aa222be09344515beee7bac0a152c0293 +SHA512 (astor-0.6.tar.gz) = 4f9598229f8a77901573fa1841716cc810ec8e108b155d8c7c50ab477d794f8ecd1784df66a1272a2739cc968d8eb6632f62b4d6ef067682db05233f127be409 +Size (astor-0.6.tar.gz) = 28684 bytes --_----------=_1509454283191140--