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 2C0F17A237 for ; Wed, 7 Jun 2017 00:01:35 +0000 (UTC) Received: by mail.netbsd.org (Postfix, from userid 605) id 9A0CA84DAA; Wed, 7 Jun 2017 00:01:34 +0000 (UTC) Received: from localhost (localhost [127.0.0.1]) by mail.netbsd.org (Postfix) with ESMTP id E75A884D90 for ; Wed, 7 Jun 2017 00:01:33 +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 wSi5vlwVqp2J for ; Wed, 7 Jun 2017 00:01:33 +0000 (UTC) Received: from cvs.NetBSD.org (ivanova.netbsd.org [199.233.217.197]) by mail.netbsd.org (Postfix) with ESMTP id 3D35084D7C for ; Wed, 7 Jun 2017 00:01:33 +0000 (UTC) Received: by cvs.NetBSD.org (Postfix, from userid 500) id 3B610FAB6; Wed, 7 Jun 2017 00:01:33 +0000 (UTC) Content-Transfer-Encoding: 7bit Content-Type: multipart/mixed; boundary="_----------=_1496793693137070" MIME-Version: 1.0 Date: Wed, 7 Jun 2017 00:01:33 +0000 From: "Ryo ONODERA" Subject: CVS commit: pkgsrc/www/p5-Starlet To: pkgsrc-changes@NetBSD.org Reply-To: ryoon@netbsd.org X-Mailer: log_accum Message-Id: <20170607000133.3B610FAB6@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. --_----------=_1496793693137070 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:01:33 UTC 2017 Modified Files: pkgsrc/www/p5-Starlet: distinfo Added Files: pkgsrc/www/p5-Starlet/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/www/p5-Starlet/distinfo cvs rdiff -u -r0 -r1.1 pkgsrc/www/p5-Starlet/patches/patch-Makefile.PL Please note that diffs are not public domain; they are subject to the copyright notices on the relevant files. --_----------=_1496793693137070 Content-Disposition: inline Content-Length: 1375 Content-Transfer-Encoding: binary Content-Type: text/x-diff; charset=us-ascii Modified files: Index: pkgsrc/www/p5-Starlet/distinfo diff -u pkgsrc/www/p5-Starlet/distinfo:1.10 pkgsrc/www/p5-Starlet/distinfo:1.11 --- pkgsrc/www/p5-Starlet/distinfo:1.10 Sat Jul 9 07:05:56 2016 +++ pkgsrc/www/p5-Starlet/distinfo Wed Jun 7 00:01:33 2017 @@ -1,6 +1,7 @@ -$NetBSD: distinfo,v 1.10 2016/07/09 07:05:56 wen Exp $ +$NetBSD: distinfo,v 1.11 2017/06/07 00:01:33 ryoon Exp $ SHA1 (Starlet-0.30.tar.gz) = 31bee234b1f3f15ded8db4fac2ab744296d429d3 RMD160 (Starlet-0.30.tar.gz) = 1fa18408286e2f770e51fb29406ac81b4cd94608 SHA512 (Starlet-0.30.tar.gz) = 24ee9c3ea6a0f90cef1f9a4c8657b03133fc64fedc70ffc590b34e45105f7e36cb3be869319e6d42a84dfae23ea6085fe06881d2dd7e88f04ba53619c80eeba1 Size (Starlet-0.30.tar.gz) = 110843 bytes +SHA1 (patch-Makefile.PL) = ac9882a37254bcc4d1601862a0a645c3b98b388b Added files: Index: pkgsrc/www/p5-Starlet/patches/patch-Makefile.PL diff -u /dev/null pkgsrc/www/p5-Starlet/patches/patch-Makefile.PL:1.1 --- /dev/null Wed Jun 7 00:01:33 2017 +++ pkgsrc/www/p5-Starlet/patches/patch-Makefile.PL Wed Jun 7 00:01:33 2017 @@ -0,0 +1,12 @@ +$NetBSD: patch-Makefile.PL,v 1.1 2017/06/07 00:01:33 ryoon Exp $ + +* Fix build with Perl 5.26.0 + +--- Makefile.PL.orig 2016-05-17 07:09:41.000000000 +0000 ++++ Makefile.PL +@@ -1,3 +1,5 @@ ++use FindBin; ++use lib $FindBin::Bin; + use inc::Module::Install; + + all_from 'lib/Starlet.pm'; --_----------=_1496793693137070--