Received: by mail.netbsd.org (Postfix, from userid 605) id 669BC84D04; Sun, 30 Aug 2020 20:10:06 +0000 (UTC) Received: from localhost (localhost [127.0.0.1]) by mail.netbsd.org (Postfix) with ESMTP id E403D84D02 for ; Sun, 30 Aug 2020 20:10:05 +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 37lekENQxmqQ for ; Sun, 30 Aug 2020 20:10:05 +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 2866084CEF for ; Sun, 30 Aug 2020 20:10:05 +0000 (UTC) Received: by cvs.NetBSD.org (Postfix, from userid 500) id 2434DFB27; Sun, 30 Aug 2020 20:10:05 +0000 (UTC) Content-Transfer-Encoding: 7bit Content-Type: multipart/mixed; boundary="_----------=_159881820522920" MIME-Version: 1.0 Date: Sun, 30 Aug 2020 20:10:05 +0000 From: "Thomas Klausner" Subject: CVS commit: pkgsrc/www/p5-Template-Toolkit To: pkgsrc-changes@NetBSD.org Reply-To: wiz@netbsd.org X-Mailer: log_accum Message-Id: <20200830201005.2434DFB27@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. --_----------=_159881820522920 Content-Disposition: inline Content-Transfer-Encoding: 8bit Content-Type: text/plain; charset="US-ASCII" Module Name: pkgsrc Committed By: wiz Date: Sun Aug 30 20:10:05 UTC 2020 Modified Files: pkgsrc/www/p5-Template-Toolkit: Makefile distinfo Log Message: p5-Template-Toolkit: update to 3.009. #----------------------------------------------------------------------- # Version 3.009 - 13th July 2020 #------------------------------------------------------------------------ * Revert "Allow SET to have FILTER used in it" #----------------------------------------------------------------------- # Version 3.008 - 30th March 2020 #------------------------------------------------------------------------ * Bump version requirement for CGI.pm * Fix taint issue in Template::Provider (jwakely) * Allow SET to have FILTER used in it (dracos) #----------------------------------------------------------------------- # Version 3.007 - 27th January 2020 #------------------------------------------------------------------------ * Fixes cpanm by adding VERSION to Template/Toolkit.pm #----------------------------------------------------------------------- # Version 3.006 - 16th January 2020 #------------------------------------------------------------------------ * Fix t/date.t timezone issue introduced when adding '%z' support #----------------------------------------------------------------------- # Version 3.005 - 15th January 2020 #------------------------------------------------------------------------ * Add encoding option to Datafile plugin * Add support for '%z' in Date plugin. * Fix for WHILE_MAX which was stopping one iteration earlier. * Refresh contributor list * Update Copyrights for year 2020 #----------------------------------------------------------------------- # Version 3.004 - 13th January 2020 #------------------------------------------------------------------------ * Use three-args open which fix an issue in Datafile plugin as reported by Mikhail Klyuchnikov from Positive Technologies. #----------------------------------------------------------------------- # Version 3.003 - 27th December 2019 #------------------------------------------------------------------------ * Revert 'Ensure we only load plugins once per context' which was breaking multiple plugins including: Template-Plugin-Autoformat, Template-DBI, Template-Plugin-Map, Template-XML... * Fix _fetch when mtime is not provided by the plugin. This is fixing Template-Provider-FromDATA. * Add an additional GitHub Actions workflow to check plugins for future releases. #----------------------------------------------------------------------- # Version 3.002 - 23rd December 2019 #------------------------------------------------------------------------ * Stop warning when updating from version 1 which was released 20 years ago #----------------------------------------------------------------------- # Version 3.001 - 23rd December 2019 #------------------------------------------------------------------------ * Remove 'use vars' and officially drop 5.6 support. * Remove old_new function from Template::Plugin #----------------------------------------------------------------------- # Version 3.000 - 23rd December 2019 #------------------------------------------------------------------------ * Bump all packages versions to 3.000 * Switch to github actions for CI testing * @nataraj-hates-MS-for-stealing-github fixed a minor metacpan POD issue with Template::Manual::Config * Display github actions CI status in README * Reverted behavior change to import vmethod and updated documentation to clarify that it chains. * Use XSLoader for Template::Stash::XS * Cache compiled filename so we don't have to figure it out multiple times * Speed up Template Toolkit template by about 10% with single quotes * Avoid a double stat in Provider.pm by caching the mtime. * Avoid destruction segfault on Template objects due to global destruction issues. * Avoid requiring in modules that are already loaded. * Switch win32 logic to a constant to speed up processing speed * Switch from regexes to simple string checks to speed up parsing. * Ensure we only load plugins once per context. * Reduce the number of stat()s needed to find a compiled template. * Optimize get_next overhead for frequent calls by avoiding AUTOLOAD. * Reduce Template Toolkit get_next overhead * Update with yapp parser using sort() * Add BEGIN blocks to Template::Grammar * Set date to epoch when doing date.format(0) * Reduce op complexity in some regexes to reduce overhead. To generate a diff of this commit: cvs rdiff -u -r1.53 -r1.54 pkgsrc/www/p5-Template-Toolkit/Makefile cvs rdiff -u -r1.19 -r1.20 pkgsrc/www/p5-Template-Toolkit/distinfo Please note that diffs are not public domain; they are subject to the copyright notices on the relevant files. --_----------=_159881820522920 Content-Disposition: inline Content-Length: 2173 Content-Transfer-Encoding: binary Content-Type: text/x-diff; charset=us-ascii Modified files: Index: pkgsrc/www/p5-Template-Toolkit/Makefile diff -u pkgsrc/www/p5-Template-Toolkit/Makefile:1.53 pkgsrc/www/p5-Template-Toolkit/Makefile:1.54 --- pkgsrc/www/p5-Template-Toolkit/Makefile:1.53 Fri Aug 23 12:36:47 2019 +++ pkgsrc/www/p5-Template-Toolkit/Makefile Sun Aug 30 20:10:04 2020 @@ -1,6 +1,6 @@ -# $NetBSD: Makefile,v 1.53 2019/08/23 12:36:47 adam Exp $ +# $NetBSD: Makefile,v 1.54 2020/08/30 20:10:04 wiz Exp $ -DISTNAME= Template-Toolkit-2.29 +DISTNAME= Template-Toolkit-3.009 PKGNAME= p5-${DISTNAME} CATEGORIES= www perl5 MASTER_SITES= ${MASTER_SITE_PERL_CPAN:=Template/} @@ -15,6 +15,8 @@ DEPENDS+= p5-AppConfig>=1.56:../../devel # recommended because of default-plugin DEPENDS+= p5-Image-Info-[0-9]*:../../graphics/p5-Image-Info DEPENDS+= p5-Pod-POM-[0-9]*:../../textproc/p5-Pod-POM +DEPENDS+= p5-CGI-[0-9]*:../../www/p5-CGI +TEST_DEPENDS+= p5-Test-LeakTrace-[0-9]*:../../devel/p5-Test-LeakTrace PERL5_PACKLIST= auto/Template/.packlist Index: pkgsrc/www/p5-Template-Toolkit/distinfo diff -u pkgsrc/www/p5-Template-Toolkit/distinfo:1.19 pkgsrc/www/p5-Template-Toolkit/distinfo:1.20 --- pkgsrc/www/p5-Template-Toolkit/distinfo:1.19 Fri Aug 23 12:36:47 2019 +++ pkgsrc/www/p5-Template-Toolkit/distinfo Sun Aug 30 20:10:04 2020 @@ -1,6 +1,6 @@ -$NetBSD: distinfo,v 1.19 2019/08/23 12:36:47 adam Exp $ +$NetBSD: distinfo,v 1.20 2020/08/30 20:10:04 wiz Exp $ -SHA1 (Template-Toolkit-2.29.tar.gz) = 4dc13c39c0a4e5ccfe37bd0fbbefe9d0d5bd25f2 -RMD160 (Template-Toolkit-2.29.tar.gz) = 5e35e33b0244fb600cf006cfe0f4b71b7d88e3b6 -SHA512 (Template-Toolkit-2.29.tar.gz) = 5b1bfeaf600a5628b6441e54de5c4af1cf4e01296792a79290d4bf2a698be47112e94a05fe3f47bf9ac64c4d8b9340aa6ef8738560fb1f96510d7d1c9f647a65 -Size (Template-Toolkit-2.29.tar.gz) = 518473 bytes +SHA1 (Template-Toolkit-3.009.tar.gz) = 8ec59d852dfc2c8a29d078db196555e95f8ed4f5 +RMD160 (Template-Toolkit-3.009.tar.gz) = 9d9b2241268f57eeb6727601a7ffd201de585532 +SHA512 (Template-Toolkit-3.009.tar.gz) = 940992d7e3059a64c273c2f0441a81e095560c35f4bb9ab75afb9eeeb58d043cc5ac9785e2eb79a6635480ade12771c75c632c755977124dbe7cbfae399f9972 +Size (Template-Toolkit-3.009.tar.gz) = 523388 bytes --_----------=_159881820522920--