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 A0C217A237 for ; Wed, 7 Jun 2017 00:12:54 +0000 (UTC) Received: by mail.netbsd.org (Postfix, from userid 605) id 4B2E9855E9; Wed, 7 Jun 2017 00:12:54 +0000 (UTC) Received: from localhost (localhost [127.0.0.1]) by mail.netbsd.org (Postfix) with ESMTP id CFF07855E6 for ; Wed, 7 Jun 2017 00:12:53 +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 yvdt1mywV3mw for ; Wed, 7 Jun 2017 00:12:53 +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 6343D84D7C for ; Wed, 7 Jun 2017 00:12:53 +0000 (UTC) Received: by cvs.NetBSD.org (Postfix, from userid 500) id 59445FAB6; Wed, 7 Jun 2017 00:12:53 +0000 (UTC) Content-Transfer-Encoding: 7bit Content-Type: multipart/mixed; boundary="_----------=_149679437374610" MIME-Version: 1.0 Date: Wed, 7 Jun 2017 00:12:53 +0000 From: "Ryo ONODERA" Subject: CVS commit: pkgsrc/textproc/p5-Text-Quoted To: pkgsrc-changes@NetBSD.org Reply-To: ryoon@netbsd.org X-Mailer: log_accum Message-Id: <20170607001253.59445FAB6@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. --_----------=_149679437374610 Content-Disposition: inline Content-Transfer-Encoding: 8bit Content-Type: text/plain; charset="US-ASCII" Module Name: pkgsrc Committed By: ryoon Date: Wed Jun 7 00:12:53 UTC 2017 Modified Files: pkgsrc/textproc/p5-Text-Quoted: distinfo Added Files: pkgsrc/textproc/p5-Text-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.10 -r1.11 pkgsrc/textproc/p5-Text-Quoted/distinfo cvs rdiff -u -r0 -r1.1 \ pkgsrc/textproc/p5-Text-Quoted/patches/patch-Makefile.PL Please note that diffs are not public domain; they are subject to the copyright notices on the relevant files. --_----------=_149679437374610 Content-Disposition: inline Content-Length: 1479 Content-Transfer-Encoding: binary Content-Type: text/x-diff; charset=us-ascii Modified files: Index: pkgsrc/textproc/p5-Text-Quoted/distinfo diff -u pkgsrc/textproc/p5-Text-Quoted/distinfo:1.10 pkgsrc/textproc/p5-Text-Quoted/distinfo:1.11 --- pkgsrc/textproc/p5-Text-Quoted/distinfo:1.10 Wed Nov 4 01:59:52 2015 +++ pkgsrc/textproc/p5-Text-Quoted/distinfo Wed Jun 7 00:12:53 2017 @@ -1,6 +1,7 @@ -$NetBSD: distinfo,v 1.10 2015/11/04 01:59:52 agc Exp $ +$NetBSD: distinfo,v 1.11 2017/06/07 00:12:53 ryoon Exp $ SHA1 (Text-Quoted-2.09.tar.gz) = 84ae14c3229e96a7ce65d9562db38d023f1c87af RMD160 (Text-Quoted-2.09.tar.gz) = c4d248d6345b8c7926159d30a1cdcf462decae50 SHA512 (Text-Quoted-2.09.tar.gz) = c87f619458800678c49d6587f595ab5965410309c10fdf8bd39b34fb9eb06435252bbc6b95553342227f2a1947e87ad70ee61aaf8e34b11e6060cfe28f8fd4ef Size (Text-Quoted-2.09.tar.gz) = 27978 bytes +SHA1 (patch-Makefile.PL) = 01e7bdc4e0fcac8e843b942f1a4359f475cd261e Added files: Index: pkgsrc/textproc/p5-Text-Quoted/patches/patch-Makefile.PL diff -u /dev/null pkgsrc/textproc/p5-Text-Quoted/patches/patch-Makefile.PL:1.1 --- /dev/null Wed Jun 7 00:12:53 2017 +++ pkgsrc/textproc/p5-Text-Quoted/patches/patch-Makefile.PL Wed Jun 7 00:12:53 2017 @@ -0,0 +1,13 @@ +$NetBSD: patch-Makefile.PL,v 1.1 2017/06/07 00:12:53 ryoon Exp $ + +* Fix build with Perl 5.26.0 + +--- Makefile.PL.orig 2015-02-20 17:50:45.000000000 +0000 ++++ Makefile.PL +@@ -1,4 +1,6 @@ + use 5.006; ++use FindBin; ++use lib $FindBin::Bin; + use inc::Module::Install; + + all_from 'lib/Text/Quoted.pm'; --_----------=_149679437374610--