This is a live mirror of the Perl 5 development currently hosted at https://github.com/perl/perl5
Upgrade to Digest-MD5-2.39
authorGisle Aas <gisle@aas.no>
Tue, 9 Jun 2009 21:13:26 +0000 (23:13 +0200)
committerGisle Aas <gisle@aas.no>
Tue, 9 Jun 2009 21:13:26 +0000 (23:13 +0200)
ext/Digest-MD5/Changes
ext/Digest-MD5/MD5.pm
ext/Digest-MD5/Makefile.PL [changed mode: 0755->0644]
ext/Digest-MD5/t/files.t

index 3d1c723..277a27e 100644 (file)
@@ -1,3 +1,16 @@
+2009-06-09   Gisle Aas <gisle@ActiveState.com>
+
+   Release 2.39
+
+   Nicholas Clark (2):
+      Get rid of the PERL_CORE hacks
+      Sync core: Rename ext/Digest/MD5 to ext/Digest-MD5
+
+   Jerry Hedden (1):
+      Handle non-numeric version numbers in ext/Digest/MD5/Makefile.PL
+
+
+
 2008-11-14   Gisle Aas <gisle@ActiveState.com>
 
    Release 2.38
    
    The fallback code introduced in 2.10 did only work for
    perl-5.6.0.  It should now for for perl5.004 and 5.005
-   as well.  Patch by Ville Skyttä <ville@office.popsystems.com>.
+   as well.  Patch by Ville Skyttä <ville@office.popsystems.com>.
 
 
 
index 0f536bb..4e2adbe 100644 (file)
@@ -3,7 +3,7 @@ package Digest::MD5;
 use strict;
 use vars qw($VERSION @ISA @EXPORT_OK);
 
-$VERSION = '2.38';
+$VERSION = '2.39';
 
 require Exporter;
 *import = \&Exporter::import;
old mode 100755 (executable)
new mode 100644 (file)
index bb23687..0a3a016
@@ -4,8 +4,6 @@ use strict;
 use Config qw(%Config);
 use ExtUtils::MakeMaker;
 
-my $PERL_CORE = grep $_ eq "PERL_CORE=1", @ARGV;
-
 my @extra;
 @extra = (DEFINE => "-DU32_ALIGNMENT_REQUIRED") unless free_u32_alignment();
 
@@ -19,7 +17,6 @@ if ($^O eq 'VMS') {
 }
 
 push(@extra, 'INSTALLDIRS'  => 'perl') if $] >= 5.008;
-push(@extra, 'MAN3PODS' => {}) if $PERL_CORE; # Pods built by installman.
 push @extra, 'LICENSE' => 'perl' if eval($ExtUtils::MakeMaker::VERSION) >= "6.30";
 
 WriteMakefile(
index 78f1178..26d64e3 100644 (file)
@@ -5,7 +5,7 @@ BEGIN {
         }
 }
 
-print "1..5\n";
+print "1..3\n";
 
 use strict;
 use Digest::MD5 qw(md5 md5_hex md5_base64);
@@ -20,26 +20,20 @@ use Digest::MD5 qw(md5 md5_hex md5_base64);
 my $EXPECT;
 if (ord "A" == 193) { # EBCDIC
     $EXPECT = <<EOT;
-0b24bb575ac412fcb1754132d1a61996  Changes
 11e8028ee426273db6b6db270a8bb38c  README
-9fe023c06a5fe656107519eb59dd51ab  MD5.pm
 6e556382813f67120863f4f91b7fcdc2  MD5.xs
 276da0aa4e9a08b7fe09430c9c5690aa  rfc1321.txt
 EOT
 } elsif ("\n" eq "\015") { # MacOS
     $EXPECT = <<EOT;
-cac133d6a295c650bd31af946919c72c  Changes
 c95549c6c5e1e1c078b27042f1dc850f  README
-95fe334a197cbb038728ea17fae9896d  MD5.pm
 7aa380c810bc7c1a0bec22cf32bc50d4  MD5.xs
 754b9db19f79dbc4992f7166eb0f37ce  rfc1321.txt
 EOT
 } else {
-    # This is the output of: 'md5sum Changes README MD5.pm MD5.xs rfc1321.txt'
+    # This is the output of: 'md5sum README MD5.xs rfc1321.txt'
     $EXPECT = <<EOT;
-1a3a086dfdcf13dd940ac88e0f57aad8  Changes
 c95549c6c5e1e1c078b27042f1dc850f  README
-95fe334a197cbb038728ea17fae9896d  MD5.pm
 7aa380c810bc7c1a0bec22cf32bc50d4  MD5.xs
 754b9db19f79dbc4992f7166eb0f37ce  rfc1321.txt
 EOT