In perl.git, the branch blead has been updated <http://perl5.git.perl.org/perl.git/commitdiff/0f64a94f26f70a2444bd6c52dd01bb2c067e78bc?hp=19bc2726ec6be805cc44e282a4662e4faee04c2f>
- Log ----------------------------------------------------------------- commit 0f64a94f26f70a2444bd6c52dd01bb2c067e78bc Author: Chris 'BinGOs' Williams <ch...@bingosnet.co.uk> Date: Sun Mar 10 20:29:12 2013 +0000 Update Digest-SHA to CPAN version 5.84 [DELTA] 5.84 Sat Mar 9 17:36:08 MST 2013     - untweaked Makefile.PL to remove dependencies of SHA.c         -- dependencies were breaking builds on VMS         -- retaining dependencies provides too little benefit             for cost of portable workaround ----------------------------------------------------------------------- Summary of changes: Porting/Maintainers.pl | 2 +- cpan/Digest-SHA/Changes | 6 ++++++ cpan/Digest-SHA/Makefile.PL | 6 ------ cpan/Digest-SHA/README | 2 +- cpan/Digest-SHA/lib/Digest/SHA.pm | 2 +- cpan/Digest-SHA/shasum | 6 +++--- cpan/Digest-SHA/src/sha.c | 4 ++-- cpan/Digest-SHA/src/sha.h | 4 ++-- 8 files changed, 16 insertions(+), 16 deletions(-) diff --git a/Porting/Maintainers.pl b/Porting/Maintainers.pl index d8a1dcc..1eda9fe 100755 --- a/Porting/Maintainers.pl +++ b/Porting/Maintainers.pl @@ -603,7 +603,7 @@ use File::Glob qw(:case); 'Digest::SHA' => { 'MAINTAINER' => 'mshelor', - 'DISTRIBUTION' => 'MSHELOR/Digest-SHA-5.83.tar.gz', + 'DISTRIBUTION' => 'MSHELOR/Digest-SHA-5.84.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 17d67ee..9891523 100644 --- a/cpan/Digest-SHA/Changes +++ b/cpan/Digest-SHA/Changes @@ -1,5 +1,11 @@ Revision history for Perl extension Digest::SHA. +5.84 Sat Mar 9 17:36:08 MST 2013 + - untweaked Makefile.PL to remove dependencies of SHA.c + -- dependencies were breaking builds on VMS + -- retaining dependencies provides too little benefit + for cost of portable workaround + 5.83 Mon Mar 4 08:12:00 MST 2013 - removed code for standalone C operation (no longer used) -- eliminates need for external symbols diff --git a/cpan/Digest-SHA/Makefile.PL b/cpan/Digest-SHA/Makefile.PL index 6119bfa..3d83865 100644 --- a/cpan/Digest-SHA/Makefile.PL +++ b/cpan/Digest-SHA/Makefile.PL @@ -4,7 +4,6 @@ use strict; use ExtUtils::MakeMaker; use Getopt::Std; use Config qw(%Config); -use File::Spec; my $PM = 'lib/Digest/SHA.pm'; @@ -34,10 +33,6 @@ if ($Config{archname} =~ /^i[3456]86/ && $Config{ccname} eq 'gcc') { push(@extra, OPTIMIZE => '-O1 -fomit-frame-pointer'); } -my @srcs = map { File::Spec->catfile('src', $_) } qw(sha.c sha64bit.c); -my @hdrs = map { File::Spec->catfile('src', $_) } qw(sha.h sha64bit.h); -my $deps = join(' ', @srcs, @hdrs); - my %att = ( 'NAME' => 'Digest::SHA', 'VERSION_FROM' => $PM, @@ -46,7 +41,6 @@ my %att = ( 'INC' => '-I.', 'EXE_FILES' => [ 'shasum' ], 'INSTALLDIRS' => ($] >= 5.010 and $] < 5.011) ? 'perl' : 'site', - 'depend' => { 'SHA.c' => $deps }, @extra, ); diff --git a/cpan/Digest-SHA/README b/cpan/Digest-SHA/README index 7b6f216..98317ba 100644 --- a/cpan/Digest-SHA/README +++ b/cpan/Digest-SHA/README @@ -1,4 +1,4 @@ -Digest::SHA version 5.83 +Digest::SHA version 5.84 ======================== 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 0c409f6..ef5be0a 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.83'; +$VERSION = '5.84'; require Exporter; require DynaLoader; diff --git a/cpan/Digest-SHA/shasum b/cpan/Digest-SHA/shasum index ed8ceee..11da695 100644 --- a/cpan/Digest-SHA/shasum +++ b/cpan/Digest-SHA/shasum @@ -4,8 +4,8 @@ ## ## Copyright (C) 2003-2013 Mark Shelor, All Rights Reserved ## - ## Version: 5.83 - ## Mon Mar 4 08:12:00 MST 2013 + ## Version: 5.84 + ## Sat Mar 9 17:36:08 MST 2013 ## 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.83"; +my $VERSION = "5.84"; ## Try to use Digest::SHA. If not installed, use the slower diff --git a/cpan/Digest-SHA/src/sha.c b/cpan/Digest-SHA/src/sha.c index 5c2f417..6d6fe68 100644 --- a/cpan/Digest-SHA/src/sha.c +++ b/cpan/Digest-SHA/src/sha.c @@ -5,8 +5,8 @@ * * Copyright (C) 2003-2013 Mark Shelor, All Rights Reserved * - * Version: 5.83 - * Mon Mar 4 08:12:00 MST 2013 + * Version: 5.84 + * Sat Mar 9 17:36:08 MST 2013 * */ diff --git a/cpan/Digest-SHA/src/sha.h b/cpan/Digest-SHA/src/sha.h index 1633763..fb7279e 100644 --- a/cpan/Digest-SHA/src/sha.h +++ b/cpan/Digest-SHA/src/sha.h @@ -5,8 +5,8 @@ * * Copyright (C) 2003-2013 Mark Shelor, All Rights Reserved * - * Version: 5.83 - * Mon Mar 4 08:12:00 MST 2013 + * Version: 5.84 + * Sat Mar 9 17:36:08 MST 2013 * */ -- Perl5 Master Repository