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 9B9737A0F3 for ; Sat, 11 Mar 2017 10:04:52 +0000 (UTC) Received: by mail.netbsd.org (Postfix, from userid 605) id 11E33855AB; Sat, 11 Mar 2017 10:04:52 +0000 (UTC) Received: from localhost (localhost [127.0.0.1]) by mail.netbsd.org (Postfix) with ESMTP id 96E3B8559D for ; Sat, 11 Mar 2017 10:04:51 +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 lJylIa9cKrFA for ; Sat, 11 Mar 2017 10:04:51 +0000 (UTC) Received: from cvs.NetBSD.org (ivanova.netbsd.org [199.233.217.197]) by mail.netbsd.org (Postfix) with ESMTP id 114068556E for ; Sat, 11 Mar 2017 10:04:51 +0000 (UTC) Received: by cvs.NetBSD.org (Postfix, from userid 500) id 0C50BFBE4; Sat, 11 Mar 2017 10:04:51 +0000 (UTC) Content-Transfer-Encoding: 7bit Content-Type: multipart/mixed; boundary="_----------=_1489226691175060" MIME-Version: 1.0 Date: Sat, 11 Mar 2017 10:04:51 +0000 From: "Wen Heping" Subject: CVS commit: pkgsrc/www/p5-Dancer2 To: pkgsrc-changes@NetBSD.org Reply-To: wen@netbsd.org X-Mailer: log_accum Message-Id: <20170311100451.0C50BFBE4@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. --_----------=_1489226691175060 Content-Disposition: inline Content-Transfer-Encoding: 8bit Content-Type: text/plain; charset="US-ASCII" Module Name: pkgsrc Committed By: wen Date: Sat Mar 11 10:04:50 UTC 2017 Modified Files: pkgsrc/www/p5-Dancer2: Makefile distinfo Log Message: Update to 0.205000 Upstream changes: 0.205000 2017-03-10 15:37:52-06:00 America/Chicago [ BUG FIXES ] * GH #1325: Support multi-value cookies when using HTTP::XSCookies. (James Raspass) * GH #1303: Read configuration options when send_as() creates a new serializer (Paul Williams) * GH #1290: Properly check buffer length in _read_to_end() (Marketa Wachtlova) * GH #1322: Deprecate broken request->dispatch_path in favor of request->path. Warn the developer of the deprecation (Russell @veryrusty Jenkins). [ ENHANCEMENTS ] * GH #1326: Speed up by using Type::Tiny, again. (Pete SysPete Mottram) * GH #1318: Add support for the SameSite cookie attribute. (James Raspass) * GH #1283: Skeleton now provides an example of setting the appdir. (Jason Lewis) * GH #1315: Adjust dist.ini to set "build_requires" for ExtUtils::MakeMaker. (Atoomic) * GH #1331: Preliminary prepare_app() work (Sawyer X) [ DOCUMENTATION ] * GH #1324: Fix broken link to send_file. (Fabrice Gabolde) * GH #1311: Typo and link fixes. (Breno G. de Oliveira - @garu) * GH #1310: Document query string parameters in uri_for. (Michael J South) * GH #1329: Remove dead code from file upload example (Stefan Hornburg - Racke) * GH #1256: Additions to migration manual (Daniel Perrett) * GH #1330: Add middleware examples to scaffolder (David - sbts) To generate a diff of this commit: cvs rdiff -u -r1.41 -r1.42 pkgsrc/www/p5-Dancer2/Makefile cvs rdiff -u -r1.36 -r1.37 pkgsrc/www/p5-Dancer2/distinfo Please note that diffs are not public domain; they are subject to the copyright notices on the relevant files. --_----------=_1489226691175060 Content-Disposition: inline Content-Length: 2331 Content-Transfer-Encoding: binary Content-Type: text/x-diff; charset=us-ascii Modified files: Index: pkgsrc/www/p5-Dancer2/Makefile diff -u pkgsrc/www/p5-Dancer2/Makefile:1.41 pkgsrc/www/p5-Dancer2/Makefile:1.42 --- pkgsrc/www/p5-Dancer2/Makefile:1.41 Sat Jan 28 12:26:57 2017 +++ pkgsrc/www/p5-Dancer2/Makefile Sat Mar 11 10:04:50 2017 @@ -1,9 +1,9 @@ -# $NetBSD: Makefile,v 1.41 2017/01/28 12:26:57 wen Exp $ +# $NetBSD: Makefile,v 1.42 2017/03/11 10:04:50 wen Exp $ -DISTNAME= Dancer2-0.204004 +DISTNAME= Dancer2-0.205000 PKGNAME= p5-${DISTNAME} CATEGORIES= www perl5 -MASTER_SITES= ${MASTER_SITE_PERL_CPAN:=../../authors/id/X/XS/XSAWYERX/} +MASTER_SITES= ${MASTER_SITE_PERL_CPAN:=../../authors/id/C/CR/CROMEDOME/} MAINTAINER= pkgsrc-users@NetBSD.org HOMEPAGE= http://search.cpan.org/dist/Dancer2/ @@ -45,7 +45,7 @@ DEPENDS+= p5-Role-Tiny>=2.000000:../../d DEPENDS+= p5-Safe-Isa>=0:../../devel/p5-Safe-Isa DEPENDS+= p5-Template-Tiny>=0:../../textproc/p5-Template-Tiny DEPENDS+= p5-Template-Toolkit>=0:../../www/p5-Template-Toolkit -#DEPENDS+= p5-Type-Tiny>=0.008:../../devel/p5-Type-Tiny +DEPENDS+= p5-Type-Tiny>=1.000006:../../devel/p5-Type-Tiny DEPENDS+= p5-URI>=0:../../www/p5-URI DEPENDS+= p5-YAML>=0:../../textproc/p5-YAML DEPENDS+= p5-YAML-LibYAML>=0:../../textproc/p5-YAML-LibYAML Index: pkgsrc/www/p5-Dancer2/distinfo diff -u pkgsrc/www/p5-Dancer2/distinfo:1.36 pkgsrc/www/p5-Dancer2/distinfo:1.37 --- pkgsrc/www/p5-Dancer2/distinfo:1.36 Sat Jan 28 12:26:57 2017 +++ pkgsrc/www/p5-Dancer2/distinfo Sat Mar 11 10:04:50 2017 @@ -1,6 +1,6 @@ -$NetBSD: distinfo,v 1.36 2017/01/28 12:26:57 wen Exp $ +$NetBSD: distinfo,v 1.37 2017/03/11 10:04:50 wen Exp $ -SHA1 (Dancer2-0.204004.tar.gz) = 7fd33bc24c366dc719914b67f885f10e7ca1bda6 -RMD160 (Dancer2-0.204004.tar.gz) = 196126fee825e4c4b5ab700bbcd7b448b994bc2a -SHA512 (Dancer2-0.204004.tar.gz) = 3d3f4a869d944ac8fb1500f35b3f417ec590c5a087b9091da4842fd89dec1fd8ad38eb22cdf152b88e8f4ff77275705ee1812785a35436e26ff40707c80251f2 -Size (Dancer2-0.204004.tar.gz) = 353956 bytes +SHA1 (Dancer2-0.205000.tar.gz) = 0e4e3b7c2f89e57187c3579149ef55419f858fef +RMD160 (Dancer2-0.205000.tar.gz) = 7ed5141473fe50eb8731d521ebcebe2ec11678a4 +SHA512 (Dancer2-0.205000.tar.gz) = 9bff1bb54c3da10752dd6156c94a08c1541b88fc6ba176534d499495d63c080ef45f27d5417dba74eca141b22e2b7aeeb6055a21ecbfbcc161a2684d08816abf +Size (Dancer2-0.205000.tar.gz) = 365622 bytes --_----------=_1489226691175060--