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 564447A179 for ; Wed, 7 Jun 2017 00:25:41 +0000 (UTC) Received: by mail.netbsd.org (Postfix, from userid 605) id 07D4F855E9; Wed, 7 Jun 2017 00:25:41 +0000 (UTC) Received: from localhost (localhost [127.0.0.1]) by mail.netbsd.org (Postfix) with ESMTP id 8CB8B855E6 for ; Wed, 7 Jun 2017 00:25:40 +0000 (UTC) X-Virus-Scanned: amavisd-new at netbsd.org Received: from mail.netbsd.org ([127.0.0.1]) by localhost (mail.netbsd.org [127.0.0.1]) (amavisd-new, port 10025) with ESMTP id WtuyGJpFXePF for ; Wed, 7 Jun 2017 00:25:40 +0000 (UTC) Received: from cvs.NetBSD.org (ivanova.netbsd.org [199.233.217.197]) by mail.netbsd.org (Postfix) with ESMTP id 1E10584D7C for ; Wed, 7 Jun 2017 00:25:40 +0000 (UTC) Received: by cvs.NetBSD.org (Postfix, from userid 500) id 19AC2FAB6; Wed, 7 Jun 2017 00:25:40 +0000 (UTC) Content-Transfer-Encoding: 7bit Content-Type: multipart/mixed; boundary="_----------=_1496795140149140" MIME-Version: 1.0 Date: Wed, 7 Jun 2017 00:25:40 +0000 From: "Ryo ONODERA" Subject: CVS commit: pkgsrc/devel/p5-Declare-Constraints-Simple To: pkgsrc-changes@NetBSD.org Reply-To: ryoon@netbsd.org X-Mailer: log_accum Message-Id: <20170607002540.19AC2FAB6@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. --_----------=_1496795140149140 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:25:40 UTC 2017 Modified Files: pkgsrc/devel/p5-Declare-Constraints-Simple: distinfo Added Files: pkgsrc/devel/p5-Declare-Constraints-Simple/patches: patch-Makefile.PL Log Message: Fix build with Perl 5.26.0 To generate a diff of this commit: cvs rdiff -u -r1.2 -r1.3 pkgsrc/devel/p5-Declare-Constraints-Simple/distinfo cvs rdiff -u -r0 -r1.1 \ pkgsrc/devel/p5-Declare-Constraints-Simple/patches/patch-Makefile.PL Please note that diffs are not public domain; they are subject to the copyright notices on the relevant files. --_----------=_1496795140149140 Content-Disposition: inline Content-Length: 1611 Content-Transfer-Encoding: binary Content-Type: text/x-diff; charset=us-ascii Modified files: Index: pkgsrc/devel/p5-Declare-Constraints-Simple/distinfo diff -u pkgsrc/devel/p5-Declare-Constraints-Simple/distinfo:1.2 pkgsrc/devel/p5-Declare-Constraints-Simple/distinfo:1.3 --- pkgsrc/devel/p5-Declare-Constraints-Simple/distinfo:1.2 Tue Nov 3 03:28:08 2015 +++ pkgsrc/devel/p5-Declare-Constraints-Simple/distinfo Wed Jun 7 00:25:39 2017 @@ -1,6 +1,7 @@ -$NetBSD: distinfo,v 1.2 2015/11/03 03:28:08 agc Exp $ +$NetBSD: distinfo,v 1.3 2017/06/07 00:25:39 ryoon Exp $ SHA1 (Declare-Constraints-Simple-0.03.tar.gz) = ff668b68046d721f896428d0a622e64d92fdbae2 RMD160 (Declare-Constraints-Simple-0.03.tar.gz) = f6ad718179a001ec5919ec1dfd9d4042578a6e35 SHA512 (Declare-Constraints-Simple-0.03.tar.gz) = acf34e8ce62b5abbd59b03d67bf91474565a32048aab84440c5895c2acde2561dab773c124e9b26ef6f25c87804ec38db73e0eb08ed9626cabdd86cb5f38de7a Size (Declare-Constraints-Simple-0.03.tar.gz) = 30336 bytes +SHA1 (patch-Makefile.PL) = fd795223e3891a63969c582414209cb372db39dc Added files: Index: pkgsrc/devel/p5-Declare-Constraints-Simple/patches/patch-Makefile.PL diff -u /dev/null pkgsrc/devel/p5-Declare-Constraints-Simple/patches/patch-Makefile.PL:1.1 --- /dev/null Wed Jun 7 00:25:40 2017 +++ pkgsrc/devel/p5-Declare-Constraints-Simple/patches/patch-Makefile.PL Wed Jun 7 00:25:39 2017 @@ -0,0 +1,12 @@ +$NetBSD: patch-Makefile.PL,v 1.1 2017/06/07 00:25:39 ryoon Exp $ + +* Fix build with Perl 5.26.0 + +--- Makefile.PL.orig 2006-09-11 11:20:55.000000000 +0000 ++++ Makefile.PL +@@ -1,3 +1,5 @@ ++use FindBin; ++use lib $FindBin::Bin; + use inc::Module::Install; + use warnings; + use strict; --_----------=_1496795140149140--