summaryrefslogtreecommitdiff
path: root/math/p5-Math-GMP
diff options
context:
space:
mode:
authorwen <wen@pkgsrc.org>2015-11-14 05:06:47 +0000
committerwen <wen@pkgsrc.org>2015-11-14 05:06:47 +0000
commitffb7900f6cbcfe42ecbf418e0e4209734580fa8b (patch)
tree0b1c65ac4bd5db9dfa7b6eba8b323c90bac1cec6 /math/p5-Math-GMP
parentb56b7ed455857f9861bb735ceb5594d49e5e4770 (diff)
downloadpkgsrc-ffb7900f6cbcfe42ecbf418e0e4209734580fa8b.tar.gz
Update to 2.11
Upstream changes: 2.11 2015-08-16 Shlomif - Got the distribution to have full POD coverage and check all functions for usage. - t/check-funcs-ret-value--rt92593.t - https://rt.cpan.org/Public/Bug/Display.html?id=92593 - CPAN Day! 2.10 2015-08-12 Shlomif - Throw an exception on invalid input to Math::GMP->new; - https://rt.cpan.org/Ticket/Display.html?id=27521 - Thanks to SISYPHUS for the report. - Put RELEASE_TESTING tests under xt instead of t. - https://rt.cpan.org/Ticket/Display.html?id=106365 - Thanks to ilmari for the report and suggested fix. - Document and test some functions that were improperly documented or not tested. - t/check-funcs-ret-value--rt92593.t - https://rt.cpan.org/Public/Bug/Display.html?id=92593 - Still aiming for full POD Coverage. 2.09 2015-07-29 Shlomif - Add the binary-left-shift / << operator. - Add the binary-right-shift / >> operator. - Convert the build system to Dist-Zilla to ease future maintenance. - Add a call to Devel::CheckLib for finding the "gmp.h" header. 2.08 2015-07-28 Shlomif - Add a link to the version control repository at various places. - Get rid of indirect object notation in the code and the examples. - It�塜 a sign of Ancient Perl. - Overload bool to avoid fallback to intify (Hugo) - Fixes RT #101443 - https://rt.cpan.org/Ticket/Display.html?id=101443 - Modified patch applied by Shlomif. - Add tests from DANAJ for large numbers in some functions. - RT #92641 - https://rt.cpan.org/Ticket/Display.html?id=92641
Diffstat (limited to 'math/p5-Math-GMP')
-rw-r--r--math/p5-Math-GMP/Makefile5
-rw-r--r--math/p5-Math-GMP/distinfo11
-rw-r--r--math/p5-Math-GMP/patches/patch-aa16
3 files changed, 7 insertions, 25 deletions
diff --git a/math/p5-Math-GMP/Makefile b/math/p5-Math-GMP/Makefile
index cbe15ac2b85..df70a736ac9 100644
--- a/math/p5-Math-GMP/Makefile
+++ b/math/p5-Math-GMP/Makefile
@@ -1,9 +1,8 @@
-# $NetBSD: Makefile,v 1.17 2015/06/12 10:50:29 wiz Exp $
+# $NetBSD: Makefile,v 1.18 2015/11/14 05:06:47 wen Exp $
#
-DISTNAME= Math-GMP-2.07
+DISTNAME= Math-GMP-2.11
PKGNAME= p5-${DISTNAME}
-PKGREVISION= 1
CATEGORIES= math perl5
MASTER_SITES= ${MASTER_SITE_PERL_CPAN:=Math/}
diff --git a/math/p5-Math-GMP/distinfo b/math/p5-Math-GMP/distinfo
index 744652cc0e2..6af077a7166 100644
--- a/math/p5-Math-GMP/distinfo
+++ b/math/p5-Math-GMP/distinfo
@@ -1,7 +1,6 @@
-$NetBSD: distinfo,v 1.5 2015/11/03 23:33:38 agc Exp $
+$NetBSD: distinfo,v 1.6 2015/11/14 05:06:47 wen Exp $
-SHA1 (Math-GMP-2.07.tar.gz) = 9e2a7f8532e2a530e0fb66a002b452a62a18d58d
-RMD160 (Math-GMP-2.07.tar.gz) = df5cf6081db68684821834a5d1b75cb89c65bc09
-SHA512 (Math-GMP-2.07.tar.gz) = 10c704a04c82b5f4e76223601ad6c97a3c7510f08e63683abac8bf60dd10ed937efbb09d0ac46fd310145696c665b6a97bc7e1adfc410380b58867acd8868e7f
-Size (Math-GMP-2.07.tar.gz) = 24696 bytes
-SHA1 (patch-aa) = 0609ee8dbfdb087c4f08257fe925ac5bb9129a17
+SHA1 (Math-GMP-2.11.tar.gz) = 509074b18cbbd5ea9cc39cb481732a55c2f1e3b1
+RMD160 (Math-GMP-2.11.tar.gz) = afb3dcdb073b5baeaa363919503309cbbac01e75
+SHA512 (Math-GMP-2.11.tar.gz) = 4296717691ec7699ba5e82f5c0b3f83a831f8f0006c09a843ef9fc25227a26bdc6a623a728bebfc5df01124747c081239281d1cf861ee73a42444f15848a23d4
+Size (Math-GMP-2.11.tar.gz) = 31178 bytes
diff --git a/math/p5-Math-GMP/patches/patch-aa b/math/p5-Math-GMP/patches/patch-aa
deleted file mode 100644
index 7e6d5f72e2a..00000000000
--- a/math/p5-Math-GMP/patches/patch-aa
+++ /dev/null
@@ -1,16 +0,0 @@
-$NetBSD: patch-aa,v 1.1 2008/11/18 05:46:55 he Exp $
-
-Trick perl into emitting use of -lgmp. Actual library
-location will be handled via buildlink / wrapper.
-
---- Makefile.PL.orig 2008-11-18 05:39:39.000000000 +0000
-+++ Makefile.PL
-@@ -8,7 +8,7 @@ my $output = WriteMakefile
- (
- 'NAME' => 'Math::GMP',
- 'VERSION_FROM' => 'lib/Math/GMP.pm',
-- 'LIBS' => ['-lgmp'],
-+ 'LIBS' => ["-L$ENV{PREFIX}/lib -lgmp"],
- 'NO_META' => 1,
- );
-