Change 16427 by jhi@alpha on 2002/05/06 12:01:36

        Upgrade to Digest::MD5 2.20.

Affected files ...

.... //depot/perl/ext/Digest/MD5/Changes#5 edit
.... //depot/perl/ext/Digest/MD5/MD5.pm#7 edit
.... //depot/perl/ext/Digest/MD5/t/files.t#13 edit
.... //depot/perl/ext/Digest/MD5/t/md5-aaa.t#2 edit

Differences ...

==== //depot/perl/ext/Digest/MD5/Changes#5 (text) ====
Index: perl/ext/Digest/MD5/Changes
--- perl/ext/Digest/MD5/Changes#4~16324~        Wed May  1 19:47:38 2002
+++ perl/ext/Digest/MD5/Changes Mon May  6 05:01:36 2002
@@ -1,3 +1,16 @@
+2002-05-05   Gisle Aas <[EMAIL PROTECTED]>
+
+   Release 2.20
+
+   More synchronization with tweaks Jarkko have done to the
+   bleadperl test suite. This time various EBCDIC hacks.
+
+   Outside PERL_CORE the md5-aaa.t test loaded the wrong version of
+   the module (and would fail if no previous Digest::MD5 was installed).
+   Patch by Mike Stok <[EMAIL PROTECTED]>
+
+
+
 2002-05-01   Gisle Aas <[EMAIL PROTECTED]>
 
    Release 2.19

==== //depot/perl/ext/Digest/MD5/MD5.pm#7 (text) ====
Index: perl/ext/Digest/MD5/MD5.pm
--- perl/ext/Digest/MD5/MD5.pm#6~16324~ Wed May  1 19:47:38 2002
+++ perl/ext/Digest/MD5/MD5.pm  Mon May  6 05:01:36 2002
@@ -3,7 +3,7 @@
 use strict;
 use vars qw($VERSION @ISA @EXPORT_OK);
 
-$VERSION = '2.19';  # $Date: 2002/05/02 02:40:12 $
+$VERSION = '2.20';  # $Date: 2002/05/06 05:15:09 $
 
 require Exporter;
 *import = \&Exporter::import;

==== //depot/perl/ext/Digest/MD5/t/files.t#13 (text) ====
Index: perl/ext/Digest/MD5/t/files.t
--- perl/ext/Digest/MD5/t/files.t#12~16379~     Fri May  3 08:43:47 2002
+++ perl/ext/Digest/MD5/t/files.t       Mon May  6 05:01:36 2002
@@ -23,17 +23,17 @@
 
 if (ord "A" == 193) { # EBCDIC
     $EXPECT = <<EOT;
-a1ee2b18d1e05bdde3a93009e7f9dfda  Changes
-5a591a47e8c40fe4b78c744111511c45  README
-c9c83e6dbad5f41722338e67d4428077  MD5.pm
-4850753428db9422e8e5f97b401d5a13  MD5.xs
-276da0aa4e9a08b7fe09430c9c5690aa  rfc1321.txt
+b362148b17a451f0d81e0ebb2487756e Changes
+5a591a47e8c40fe4b78c744111511c45 README
+3157e2d2e27dacddea7c54efddc32520 MD5.pm
+4850753428db9422e8e5f97b401d5a13 MD5.xs
+276da0aa4e9a08b7fe09430c9c5690aa rfc1321.txt
 EOT
 } else {
     $EXPECT = <<EOT;
-3866f3543ef41421c6aed3f198e2e9f5  Changes
+0106b67df0dbf9f4d65e9fc04907745b  Changes
 3519f3d02c7c91158f732f0f00064657  README
-01cd8fd24bd46ce1db53074d2af6001a  MD5.pm
+88c35ca46c7e8069fb5ae00c091c98d6  MD5.pm
 1be293491bba726810f8e87671ee0328  MD5.xs
 754b9db19f79dbc4992f7166eb0f37ce  rfc1321.txt
 EOT
@@ -74,9 +74,9 @@
        next;
      }
      if ($ENV{EBCDIC_MD5SUM}) {
-         use Encode 'from_to';
+         require Encode;
         my $data = cat_file($file);    
-        from_to($data, 'latin1', 'cp1047');
+        Encode::from_to($data, 'latin1', 'cp1047');
         print md5_hex($data), " $base\n";
         next;
      }

==== //depot/perl/ext/Digest/MD5/t/md5-aaa.t#2 (text) ====
Index: perl/ext/Digest/MD5/t/md5-aaa.t
--- perl/ext/Digest/MD5/t/md5-aaa.t#1~16321~    Wed May  1 16:11:54 2002
+++ perl/ext/Digest/MD5/t/md5-aaa.t     Mon May  6 05:01:36 2002
@@ -1,6 +1,6 @@
 BEGIN {
-        chdir 't' if -d 't';
        if ($ENV{PERL_CORE}) {
+               chdir 't' if -d 't';
                @INC = '../lib';
        }
 }
End of Patch.

Reply via email to