Received: by mail.netbsd.org (Postfix, from userid 605) id 09AD584D36; Thu, 27 Dec 2018 15:08:19 +0000 (UTC) Received: from localhost (localhost [127.0.0.1]) by mail.netbsd.org (Postfix) with ESMTP id 8B3A384D35 for ; Thu, 27 Dec 2018 15:08:18 +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 6Gu2G0WKyv3m for ; Thu, 27 Dec 2018 15:08:18 +0000 (UTC) Received: from cvs.NetBSD.org (ivanova.netbsd.org [199.233.217.197]) by mail.netbsd.org (Postfix) with ESMTP id 197DA84C82 for ; Thu, 27 Dec 2018 15:08:18 +0000 (UTC) Received: by cvs.NetBSD.org (Postfix, from userid 500) id 17573FB16; Thu, 27 Dec 2018 15:08:18 +0000 (UTC) Content-Transfer-Encoding: 7bit Content-Type: multipart/mixed; boundary="_----------=_1545923298244960" MIME-Version: 1.0 Date: Thu, 27 Dec 2018 15:08:18 +0000 From: "Joerg Sonnenberger" Subject: CVS commit: pkgsrc/devel/p5-SVN-Mirror To: pkgsrc-changes@NetBSD.org Reply-To: joerg@netbsd.org X-Mailer: log_accum Message-Id: <20181227150818.17573FB16@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. --_----------=_1545923298244960 Content-Disposition: inline Content-Transfer-Encoding: 8bit Content-Type: text/plain; charset="US-ASCII" Module Name: pkgsrc Committed By: joerg Date: Thu Dec 27 15:08:18 UTC 2018 Modified Files: pkgsrc/devel/p5-SVN-Mirror: distinfo Added Files: pkgsrc/devel/p5-SVN-Mirror/patches: patch-Makefile.PL Log Message: Drop overeager SVN check that fails with double digit version numbers. To generate a diff of this commit: cvs rdiff -u -r1.14 -r1.15 pkgsrc/devel/p5-SVN-Mirror/distinfo cvs rdiff -u -r0 -r1.1 pkgsrc/devel/p5-SVN-Mirror/patches/patch-Makefile.PL Please note that diffs are not public domain; they are subject to the copyright notices on the relevant files. --_----------=_1545923298244960 Content-Disposition: inline Content-Length: 1568 Content-Transfer-Encoding: binary Content-Type: text/x-diff; charset=us-ascii Modified files: Index: pkgsrc/devel/p5-SVN-Mirror/distinfo diff -u pkgsrc/devel/p5-SVN-Mirror/distinfo:1.14 pkgsrc/devel/p5-SVN-Mirror/distinfo:1.15 --- pkgsrc/devel/p5-SVN-Mirror/distinfo:1.14 Tue Nov 3 03:28:43 2015 +++ pkgsrc/devel/p5-SVN-Mirror/distinfo Thu Dec 27 15:08:17 2018 @@ -1,6 +1,7 @@ -$NetBSD: distinfo,v 1.14 2015/11/03 03:28:43 agc Exp $ +$NetBSD: distinfo,v 1.15 2018/12/27 15:08:17 joerg Exp $ SHA1 (SVN-Mirror-0.75.tar.gz) = ce78647269f5c984aea444dc503e3f8dec6f4866 RMD160 (SVN-Mirror-0.75.tar.gz) = 4912cfcb93d1b1e91fc11e3ab5134d4096a44b5d SHA512 (SVN-Mirror-0.75.tar.gz) = 0029edf67c6983944d3cc062b8712a6d46d30f46d0f5c3e035a487ff75135d00b861bc198e0cdb78f904d103aced26b8aa7ef7ca01c948ba1370ee2e72ae4d81 Size (SVN-Mirror-0.75.tar.gz) = 122577 bytes +SHA1 (patch-Makefile.PL) = 930d9e866ca68f2b9d8eb2e62f4a96de941a9eff Added files: Index: pkgsrc/devel/p5-SVN-Mirror/patches/patch-Makefile.PL diff -u /dev/null pkgsrc/devel/p5-SVN-Mirror/patches/patch-Makefile.PL:1.1 --- /dev/null Thu Dec 27 15:08:18 2018 +++ pkgsrc/devel/p5-SVN-Mirror/patches/patch-Makefile.PL Thu Dec 27 15:08:17 2018 @@ -0,0 +1,13 @@ +$NetBSD: patch-Makefile.PL,v 1.1 2018/12/27 15:08:17 joerg Exp $ + +Check double digit Subversion numbers. + +--- Makefile.PL.orig 2018-12-25 23:16:18.984396057 +0000 ++++ Makefile.PL +@@ -32,6 +32,3 @@ include('ExtUtils::AutoInstall'); + auto_install(); + #sign(1); + WriteAll( sign => 1); +- +-die "SVN::Core $required_svn must be manually installed" +- unless eval {require SVN::Core} && $SVN::Core::VERSION >= $required_svn; --_----------=_1545923298244960--