Received: by mail.netbsd.org (Postfix, from userid 605) id 3673E84D65; Tue, 26 Sep 2017 22:23:58 +0000 (UTC) Received: from localhost (localhost [127.0.0.1]) by mail.netbsd.org (Postfix) with ESMTP id BD5E184D35 for ; Tue, 26 Sep 2017 22:23:57 +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 64nqRDc10Mxp for ; Tue, 26 Sep 2017 22:23:57 +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 23D1284D33 for ; Tue, 26 Sep 2017 22:23:57 +0000 (UTC) Received: by cvs.NetBSD.org (Postfix, from userid 500) id 1E873FA9C; Tue, 26 Sep 2017 22:23:57 +0000 (UTC) Content-Transfer-Encoding: 7bit Content-Type: multipart/mixed; boundary="_----------=_150646463751820" MIME-Version: 1.0 Date: Tue, 26 Sep 2017 22:23:57 +0000 From: "Thomas Klausner" Subject: CVS commit: pkgsrc/www/p5-Apache2-AuthCookie To: pkgsrc-changes@NetBSD.org Reply-To: wiz@netbsd.org X-Mailer: log_accum Message-Id: <20170926222357.1E873FA9C@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. --_----------=_150646463751820 Content-Disposition: inline Content-Transfer-Encoding: 8bit Content-Type: text/plain; charset="UTF-8" Module Name: pkgsrc Committed By: wiz Date: Tue Sep 26 22:23:57 UTC 2017 Modified Files: pkgsrc/www/p5-Apache2-AuthCookie: Makefile distinfo Log Message: p5-Apache2-AuthCookie: update to 3.27. 3.27 2017-07-28 - Fix POD spelling error [#118545]. 3.26 2016-09-30 - remove unused module Apache::AuthCookie::Autobox from dist - remove CGI.pm dependency. CGI.pm has been removed from perl core, which was the primary reason we used it in the first place. Replaced with dependency on lighter weight set of three modules: * HTTP::Body * WWW::Form::UrlEncoded * Hash::MultiValue Also recommended (but not required) is WWW::Form::UrlEncoded::XS - Add optional support for charset encoding. If you have something like PerlSetVar MyAuthNameEncoding UTF-8 Then AuthCookie with now automatically decode parameters using the given encoding now. AuthCookie params() data will be decoded automatically if this is on. See details in AuthCookie module documentation. In addition r->user will be encoded (using byte semantics) using this encoding. ***** IMPORTANT ***** If you turn this on, this could break your code. r->user() will now be byte encoded using the given encoding. If you use usernames that contain non-ascii characters you either need to use decoded_user(), or decode r->user() yourself in your subclasses. See the AuthCookie docs for more details. - add optional support for decoding httpd.conf requires directives. This is enabled with a RequiresEncoding setting: PerlSetVar MyAuthNameRequiresEncoding UTF-8 Then decoded_requires($r) will return the decoded value of $r->requires You only need this if you have non-ascii characters in your requires directives such as: Requires user programmør - add decoded_user($r) method to get the value of r->user decoded using character semantics instead of bytes. Due to the fact that r->user is a C API method we cannot get character semantics on r->user directly. If no Encoding directive is in effect, then this is the same as r->user. - add encoding($r): string which returns the value of the Encoding directive that is in effect for the current request. 3.25 2016-08-30 - 2.4: fix POD typo and add missing ABSTRACT - reorganize real.t tests into subtests - make sure signature test ignores generated files - remove autobox dependency - fix authenticate so that r->user is copied from r->main on subrequests. Previously this was only done for internal redirects (r->prev is defined). This fixes DirectoryIndexes on AuthCookie enabled directories under apache 2.4. To generate a diff of this commit: cvs rdiff -u -r1.18 -r1.19 pkgsrc/www/p5-Apache2-AuthCookie/Makefile cvs rdiff -u -r1.6 -r1.7 pkgsrc/www/p5-Apache2-AuthCookie/distinfo Please note that diffs are not public domain; they are subject to the copyright notices on the relevant files. --_----------=_150646463751820 Content-Disposition: inline Content-Length: 2361 Content-Transfer-Encoding: binary Content-Type: text/x-diff; charset=us-ascii Modified files: Index: pkgsrc/www/p5-Apache2-AuthCookie/Makefile diff -u pkgsrc/www/p5-Apache2-AuthCookie/Makefile:1.18 pkgsrc/www/p5-Apache2-AuthCookie/Makefile:1.19 --- pkgsrc/www/p5-Apache2-AuthCookie/Makefile:1.18 Mon Jun 5 14:25:09 2017 +++ pkgsrc/www/p5-Apache2-AuthCookie/Makefile Tue Sep 26 22:23:56 2017 @@ -1,17 +1,18 @@ -# $NetBSD: Makefile,v 1.18 2017/06/05 14:25:09 ryoon Exp $ +# $NetBSD: Makefile,v 1.19 2017/09/26 22:23:56 wiz Exp $ -DISTNAME= Apache-AuthCookie-3.24 +DISTNAME= Apache-AuthCookie-3.27 PKGNAME= p5-${DISTNAME:S/Apache/Apache2/} -PKGREVISION= 2 CATEGORIES= www perl5 -MASTER_SITES= ${MASTER_SITE_PERL_CPAN:=Apache/} +MASTER_SITES= http://search.cpan.org/CPAN/authors/id/M/MS/MSCHOUT/ MAINTAINER= pkgsrc-users@NetBSD.org HOMEPAGE= http://search.cpan.org/dist/Apache-AuthCookie/ COMMENT= Perl5 module for Authentication and Authorization via cookies LICENSE= ${PERL5_LICENSE} -DEPENDS+= p5-CGI>=3.12:../../www/p5-CGI +DEPENDS+= p5-Class-Load-[0-9]*:../../devel/p5-Class-Load +DEPENDS+= p5-URI-[0-9]*:../../www/p5-URI +DEPENDS+= p5-libwww-[0-9]*:../../www/p5-libwww PERL5_PACKLIST= auto/Apache/AuthCookie/.packlist Index: pkgsrc/www/p5-Apache2-AuthCookie/distinfo diff -u pkgsrc/www/p5-Apache2-AuthCookie/distinfo:1.6 pkgsrc/www/p5-Apache2-AuthCookie/distinfo:1.7 --- pkgsrc/www/p5-Apache2-AuthCookie/distinfo:1.6 Fri Jan 15 15:03:04 2016 +++ pkgsrc/www/p5-Apache2-AuthCookie/distinfo Tue Sep 26 22:23:56 2017 @@ -1,6 +1,6 @@ -$NetBSD: distinfo,v 1.6 2016/01/15 15:03:04 mef Exp $ +$NetBSD: distinfo,v 1.7 2017/09/26 22:23:56 wiz Exp $ -SHA1 (Apache-AuthCookie-3.24.tar.gz) = 81988a4966291eaa0bb667b5d201c8ce04f766ae -RMD160 (Apache-AuthCookie-3.24.tar.gz) = f948270879d84b43d0ae10bb1be5c725ce02c861 -SHA512 (Apache-AuthCookie-3.24.tar.gz) = 023cc9c695d5b43a92a46b80a2c8ce556d89f0f3ed83d05cb068db5b50d96e1a0e4cd52491d2eb5f0e680e073bc16b36c214b2527a5c5d31eee1a37ed6cd2f60 -Size (Apache-AuthCookie-3.24.tar.gz) = 48349 bytes +SHA1 (Apache-AuthCookie-3.27.tar.gz) = 33f2a2c0519f5df12db4698135e9d5554eea7807 +RMD160 (Apache-AuthCookie-3.27.tar.gz) = 800c6c10ca7e6d0fb5651401bfa40c669376d115 +SHA512 (Apache-AuthCookie-3.27.tar.gz) = 580bea66d52382cda5d0d55bdac1c323d60641de60e670da10d24ee20ef570a6f46f3b3b45a8f11be347af3597494595224e7b27e986eece1650086385e9ecfb +Size (Apache-AuthCookie-3.27.tar.gz) = 58156 bytes --_----------=_150646463751820--