summaryrefslogtreecommitdiff
path: root/cpan/Digest-SHA
diff options
context:
space:
mode:
authorChris 'BinGOs' Williams <chris@bingosnet.co.uk>2013-03-10 20:29:12 +0000
committerChris 'BinGOs' Williams <chris@bingosnet.co.uk>2013-03-10 20:29:12 +0000
commit0f64a94f26f70a2444bd6c52dd01bb2c067e78bc (patch)
tree32fe17187fd2394e903e802aeada31db7653bf20 /cpan/Digest-SHA
parent19bc2726ec6be805cc44e282a4662e4faee04c2f (diff)
downloadperl-0f64a94f26f70a2444bd6c52dd01bb2c067e78bc.tar.gz
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
Diffstat (limited to 'cpan/Digest-SHA')
-rw-r--r--cpan/Digest-SHA/Changes6
-rw-r--r--cpan/Digest-SHA/Makefile.PL6
-rw-r--r--cpan/Digest-SHA/README2
-rw-r--r--cpan/Digest-SHA/lib/Digest/SHA.pm2
-rw-r--r--cpan/Digest-SHA/shasum6
-rw-r--r--cpan/Digest-SHA/src/sha.c4
-rw-r--r--cpan/Digest-SHA/src/sha.h4
7 files changed, 15 insertions, 15 deletions
diff --git a/cpan/Digest-SHA/Changes b/cpan/Digest-SHA/Changes
index 17d67eeed7..9891523873 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 6119bfa417..3d8386563f 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 7b6f216af1..98317ba482 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 0c409f6feb..ef5be0af59 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 ed8ceeea3f..11da695c4c 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 5c2f417f8d..6d6fe68109 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 1633763869..fb7279eee8 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
*
*/