In perl.git, the branch blead has been updated

<http://perl5.git.perl.org/perl.git/commitdiff/7ce06b7dca2247fac16c28cd064f3949998cb06e?hp=898c3bcab476295054cadaceb5ce68aa230a2d46>

- Log -----------------------------------------------------------------
commit 7ce06b7dca2247fac16c28cd064f3949998cb06e
Author: Chris 'BinGOs' Williams <[email protected]>
Date:   Tue Sep 25 09:46:42 2012 +0100

    Update Digest-SHA to CPAN version 5.72
    
      [DELTA]
    
      5.72  Mon Sep 24 15:22:08 MST 2012
        - adjusted module installation directory for later Perls
          -- As of 5.11 Perl searches 'site' first, so use that
            -- ref. INSTALLDIRS in Makefile.PL
          -- thanks to Robert Sedlacek for patch
-----------------------------------------------------------------------

Summary of changes:
 Porting/Maintainers.pl            |    2 +-
 cpan/Digest-SHA/Changes           |    6 ++++++
 cpan/Digest-SHA/Makefile.PL       |    2 +-
 cpan/Digest-SHA/README            |    2 +-
 cpan/Digest-SHA/lib/Digest/SHA.pm |    2 +-
 cpan/Digest-SHA/shasum            |    6 +++---
 cpan/Digest-SHA/src/hmac.c        |    4 ++--
 cpan/Digest-SHA/src/hmac.h        |    4 ++--
 cpan/Digest-SHA/src/sha.c         |    4 ++--
 cpan/Digest-SHA/src/sha.h         |    4 ++--
 10 files changed, 21 insertions(+), 15 deletions(-)

diff --git a/Porting/Maintainers.pl b/Porting/Maintainers.pl
index 056db4c..6e14313 100755
--- a/Porting/Maintainers.pl
+++ b/Porting/Maintainers.pl
@@ -594,7 +594,7 @@ use File::Glob qw(:case);
 
     'Digest::SHA' => {
         'MAINTAINER'   => 'mshelor',
-        'DISTRIBUTION' => 'MSHELOR/Digest-SHA-5.71.tar.gz',
+        'DISTRIBUTION' => 'MSHELOR/Digest-SHA-5.72.tar.gz',
         'FILES'        => q[cpan/Digest-SHA],
         'EXCLUDED'     => [
             qw( t/pod.t
diff --git a/cpan/Digest-SHA/Changes b/cpan/Digest-SHA/Changes
index 5f9d1cc..99c0b5b 100644
--- a/cpan/Digest-SHA/Changes
+++ b/cpan/Digest-SHA/Changes
@@ -1,5 +1,11 @@
 Revision history for Perl extension Digest::SHA.
 
+5.72  Mon Sep 24 15:22:08 MST 2012
+       - adjusted module installation directory for later Perls
+               -- As of 5.11 Perl searches 'site' first, so use that
+                       -- ref. INSTALLDIRS in Makefile.PL
+               -- thanks to Robert Sedlacek for patch
+
 5.71  Wed Feb 29 04:06:10 MST 2012
        - prevented $! from getting clobbered in _bail() routine
                -- thanks to Zefram for patch
diff --git a/cpan/Digest-SHA/Makefile.PL b/cpan/Digest-SHA/Makefile.PL
index 400db39..2d2ecd5 100644
--- a/cpan/Digest-SHA/Makefile.PL
+++ b/cpan/Digest-SHA/Makefile.PL
@@ -33,7 +33,7 @@ my %att = (
        'DEFINE'        => $define,
        'INC'           => '-I.',
        'EXE_FILES'     => [ 'shasum' ],
-       'INSTALLDIRS'   => ($] >= 5.010) ? 'perl' : 'site',
+       'INSTALLDIRS'   => ($] >= 5.010 and $] < 5.011) ? 'perl' : 'site',
 );
 
 my $MMversion = $ExtUtils::MakeMaker::VERSION || 0;
diff --git a/cpan/Digest-SHA/README b/cpan/Digest-SHA/README
index 2478b1e..a2b1f56 100644
--- a/cpan/Digest-SHA/README
+++ b/cpan/Digest-SHA/README
@@ -1,4 +1,4 @@
-Digest::SHA version 5.71
+Digest::SHA version 5.72
 ========================
 
 Digest::SHA is a complete implementation of the NIST Secure Hash
diff --git a/cpan/Digest-SHA/lib/Digest/SHA.pm 
b/cpan/Digest-SHA/lib/Digest/SHA.pm
index d8cc561..cf1cb66 100644
--- a/cpan/Digest-SHA/lib/Digest/SHA.pm
+++ b/cpan/Digest-SHA/lib/Digest/SHA.pm
@@ -7,7 +7,7 @@ use vars qw($VERSION @ISA @EXPORT @EXPORT_OK);
 use Fcntl;
 use integer;
 
-$VERSION = '5.71';
+$VERSION = '5.72';
 
 require Exporter;
 require DynaLoader;
diff --git a/cpan/Digest-SHA/shasum b/cpan/Digest-SHA/shasum
index d75815a..45431de 100644
--- a/cpan/Digest-SHA/shasum
+++ b/cpan/Digest-SHA/shasum
@@ -4,8 +4,8 @@
        ##
        ## Copyright (C) 2003-2012 Mark Shelor, All Rights Reserved
        ##
-       ## Version: 5.71
-       ## Wed Feb 29 04:06:10 MST 2012
+       ## Version: 5.72
+       ## Mon Sep 24 15:22:08 MST 2012
 
        ## shasum SYNOPSIS adapted from GNU Coreutils sha1sum.
        ## Add an "-a" option for algorithm selection, a "-p"
@@ -97,7 +97,7 @@ use strict;
 use Fcntl;
 use Getopt::Long;
 
-my $VERSION = "5.71";
+my $VERSION = "5.72";
 
 
        ## Try to use Digest::SHA.  If not installed, use the slower
diff --git a/cpan/Digest-SHA/src/hmac.c b/cpan/Digest-SHA/src/hmac.c
index 5d782ac..8656fe0 100644
--- a/cpan/Digest-SHA/src/hmac.c
+++ b/cpan/Digest-SHA/src/hmac.c
@@ -5,8 +5,8 @@
  *
  * Copyright (C) 2003-2012 Mark Shelor, All Rights Reserved
  *
- * Version: 5.71
- * Wed Feb 29 04:06:10 MST 2012
+ * Version: 5.72
+ * Mon Sep 24 15:22:08 MST 2012
  *
  */
 
diff --git a/cpan/Digest-SHA/src/hmac.h b/cpan/Digest-SHA/src/hmac.h
index ce59277..718887b 100644
--- a/cpan/Digest-SHA/src/hmac.h
+++ b/cpan/Digest-SHA/src/hmac.h
@@ -5,8 +5,8 @@
  *
  * Copyright (C) 2003-2012 Mark Shelor, All Rights Reserved
  *
- * Version: 5.71
- * Wed Feb 29 04:06:10 MST 2012
+ * Version: 5.72
+ * Mon Sep 24 15:22:08 MST 2012
  *
  */
 
diff --git a/cpan/Digest-SHA/src/sha.c b/cpan/Digest-SHA/src/sha.c
index 4aaba5f..8a1e6da 100644
--- a/cpan/Digest-SHA/src/sha.c
+++ b/cpan/Digest-SHA/src/sha.c
@@ -5,8 +5,8 @@
  *
  * Copyright (C) 2003-2012 Mark Shelor, All Rights Reserved
  *
- * Version: 5.71
- * Wed Feb 29 04:06:10 MST 2012
+ * Version: 5.72
+ * Mon Sep 24 15:22:08 MST 2012
  *
  */
 
diff --git a/cpan/Digest-SHA/src/sha.h b/cpan/Digest-SHA/src/sha.h
index 1c80dbc..c7aa873 100644
--- a/cpan/Digest-SHA/src/sha.h
+++ b/cpan/Digest-SHA/src/sha.h
@@ -5,8 +5,8 @@
  *
  * Copyright (C) 2003-2012 Mark Shelor, All Rights Reserved
  *
- * Version: 5.71
- * Wed Feb 29 04:06:10 MST 2012
+ * Version: 5.72
+ * Mon Sep 24 15:22:08 MST 2012
  *
  */
 

--
Perl5 Master Repository

Reply via email to