In perl.git, the branch blead has been updated

<http://perl5.git.perl.org/perl.git/commitdiff/43f930483e46341a5bed39def194c95eb1d468b4?hp=54dac2f34b79343364e681110cc05ab200cb4b4a>

- Log -----------------------------------------------------------------
commit 43f930483e46341a5bed39def194c95eb1d468b4
Author: Chris 'BinGOs' Williams <[email protected]>
Date:   Fri Jul 5 15:21:07 2013 +0100

    Update MIME-Base64 to CPAN version 3.14
    
      [DELTA]
    
      2013-07-02   Gisle Aas <[email protected]>
    
       Release 3.14
    
       Install to 'site' instead of 'perl' when perl version is 5.12+

M       Porting/Maintainers.pl
M       cpan/MIME-Base64/Base64.pm
M       cpan/MIME-Base64/Changes
M       cpan/MIME-Base64/Makefile.PL

commit aeb2a38c077d17381589199fe51221e5d2dcfba3
Author: Chris 'BinGOs' Williams <[email protected]>
Date:   Fri Jul 5 15:20:03 2013 +0100

    Update Digest-MD5 to CPAN version 2.53
    
      [DELTA]
    
      2013-07-02   Gisle Aas <[email protected]>
    
       Release 2.53
    
       Drop File::Spec dependency and don't override installation location
       for perl-5.12++
    
       Documentation tweaks.

M       Porting/Maintainers.pl
M       cpan/Digest-MD5/Changes
M       cpan/Digest-MD5/MD5.pm
M       cpan/Digest-MD5/Makefile.PL
-----------------------------------------------------------------------

Summary of changes:
 Porting/Maintainers.pl       |  4 ++--
 cpan/Digest-MD5/Changes      | 13 +++++++++++++
 cpan/Digest-MD5/MD5.pm       | 11 +++++------
 cpan/Digest-MD5/Makefile.PL  |  6 +++---
 cpan/MIME-Base64/Base64.pm   |  2 +-
 cpan/MIME-Base64/Changes     | 10 +++++++++-
 cpan/MIME-Base64/Makefile.PL |  2 +-
 7 files changed, 34 insertions(+), 14 deletions(-)

diff --git a/Porting/Maintainers.pl b/Porting/Maintainers.pl
index 4b55d0c..6fa0720 100755
--- a/Porting/Maintainers.pl
+++ b/Porting/Maintainers.pl
@@ -548,7 +548,7 @@ use File::Glob qw(:case);
 
     'Digest::MD5' => {
         'MAINTAINER'   => 'gaas',
-        'DISTRIBUTION' => 'GAAS/Digest-MD5-2.52.tar.gz',
+        'DISTRIBUTION' => 'GAAS/Digest-MD5-2.53.tar.gz',
         'FILES'        => q[cpan/Digest-MD5],
         'EXCLUDED'     => ['rfc1321.txt'],
         'UPSTREAM'     => "cpan",
@@ -1171,7 +1171,7 @@ use File::Glob qw(:case);
 
     'MIME::Base64' => {
         'MAINTAINER'   => 'gaas',
-        'DISTRIBUTION' => 'GAAS/MIME-Base64-3.13.tar.gz',
+        'DISTRIBUTION' => 'GAAS/MIME-Base64-3.14.tar.gz',
         'FILES'        => q[cpan/MIME-Base64],
         'EXCLUDED'     => ['t/bad-sv.t'],
         'UPSTREAM'     => 'cpan',
diff --git a/cpan/Digest-MD5/Changes b/cpan/Digest-MD5/Changes
index 97e1931..c29e754 100644
--- a/cpan/Digest-MD5/Changes
+++ b/cpan/Digest-MD5/Changes
@@ -1,5 +1,18 @@
+2013-07-02   Gisle Aas <[email protected]>
+
+   Release 2.53
+
+   Drop File::Spec dependency and don't override installation location
+   for perl-5.12++
+
+   Documentation tweaks.
+
+
+
 2012-06-08   Gisle Aas <[email protected]>
 
+   Release 2.52
+
    Gisle Aas (3):
       Wrong version number in the changelog
       The t/threads.t was missing from the MANIFEST
diff --git a/cpan/Digest-MD5/MD5.pm b/cpan/Digest-MD5/MD5.pm
index 8ea2705..679036f 100644
--- a/cpan/Digest-MD5/MD5.pm
+++ b/cpan/Digest-MD5/MD5.pm
@@ -3,7 +3,7 @@ package Digest::MD5;
 use strict;
 use vars qw($VERSION @ISA @EXPORT_OK);
 
-$VERSION = '2.52';
+$VERSION = '2.53';
 
 require Exporter;
 *import = \&Exporter::import;
@@ -283,11 +283,10 @@ the file:
 
     print Digest::MD5->new->addfile($fh)->hexdigest, " $filename\n";
 
-Perl 5.8 support Unicode characters in strings.  Since the MD5
-algorithm is only defined for strings of bytes, it can not be used on
-strings that contains chars with ordinal number above 255.  The MD5
-functions and methods will croak if you try to feed them such input
-data:
+Since the MD5 algorithm is only defined for strings of bytes, it can not be
+used on strings that contains chars with ordinal number above 255 (Unicode
+strings).  The MD5 functions and methods will croak if you try to feed them
+such input data:
 
     use Digest::MD5 qw(md5_hex);
 
diff --git a/cpan/Digest-MD5/Makefile.PL b/cpan/Digest-MD5/Makefile.PL
index a56fe13..1d9337b 100644
--- a/cpan/Digest-MD5/Makefile.PL
+++ b/cpan/Digest-MD5/Makefile.PL
@@ -5,7 +5,8 @@ use Config qw(%Config);
 use ExtUtils::MakeMaker;
 
 my @extra;
-@extra = (DEFINE => "-DU32_ALIGNMENT_REQUIRED") unless free_u32_alignment();
+push(@extra, DEFINE => "-DU32_ALIGNMENT_REQUIRED") unless free_u32_alignment();
+push(@extra, INSTALLDIRS => 'perl') if $] >= 5.008 && $] < 5.012;
 
 if ($^O eq 'VMS') {
     if (defined($Config{ccname})) {
@@ -24,7 +25,7 @@ WriteMakefile(
     'AUTHOR'       => 'Gisle Aas <[email protected]>',
     'LICENSE'      => 'perl',
     'MIN_PERL_VERSION' => 5.006,
-    'PREREQ_PM'    => { 'File::Spec' => 0,
+    'PREREQ_PM'    => {
                        'Digest::base' => '1.00',
                        'XSLoader' => 0,
                      },
@@ -33,7 +34,6 @@ WriteMakefile(
             repository => 'http://github.com/gisle/digest-md5',
         }
     },
-    'INSTALLDIRS'  => 'perl',
     @extra,
 );
 
diff --git a/cpan/MIME-Base64/Base64.pm b/cpan/MIME-Base64/Base64.pm
index 2ce412d..4e59b62 100644
--- a/cpan/MIME-Base64/Base64.pm
+++ b/cpan/MIME-Base64/Base64.pm
@@ -8,7 +8,7 @@ require Exporter;
 @EXPORT = qw(encode_base64 decode_base64);
 @EXPORT_OK = qw(encode_base64url decode_base64url encoded_base64_length 
decoded_base64_length);
 
-$VERSION = '3.13';
+$VERSION = '3.14';
 
 require XSLoader;
 XSLoader::load('MIME::Base64', $VERSION);
diff --git a/cpan/MIME-Base64/Changes b/cpan/MIME-Base64/Changes
index 428dcbc..3307336 100644
--- a/cpan/MIME-Base64/Changes
+++ b/cpan/MIME-Base64/Changes
@@ -1,3 +1,11 @@
+2013-07-02   Gisle Aas <[email protected]>
+
+   Release 3.14
+
+   Install to 'site' instead of 'perl' when perl version is 5.12+
+
+
+
 2010-10-26   Gisle Aas <[email protected]>
 
    Release 3.13
@@ -419,7 +427,7 @@
 
    Release 2.01
 
-   Base64.xs: Avoid type convertion warnings with some compilers
+   Base64.xs: Avoid type conversion warnings with some compilers
 
    Minor documentation updates
 
diff --git a/cpan/MIME-Base64/Makefile.PL b/cpan/MIME-Base64/Makefile.PL
index 8307d2c..72a95bc 100644
--- a/cpan/MIME-Base64/Makefile.PL
+++ b/cpan/MIME-Base64/Makefile.PL
@@ -2,7 +2,7 @@ require 5.006;
 use ExtUtils::MakeMaker;
 
 my @makefileopts;
-if ($] >= 5.008) {
+if ($] >= 5.008 && $] < 5.012) {
     push @makefileopts, INSTALLDIRS => 'perl';
 }
 

--
Perl5 Master Repository

Reply via email to