Received: from mail.netbsd.org (mail.netbsd.org [199.233.217.200]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client CN "mail.netbsd.org", Issuer "Postmaster NetBSD.org" (verified OK)) by mollari.NetBSD.org (Postfix) with ESMTPS id 628577A211 for ; Thu, 18 Aug 2016 14:53:26 +0000 (UTC) Received: by mail.netbsd.org (Postfix, from userid 605) id 04DB885ECF; Thu, 18 Aug 2016 14:53:26 +0000 (UTC) Received: from localhost (localhost [127.0.0.1]) by mail.netbsd.org (Postfix) with ESMTP id 8705C85E27 for ; Thu, 18 Aug 2016 14:53:25 +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 PMg0USAZTxAg for ; Thu, 18 Aug 2016 14:53:24 +0000 (UTC) Received: from cvs.NetBSD.org (unknown [IPv6:2001:470:a085:999:28c:faff:fe03:5984]) by mail.netbsd.org (Postfix) with ESMTP id B23E684CF5 for ; Thu, 18 Aug 2016 14:53:24 +0000 (UTC) Received: by cvs.NetBSD.org (Postfix, from userid 500) id A5B97FBC3; Thu, 18 Aug 2016 14:53:24 +0000 (UTC) Content-Transfer-Encoding: 7bit Content-Type: multipart/mixed; boundary="_----------=_1471532004104820" MIME-Version: 1.0 Date: Thu, 18 Aug 2016 14:53:24 +0000 From: "Richard PALO" Subject: CVS commit: pkgsrc/devel/py-mako To: pkgsrc-changes@NetBSD.org Reply-To: richard@netbsd.org X-Mailer: log_accum Message-Id: <20160818145324.A5B97FBC3@cvs.NetBSD.org> Sender: pkgsrc-changes-owner@NetBSD.org List-Id: pkgsrc-changes.NetBSD.org Precedence: bulk This is a multi-part message in MIME format. --_----------=_1471532004104820 Content-Disposition: inline Content-Transfer-Encoding: 8bit Content-Type: text/plain; charset="US-ASCII" Module Name: pkgsrc Committed By: richard Date: Thu Aug 18 14:53:24 UTC 2016 Modified Files: pkgsrc/devel/py-mako: Makefile PLIST distinfo Log Message: update to Mako-1.0.4 .. changelog:: :version: 1.0.4 :released: Thu Mar 10 2016 .. change:: :tags: feature, test The default test runner is now py.test. Running "python setup.py test" will make use of py.test instead of nose. nose still works as a test runner as well, however. .. change:: :tags: bug, lexer :pullreq: github:19 Major improvements to lexing of intricate Python sections which may contain complex backslash sequences, as well as support for the bitwise operator (e.g. pipe symbol) inside of expression sections distinct from the Mako "filter" operator, provided the operator is enclosed within parentheses or brackets. Pull request courtesy Daniel Martin. .. change:: :tags: feature :pullreq: bitbucket:16 Added new method :meth:`.Template.list_defs`. Pull request courtesy Jonathan Vanasco. .. changelog:: :version: 1.0.3 :released: Tue Oct 27 2015 .. change:: :tags: bug, babel :pullreq: bitbucket:21 Fixed an issue where the Babel plugin would not handle a translation symbol that contained non-ascii characters. Pull request courtesy Roman Imankulov. .. changelog:: :version: 1.0.2 :released: Wed Aug 26 2015 .. change:: :tags: bug, installation :tickets: 249 The "universal wheel" marker is removed from setup.cfg, because our setup.py currently makes use of conditional dependencies. In :ticket:`249`, the discussion is ongoing on how to correct our setup.cfg / setup.py fully so that we can handle the per-version dependency changes while still maintaining optimal wheel settings, so this issue is not yet fully resolved. .. change:: :tags: bug, py3k :tickets: 250 Repair some calls within the ast module that no longer work on Python3.5; additionally replace the use of ``inspect.getargspec()`` under Python 3 (seems to be called from the TG plugin) to avoid deprecation warnings. .. change:: :tags: bug :pullreq: bitbucket:18 Update the Lingua translation extraction plugin to correctly handle templates mixing Python control statements (such as if, for and while) with template fragments. Pull request courtesy Laurent Daverio. .. change:: :tags: feature :tickets: 236 Added ``STOP_RENDERING`` keyword for returning/exiting from a template early, which is a synonym for an empty string ``""``. Previously, the docs suggested a bare ``return``, but this could cause ``None`` to appear in the rendered template result. .. seealso:: :ref:`syntax_exiting_early` To generate a diff of this commit: cvs rdiff -u -r1.8 -r1.9 pkgsrc/devel/py-mako/Makefile cvs rdiff -u -r1.4 -r1.5 pkgsrc/devel/py-mako/PLIST cvs rdiff -u -r1.6 -r1.7 pkgsrc/devel/py-mako/distinfo Please note that diffs are not public domain; they are subject to the copyright notices on the relevant files. --_----------=_1471532004104820 Content-Disposition: inline Content-Length: 2348 Content-Transfer-Encoding: binary Content-Type: text/x-diff; charset=us-ascii Modified files: Index: pkgsrc/devel/py-mako/Makefile diff -u pkgsrc/devel/py-mako/Makefile:1.8 pkgsrc/devel/py-mako/Makefile:1.9 --- pkgsrc/devel/py-mako/Makefile:1.8 Wed Jun 8 21:33:18 2016 +++ pkgsrc/devel/py-mako/Makefile Thu Aug 18 14:53:24 2016 @@ -1,6 +1,6 @@ -# $NetBSD: Makefile,v 1.8 2016/06/08 21:33:18 markd Exp $ +# $NetBSD: Makefile,v 1.9 2016/08/18 14:53:24 richard Exp $ -DISTNAME= Mako-1.0.1 +DISTNAME= Mako-1.0.4 PKGNAME= ${PYPKGPREFIX}-${DISTNAME:tl} CATEGORIES= devel python MASTER_SITES= ${MASTER_SITE_PYPI:=M/Mako/} \ Index: pkgsrc/devel/py-mako/PLIST diff -u pkgsrc/devel/py-mako/PLIST:1.4 pkgsrc/devel/py-mako/PLIST:1.5 --- pkgsrc/devel/py-mako/PLIST:1.4 Wed Jul 15 18:04:23 2015 +++ pkgsrc/devel/py-mako/PLIST Thu Aug 18 14:53:24 2016 @@ -1,11 +1,10 @@ -@comment $NetBSD: PLIST,v 1.4 2015/07/15 18:04:23 wiz Exp $ +@comment $NetBSD: PLIST,v 1.5 2016/08/18 14:53:24 richard Exp $ bin/mako-render ${PYSITELIB}/${EGG_INFODIR}/PKG-INFO ${PYSITELIB}/${EGG_INFODIR}/SOURCES.txt ${PYSITELIB}/${EGG_INFODIR}/dependency_links.txt ${PYSITELIB}/${EGG_INFODIR}/entry_points.txt ${PYSITELIB}/${EGG_INFODIR}/not-zip-safe -${PYSITELIB}/${EGG_INFODIR}/pbr.json ${PYSITELIB}/${EGG_INFODIR}/requires.txt ${PYSITELIB}/${EGG_INFODIR}/top_level.txt ${PYSITELIB}/mako/__init__.py Index: pkgsrc/devel/py-mako/distinfo diff -u pkgsrc/devel/py-mako/distinfo:1.6 pkgsrc/devel/py-mako/distinfo:1.7 --- pkgsrc/devel/py-mako/distinfo:1.6 Tue Nov 3 03:29:10 2015 +++ pkgsrc/devel/py-mako/distinfo Thu Aug 18 14:53:24 2016 @@ -1,6 +1,6 @@ -$NetBSD: distinfo,v 1.6 2015/11/03 03:29:10 agc Exp $ +$NetBSD: distinfo,v 1.7 2016/08/18 14:53:24 richard Exp $ -SHA1 (Mako-1.0.1.tar.gz) = 00ef43d5722c5407e5d64047ef4e3218006d741c -RMD160 (Mako-1.0.1.tar.gz) = b4ce15a2a64694b7555e10ed0a00d1a688c90c32 -SHA512 (Mako-1.0.1.tar.gz) = f9f30a7014014ca18a5c10846ce9d24c874961fd0b547b03da5e4450b7ee2866b553f0710adf93591b72bfdf89b0c99daadca4648dc1e1943327bef27a5fcd95 -Size (Mako-1.0.1.tar.gz) = 473295 bytes +SHA1 (Mako-1.0.4.tar.gz) = 64f9cadffd5cc264ea91d81df6e24ce660a15836 +RMD160 (Mako-1.0.4.tar.gz) = e5a4ce6a05102ef031b66106d82cf01583cc243d +SHA512 (Mako-1.0.4.tar.gz) = 2494dba2a947e179f71b663b1efd534ef8edd4085a504c7d2e18670fd1a5d712bbd922433de97dbece3deacf4c8c20dc58408e15df68701cabc153dbcb501193 +Size (Mako-1.0.4.tar.gz) = 574213 bytes --_----------=_1471532004104820--