summaryrefslogtreecommitdiff
path: root/math/p5-Math-BigInt-GMP
diff options
context:
space:
mode:
authorsno <sno@pkgsrc.org>2010-09-23 21:58:13 +0000
committersno <sno@pkgsrc.org>2010-09-23 21:58:13 +0000
commit8e7669c37dbd34b5073939fec02caf4bfc9c444a (patch)
treeaf8ec2f6a5d1b503b0660cc5969f5cd6b2a65789 /math/p5-Math-BigInt-GMP
parentdcff09cfdbe4e4b96ba15cf2e14b29d37b691749 (diff)
downloadpkgsrc-8e7669c37dbd34b5073939fec02caf4bfc9c444a.tar.gz
Updating math/p5-Math-BigInt-GMP from 1.24nb2 to 1.32
pkgsrc changes: - adjust license - adjust patch to find libgmp - require perl>=5.12.2nb1 to get Math::BigInt>=1.90 Upstream changes: 2010-09-23 v1.32 rafl 5559 tests * Re-upload 1.31 as a stable release without further changes. 2010-09-21 v1.31 rafl 5559 tests DEVELOPMENT RELEASE * Add hooks for Storable (de-)serialisation. * Avoid failure in the destructor if someone blessed nonsense into our class. 2010-09-20 v1.30 rafl 5558 tests * Re-upload 1.29 as a stable release without further changes. 2010-09-19 v1.29 rafl 5558 tests DEVELOPMENT RELEASE * Attempt to fix a bug in the bundled version Devel::CheckLib. It used to ignore @Config{qw(ccflags ldflags)} and only tried to look for headers and libraries with the compiler's default include- and lib-paths as well as those explicitly asked for by the user. 2010-09-17 v1.28 rafl 5558 tests * Re-upload 1.27 without further changes as a stable release. 2010-09-15 v1.27 rafl 5558 tests DEVELOPMENT RELEASE * Try to support perls older than 5.8.8 again. Tested with 5.8.7 and 5.6.2. 2010-09-14 v1.26 rafl 5558 tests DEVELOPMENT RELEASE * Error out early if libgmp or gmp.h are missing. * Clone Math::BigInt::GMP instances on thread cloning. This should make the module threadsafe. 2010-09-10 v1.25 rafl 5536 tests * Fix tests with Math::BigInt >= 1.90 and depend on it.
Diffstat (limited to 'math/p5-Math-BigInt-GMP')
-rw-r--r--math/p5-Math-BigInt-GMP/Makefile9
-rw-r--r--math/p5-Math-BigInt-GMP/distinfo10
-rw-r--r--math/p5-Math-BigInt-GMP/patches/patch-aa11
3 files changed, 16 insertions, 14 deletions
diff --git a/math/p5-Math-BigInt-GMP/Makefile b/math/p5-Math-BigInt-GMP/Makefile
index 5055fcd91a9..843a0529ca7 100644
--- a/math/p5-Math-BigInt-GMP/Makefile
+++ b/math/p5-Math-BigInt-GMP/Makefile
@@ -1,16 +1,17 @@
-# $NetBSD: Makefile,v 1.4 2010/08/21 16:35:11 seb Exp $
+# $NetBSD: Makefile,v 1.5 2010/09/23 21:58:13 sno Exp $
#
-DISTNAME= Math-BigInt-GMP-1.24
+DISTNAME= Math-BigInt-GMP-1.32
PKGNAME= p5-${DISTNAME}
-PKGREVISION= 2
CATEGORIES= math perl5
MASTER_SITES= ${MASTER_SITE_PERL_CPAN:=Math/}
MAINTAINER= pkgsrc-users@NetBSD.org
HOMEPAGE= http://search.cpan.org/dist/Math-BigInt-GMP/
COMMENT= Perl 5 module for arbitrary size integer math via the GMP library
-LICENSE= gnu-gpl-v2 # OR artistic
+LICENSE= ${PERL5_LICENSE}
+
+PERL5_REQD+= 5.12.2nb1 # for Math::BigInt 1.90
PKG_DESTDIR_SUPPORT= user-destdir
diff --git a/math/p5-Math-BigInt-GMP/distinfo b/math/p5-Math-BigInt-GMP/distinfo
index 3a0aa0fa590..e307487f3c0 100644
--- a/math/p5-Math-BigInt-GMP/distinfo
+++ b/math/p5-Math-BigInt-GMP/distinfo
@@ -1,6 +1,6 @@
-$NetBSD: distinfo,v 1.2 2009/05/03 18:07:08 sno Exp $
+$NetBSD: distinfo,v 1.3 2010/09/23 21:58:13 sno Exp $
-SHA1 (Math-BigInt-GMP-1.24.tar.gz) = c9d9b14fcf9c8e961c66e003d0ffb6c51bd062c7
-RMD160 (Math-BigInt-GMP-1.24.tar.gz) = a6ae6aa05549fc249a0f8291613dfcc5a2547743
-Size (Math-BigInt-GMP-1.24.tar.gz) = 43131 bytes
-SHA1 (patch-aa) = 4a861fd398b19938345fad1b781ef34f2408c770
+SHA1 (Math-BigInt-GMP-1.32.tar.gz) = 8807d88ff3d003a5f5192489797f2da8b010cfdc
+RMD160 (Math-BigInt-GMP-1.32.tar.gz) = f10bc70a54596a4945fe5000c643ce70bc4f2829
+Size (Math-BigInt-GMP-1.32.tar.gz) = 49460 bytes
+SHA1 (patch-aa) = 9697876f32b3ea24f43516ed909044e2cf6a795e
diff --git a/math/p5-Math-BigInt-GMP/patches/patch-aa b/math/p5-Math-BigInt-GMP/patches/patch-aa
index 40116517ff7..422d7e09956 100644
--- a/math/p5-Math-BigInt-GMP/patches/patch-aa
+++ b/math/p5-Math-BigInt-GMP/patches/patch-aa
@@ -1,16 +1,17 @@
-$NetBSD: patch-aa,v 1.1.1.1 2009/03/07 02:19:33 hubertf Exp $
+$NetBSD: patch-aa,v 1.2 2010/09/23 21:58:13 sno Exp $
From p5-Math-GMP/patches/patch-aa:
Trick perl into emitting use of -lgmp. Actual library
location will be handled via buildlink / wrapper.
---- Makefile.PL.orig 2007-07-25 20:13:12.000000000 +0200
+--- Makefile.PL.orig 2010-09-14 16:58:27.000000000 +0000
+++ Makefile.PL
-@@ -49,5 +49,5 @@ WriteMakefile(
- Math::BigInt => 1.87,
+@@ -53,6 +53,6 @@ WriteMakefile(
+ Math::BigInt => 1.90,
XSLoader => 0.02,
- },
+ },
- 'LIBS' => ['-lgmp'],
+ 'LIBS' => ["-L$ENV{PREFIX}/lib -lgmp"],
+ 'SIGN' => 1,
);