fb939d4553
Upstream changes: 2016-04-25 v1.51 pjacklam * Sync test files with Math-BigInt-1.999719. 2016-04-22 v1.50 pjacklam * Sync test files with Math-BigInt-1.999718. 2016-01-03 v1.49 pjacklam * Sync test files with Math-BigInt-1.999714. 2015-12-31 v1.48 pjacklam * Sync test files with Math-BigInt-1.999713. 2015-12-14 v1.47 pjacklam * Add patch from Gregor Herrmann (GREGOA) based on code by Dana Jacobsen (DANAJ) to fix problems with the new() method when Perl is compiled with support for 64-bit integers, but on platforms when the underlying OS is 32-bit (CPAN RT #71548). 2015-12-03 v1.46 pjacklam * Add patch from Dana Jacobsen (DANAJ) and add new test file 't/mbi-from-big-scalar.t' regarding CPAN RT #103517. * Fix spelling in GMP.xs ('modifing' -> 'modifying'). * Whitespace/formatting in t/bigintg.t to make it more readble (for me, at least) and more in accordance with the 'perlstyle' manpage. 2015-11-09 v1.45 pjacklam * Sync test files with Math-BigInt-1.999709. * Required version of Test::More is 0.47. 2015-10-29 v1.44 pjacklam * Sync test files with Math-BigInt-1.999707. * Update the README file. * Remove the files INSTALL and LICENSE as this information is already covered in the file README. * Replace 'use vars ...' with 'our ...'. We require a Perl newer than 5.6.0 anyway. * Required version of Math-BigInt is now 1.999706. * Add 'Test::More' to TEST_REQUIRES in Makefile.PL. * Enable 'use warnings'. We require a Perl newer than 5.6.0 anyway. * Add 'assertlib.*\.exe' to MANIFEST.SKIP, since make generates temporary files like 'assertlibzxjE4WfG.exe' on Cygwin. 2015-09-21 v1.43 pjacklam * Sync test files with Math-BigInt-1.999703. * Required version of Math-BigInt is now 1.999703. * Update author information. 2015-09-17 v1.42 pjacklam * Sync test files with Math-BigInt-1.999702. * Required version of Math-BigInt is now 1.999702. 2015-09-11 v1.41 pjacklam lib/Math/BigInt/GMP.pm * Updated version number. Makefile.PL * Updated required version of Math::BigInt. t/bigfltpm.inc * Synced tests with the Math-BigInt distribution. t/bigfltpm.t * Updated number of tests. t/bigintpm.inc * Synced tests with the Math-BigInt distribution. t/bigintpm.t * Updated number of tests. 2015-08-18 v1.40 pjacklam CHANGES * Add changes for the newest release. * Reorder change entries into descending chronological order. lib/Devel/CheckLib.pm * Update bundled Devel::CheckLib from v1.01 to v1.03. Makefile.PL * Update required version of Math-BigInt to 1.9994. t/01load.t * Improve formatting of module version information. t/bigfltpm.t * Use the correct backend, in this case Math::BigInt::GMP. * Skip test specific for the Math::BigInt::Calc backend. t/bigintpm.inc * Rather than an early exit(), use skip() to skip tests. t/bigintpm.t * Use the correct backend, in this case Math::BigInt::GMP. t/biglog.t * Use the correct backend, in this case Math::BigInt::GMP. This was correct in v1.21, but has been wrong since then. t/bigroot.t * Use the correct backend, in this case Math::BigInt::GMP. This was correct up until v1.32, but has been wrong since then. lib/Math/BigInt/GMP.pm * Increment Math::BigInt::GMP version number to 1.40. 2015-08-17 v1.39 pjacklam * Updated test files with those from Math-BigInt-1.9997. 2014-04-03 v1.38 pjacklam * Updated test files from the Math::BigInt distribution (Peter John Acklam). * Updated POD (Peter John Acklam) * Updated bundled Devel::CheckLib from v0.93 to v1.01 (Peter John Acklam).
20 lines
641 B
Makefile
20 lines
641 B
Makefile
# $NetBSD: Makefile,v 1.15 2016/08/09 00:01:14 wen Exp $
|
|
|
|
DISTNAME= Math-BigInt-GMP-1.51
|
|
PKGNAME= p5-${DISTNAME}
|
|
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 module for arbitrary size integer math via the GMP library
|
|
LICENSE= ${PERL5_LICENSE}
|
|
|
|
DEPENDS+= p5-Math-BigInt>=1.999719:../../math/p5-Math-BigInt
|
|
|
|
PERL5_REQD+= 5.14.2 # for Math::BigInt 1.997
|
|
PERL5_PACKLIST= auto/Math/BigInt/GMP/.packlist
|
|
|
|
.include "../../devel/gmp/buildlink3.mk"
|
|
.include "../../lang/perl5/module.mk"
|
|
.include "../../mk/bsd.pkg.mk"
|