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 8F1F47A1FE for ; Tue, 6 Jun 2017 15:10:34 +0000 (UTC) Received: by mail.netbsd.org (Postfix, from userid 605) id A98A185604; Tue, 6 Jun 2017 15:10:27 +0000 (UTC) Received: from localhost (localhost [127.0.0.1]) by mail.netbsd.org (Postfix) with ESMTP id 73AED855C0 for ; Tue, 6 Jun 2017 15:09:43 +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 hwr-wmH2YdID for ; Tue, 6 Jun 2017 15:09:43 +0000 (UTC) Received: from cvs.NetBSD.org (ivanova.netbsd.org [199.233.217.197]) by mail.netbsd.org (Postfix) with ESMTP id 02DFF84CE1 for ; Tue, 6 Jun 2017 15:09:43 +0000 (UTC) Received: by cvs.NetBSD.org (Postfix, from userid 500) id F23ACFAB1; Tue, 6 Jun 2017 15:09:42 +0000 (UTC) Content-Transfer-Encoding: 7bit Content-Type: multipart/mixed; boundary="_----------=_1496761782215950" MIME-Version: 1.0 Date: Tue, 6 Jun 2017 15:09:42 +0000 From: "Ryo ONODERA" Subject: CVS commit: pkgsrc/www/p5-HTML-Quoted To: pkgsrc-changes@NetBSD.org Reply-To: ryoon@netbsd.org X-Mailer: log_accum Message-Id: <20170606150942.F23ACFAB1@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. --_----------=_1496761782215950 Content-Disposition: inline Content-Transfer-Encoding: 8bit Content-Type: text/plain; charset="US-ASCII" Module Name: pkgsrc Committed By: ryoon Date: Tue Jun 6 15:09:42 UTC 2017 Modified Files: pkgsrc/www/p5-HTML-Quoted: distinfo Added Files: pkgsrc/www/p5-HTML-Quoted/patches: patch-Makefile.PL Log Message: Fix build with Perl 5.26.0 To generate a diff of this commit: cvs rdiff -u -r1.3 -r1.4 pkgsrc/www/p5-HTML-Quoted/distinfo cvs rdiff -u -r0 -r1.1 pkgsrc/www/p5-HTML-Quoted/patches/patch-Makefile.PL Please note that diffs are not public domain; they are subject to the copyright notices on the relevant files. --_----------=_1496761782215950 Content-Disposition: inline Content-Length: 1457 Content-Transfer-Encoding: binary Content-Type: text/x-diff; charset=us-ascii Modified files: Index: pkgsrc/www/p5-HTML-Quoted/distinfo diff -u pkgsrc/www/p5-HTML-Quoted/distinfo:1.3 pkgsrc/www/p5-HTML-Quoted/distinfo:1.4 --- pkgsrc/www/p5-HTML-Quoted/distinfo:1.3 Wed Nov 4 02:47:08 2015 +++ pkgsrc/www/p5-HTML-Quoted/distinfo Tue Jun 6 15:09:42 2017 @@ -1,6 +1,7 @@ -$NetBSD: distinfo,v 1.3 2015/11/04 02:47:08 agc Exp $ +$NetBSD: distinfo,v 1.4 2017/06/06 15:09:42 ryoon Exp $ SHA1 (HTML-Quoted-0.04.tar.gz) = 71600691be7cf6c03c6bc8e1cc63434cd381e1f4 RMD160 (HTML-Quoted-0.04.tar.gz) = 3df17f62deee7cd6443e0626d44eb838a6401179 SHA512 (HTML-Quoted-0.04.tar.gz) = a13fb07d683741ec32679780d7183c849c534fb79e2b5f5613f9142e2b877938712d8bf20bb1e540ad5f4532cd7f2fcbf42bc3be5e931d7a4a2ae12bd0af0cc0 Size (HTML-Quoted-0.04.tar.gz) = 23106 bytes +SHA1 (patch-Makefile.PL) = 2d1871432afcbcc6335ed0423a0d890cd774c0d4 Added files: Index: pkgsrc/www/p5-HTML-Quoted/patches/patch-Makefile.PL diff -u /dev/null pkgsrc/www/p5-HTML-Quoted/patches/patch-Makefile.PL:1.1 --- /dev/null Tue Jun 6 15:09:42 2017 +++ pkgsrc/www/p5-HTML-Quoted/patches/patch-Makefile.PL Tue Jun 6 15:09:42 2017 @@ -0,0 +1,12 @@ +$NetBSD: patch-Makefile.PL,v 1.1 2017/06/06 15:09:42 ryoon Exp $ + +* Fix build with Perl 5.26.0 + +--- Makefile.PL.orig 2013-05-21 18:49:54.000000000 +0000 ++++ Makefile.PL +@@ -1,3 +1,5 @@ ++use FindBin; ++use lib $FindBin::Bin; + use inc::Module::Install; + all_from 'lib/HTML/Quoted.pm'; + readme_from 'lib/HTML/Quoted.pm'; --_----------=_1496761782215950--