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 9964E7A0C4 for ; Wed, 18 Jan 2017 13:48:36 +0000 (UTC) Received: by mail.netbsd.org (Postfix, from userid 605) id 462508563D; Wed, 18 Jan 2017 13:48:36 +0000 (UTC) Received: from localhost (localhost [127.0.0.1]) by mail.netbsd.org (Postfix) with ESMTP id CBBF785639 for ; Wed, 18 Jan 2017 13:48:35 +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 wpC7nq9aeW26 for ; Wed, 18 Jan 2017 13:48:35 +0000 (UTC) Received: from cvs.NetBSD.org (unknown [IPv6:2001:470:a085:999:28c:faff:fe03:5984]) by mail.netbsd.org (Postfix) with ESMTP id 0D09A84CED for ; Wed, 18 Jan 2017 13:48:35 +0000 (UTC) Received: by cvs.NetBSD.org (Postfix, from userid 500) id 083ECFBA6; Wed, 18 Jan 2017 13:48:35 +0000 (UTC) Content-Transfer-Encoding: 7bit Content-Type: multipart/mixed; boundary="_----------=_1484747315150240" MIME-Version: 1.0 Date: Wed, 18 Jan 2017 13:48:35 +0000 From: "Wen Heping" Subject: CVS commit: pkgsrc/math/p5-Math-BigInt-GMP To: pkgsrc-changes@NetBSD.org Reply-To: wen@netbsd.org X-Mailer: log_accum Message-Id: <20170118134835.083ECFBA6@cvs.NetBSD.org> Sender: pkgsrc-changes-owner@NetBSD.org List-Id: pkgsrc-changes.NetBSD.org Precedence: bulk This is a multi-part message in MIME format. --_----------=_1484747315150240 Content-Disposition: inline Content-Transfer-Encoding: 8bit Content-Type: text/plain; charset="US-ASCII" Module Name: pkgsrc Committed By: wen Date: Wed Jan 18 13:48:34 UTC 2017 Modified Files: pkgsrc/math/p5-Math-BigInt-GMP: Makefile distinfo pkgsrc/math/p5-Math-BigInt-GMP/patches: patch-aa Log Message: Update to 1.6003 Update DEPENDS Upstream changes: 2017-01-11 v1.6003 pjacklam * Fix syntax for required version of Math::BigInt::Lib. * Better checking of POD coverage. * Sync test files with Math-BigInt-1.999808. 2016-12-03 v1.6002 pjacklam * Use ExtUtils::MakeMaker rather than Module::Install in Makefile.PL * Don't use Devel::CheckLib. It fails on Windows even in cases where this distribution would build just fine. * Update BUGS file. * Remove author information in LICENSE file. * Inform that the TODO file is not up to date. * Remove INSTALL file. The information is in the README file. 2016-11-23 v1.6001 pjacklam * Sync test files with Math-BigInt-1.999801. * Correct version number in CHANGES file. 2016-11-15 v1.6000 pjacklam * Sync test files with Math-BigInt-1.999800. * Update bundled Devel::CheckLib from v1.03 to v1.07. * Math::BigInt::GMP is now a subclass of Math::BigInt::Lib, so remove pure Perl methods from Math::BigInt::GMP that are implemented in the superclass Math::BigInt::Lib. The methods removed are _digit(), _num(), _nok(), and _log_int(). The version of _log_int() implemented in Math::BigInt::GMP was buggy anyway. * Fix _check() so it doesn't give a "use of uninitialized value" warning if given an undefined "object". * Trim whitespace in all files. * Better use of the functionality in Test::More in t/bigintg.t. To generate a diff of this commit: cvs rdiff -u -r1.15 -r1.16 pkgsrc/math/p5-Math-BigInt-GMP/Makefile cvs rdiff -u -r1.7 -r1.8 pkgsrc/math/p5-Math-BigInt-GMP/distinfo cvs rdiff -u -r1.5 -r1.6 pkgsrc/math/p5-Math-BigInt-GMP/patches/patch-aa Please note that diffs are not public domain; they are subject to the copyright notices on the relevant files. --_----------=_1484747315150240 Content-Disposition: inline Content-Length: 3738 Content-Transfer-Encoding: binary Content-Type: text/x-diff; charset=us-ascii Modified files: Index: pkgsrc/math/p5-Math-BigInt-GMP/Makefile diff -u pkgsrc/math/p5-Math-BigInt-GMP/Makefile:1.15 pkgsrc/math/p5-Math-BigInt-GMP/Makefile:1.16 --- pkgsrc/math/p5-Math-BigInt-GMP/Makefile:1.15 Tue Aug 9 00:01:14 2016 +++ pkgsrc/math/p5-Math-BigInt-GMP/Makefile Wed Jan 18 13:48:34 2017 @@ -1,6 +1,6 @@ -# $NetBSD: Makefile,v 1.15 2016/08/09 00:01:14 wen Exp $ +# $NetBSD: Makefile,v 1.16 2017/01/18 13:48:34 wen Exp $ -DISTNAME= Math-BigInt-GMP-1.51 +DISTNAME= Math-BigInt-GMP-1.6003 PKGNAME= p5-${DISTNAME} CATEGORIES= math perl5 MASTER_SITES= ${MASTER_SITE_PERL_CPAN:=Math/} @@ -10,7 +10,7 @@ HOMEPAGE= http://search.cpan.org/dist/Ma COMMENT= Perl module for arbitrary size integer math via the GMP library LICENSE= ${PERL5_LICENSE} -DEPENDS+= p5-Math-BigInt>=1.999719:../../math/p5-Math-BigInt +DEPENDS+= p5-Math-BigInt>=1.999808:../../math/p5-Math-BigInt PERL5_REQD+= 5.14.2 # for Math::BigInt 1.997 PERL5_PACKLIST= auto/Math/BigInt/GMP/.packlist Index: pkgsrc/math/p5-Math-BigInt-GMP/distinfo diff -u pkgsrc/math/p5-Math-BigInt-GMP/distinfo:1.7 pkgsrc/math/p5-Math-BigInt-GMP/distinfo:1.8 --- pkgsrc/math/p5-Math-BigInt-GMP/distinfo:1.7 Tue Aug 9 00:01:14 2016 +++ pkgsrc/math/p5-Math-BigInt-GMP/distinfo Wed Jan 18 13:48:34 2017 @@ -1,7 +1,7 @@ -$NetBSD: distinfo,v 1.7 2016/08/09 00:01:14 wen Exp $ +$NetBSD: distinfo,v 1.8 2017/01/18 13:48:34 wen Exp $ -SHA1 (Math-BigInt-GMP-1.51.tar.gz) = f4db763aa97330c3f2fc58c250c31b0e6154e362 -RMD160 (Math-BigInt-GMP-1.51.tar.gz) = 2816e57f0a59d60727b9daead098e61ba1fe4710 -SHA512 (Math-BigInt-GMP-1.51.tar.gz) = f2e56ce48e9a387821b409078228d20f7348eef5eea0aac4844a0f29340c7a2677693fda40c2bb85527f2f77cd9519401109b037040fc18266b401cfae134601 -Size (Math-BigInt-GMP-1.51.tar.gz) = 59701 bytes -SHA1 (patch-aa) = 326c7ba8a7d3a08add96801349c6908f742e2fd5 +SHA1 (Math-BigInt-GMP-1.6003.tar.gz) = 7b4c99be6c034d8d518e4a621d7580fdcfa5674c +RMD160 (Math-BigInt-GMP-1.6003.tar.gz) = 8d332fc2a664aec58d53eb7c2cf4abcb4abbc1a6 +SHA512 (Math-BigInt-GMP-1.6003.tar.gz) = af2b510aa07fb951a8dc3a4a0e1b2cc43e81a606ed16bfd0a728547b556e8094c84804f055e43d5f65893a18e3974da98c937f14d6094ca8452eb78246c2a7ef +Size (Math-BigInt-GMP-1.6003.tar.gz) = 2439964 bytes +SHA1 (patch-aa) = 86446e8fd488f280669f2cc8f5596e4c56d865a2 Index: pkgsrc/math/p5-Math-BigInt-GMP/patches/patch-aa diff -u pkgsrc/math/p5-Math-BigInt-GMP/patches/patch-aa:1.5 pkgsrc/math/p5-Math-BigInt-GMP/patches/patch-aa:1.6 --- pkgsrc/math/p5-Math-BigInt-GMP/patches/patch-aa:1.5 Tue Aug 9 00:01:14 2016 +++ pkgsrc/math/p5-Math-BigInt-GMP/patches/patch-aa Wed Jan 18 13:48:34 2017 @@ -1,15 +1,16 @@ -$NetBSD: patch-aa,v 1.5 2016/08/09 00:01:14 wen Exp $ +$NetBSD: patch-aa,v 1.6 2017/01/18 13:48:34 wen Exp $ Trick perl into emitting use of -lgmp. Actual library location will be handled via buildlink / wrapper. ---- Makefile.PL.orig 2016-08-08 23:57:46.000000000 +0000 +--- Makefile.PL.orig 2017-01-18 13:30:25.000000000 +0000 +++ Makefile.PL -@@ -33,6 +33,6 @@ WriteMakefile - TEST_REQUIRES => { - Test::More => 0.47, - }, -- 'LIBS' => ['-lgmp'], -+ 'LIBS' => ["-L$ENV{PREFIX}/lib -lgmp"], - 'SIGN' => 1, - ); +@@ -30,7 +30,7 @@ WriteMakefile + 'Math::BigInt' => 1.999808, + }, + 'LICENSE' => 'perl_5', +- 'LIBS' => ['-lgmp'], # e.g., '-lm' ++ 'LIBS' => ["-L$ENV{PREFIX}/lib -lgmp"], # e.g., '-lm' + 'DEFINE' => '', # e.g., '-DHAVE_SOMETHING' + 'INC' => '', # e.g., '-I/usr/include/other' + 'SIGN' => 1, --_----------=_1484747315150240--