This is a live mirror of the Perl 5 development currently hosted at https://github.com/perl/perl5
Synchronize with bignum 0.24
authorFlorian Ragwitz <rafl@debian.org>
Sat, 4 Sep 2010 13:03:47 +0000 (15:03 +0200)
committerFlorian Ragwitz <rafl@debian.org>
Sat, 4 Sep 2010 13:03:47 +0000 (15:03 +0200)
Porting/Maintainers.pl
dist/bignum/lib/bigint.pm
dist/bignum/lib/bignum.pm
dist/bignum/lib/bigrat.pm
dist/bignum/t/bninfnan.t

index 2ad5dd4..9651cf2 100755 (executable)
@@ -291,7 +291,7 @@ use File::Glob qw(:case);
     'bignum' =>
        {
        'MAINTAINER'    => 'tels',
-       'DISTRIBUTION'  => 'TELS/math/bignum-0.23.tar.gz',
+       'DISTRIBUTION'  => 'FLORA/bignum-0.24.tar.gz',
        'FILES'         => q[dist/bignum],
        'EXCLUDED'      => [ qr{^inc/Module/}, qw(t/pod.t t/pod_cov.t) ],
        'UPSTREAM'      => 'blead',
index e143af6..2e36213 100644 (file)
@@ -1,7 +1,7 @@
 package bigint;
 use 5.006;
 
-$VERSION = '0.23';
+$VERSION = '0.24';
 use Exporter;
 @ISA           = qw( Exporter );
 @EXPORT_OK     = qw( PI e bpi bexp );
index ae7ab17..f5055f4 100644 (file)
@@ -1,7 +1,7 @@
 package bignum;
 use 5.006;
 
-$VERSION = '0.23';
+$VERSION = '0.24';
 use Exporter;
 @ISA           = qw( bigint );
 @EXPORT_OK     = qw( PI e bexp bpi ); 
index 10e8057..89bcab3 100644 (file)
@@ -1,7 +1,7 @@
 package bigrat;
 use 5.006;
 
-$VERSION = '0.23';
+$VERSION = '0.24';
 require Exporter;
 @ISA           = qw( bigint );
 @EXPORT_OK     = qw( PI e bpi bexp );
index fbadb06..82bc22a 100644 (file)
@@ -9,14 +9,7 @@ BEGIN
   {
   $| = 1;
   my $location = $0; $location =~ s/bninfnan.t//i;
-  if ($ENV{PERL_CORE})
-    {
-    #@INC = qw(../lib ../lib/bignum/t); # testing with the core distribution
-    }
-  else
-    {
-    unshift @INC, '../lib';     # for testing manually
-    }
+  unshift @INC, '../lib';     # for testing manually
   if (-d 't')
     {
     chdir 't';