summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorChris 'BinGOs' Williams <chris@bingosnet.co.uk>2011-06-22 16:53:47 +0100
committerChris 'BinGOs' Williams <chris@bingosnet.co.uk>2011-06-22 16:55:19 +0100
commit98a346069365dd4a2f9b022447ee8009e3454f31 (patch)
treef5a2d7a6e810ee326ff3d9d3f1a3ef3f4e9c8841
parentcd272caeb765ebe9340ef5d8f589230fcf91ef96 (diff)
downloadperl-98a346069365dd4a2f9b022447ee8009e3454f31.tar.gz
Update Compress-Raw-Zlib to CPAN version 2.037
[DELTA] 2.037 22 June 2011 * No Changes
-rwxr-xr-xPorting/Maintainers.pl2
-rw-r--r--cpan/Compress-Raw-Zlib/Changes4
-rw-r--r--cpan/Compress-Raw-Zlib/README6
-rw-r--r--cpan/Compress-Raw-Zlib/lib/Compress/Raw/Zlib.pm2
-rw-r--r--cpan/Compress-Raw-Zlib/t/compress/CompTestUtils.pm12
-rw-r--r--pod/perldelta.pod2
6 files changed, 22 insertions, 6 deletions
diff --git a/Porting/Maintainers.pl b/Porting/Maintainers.pl
index 09eaf07d6e..f7172cf131 100755
--- a/Porting/Maintainers.pl
+++ b/Porting/Maintainers.pl
@@ -385,7 +385,7 @@ use File::Glob qw(:case);
'Compress::Raw::Zlib' =>
{
'MAINTAINER' => 'pmqs',
- 'DISTRIBUTION' => 'PMQS/Compress-Raw-Zlib-2.036.tar.gz',
+ 'DISTRIBUTION' => 'PMQS/Compress-Raw-Zlib-2.037.tar.gz',
'FILES' => q[cpan/Compress-Raw-Zlib],
'EXCLUDED' => [ qr{^t/Test/},
diff --git a/cpan/Compress-Raw-Zlib/Changes b/cpan/Compress-Raw-Zlib/Changes
index 50de37d258..566b064905 100644
--- a/cpan/Compress-Raw-Zlib/Changes
+++ b/cpan/Compress-Raw-Zlib/Changes
@@ -1,6 +1,10 @@
CHANGES
-------
+ 2.037 22 June 2011
+
+ * No Changes
+
2.036 6 May 2011
* Added offset patramter to CRC32
diff --git a/cpan/Compress-Raw-Zlib/README b/cpan/Compress-Raw-Zlib/README
index 3f260c640b..db2043cc5f 100644
--- a/cpan/Compress-Raw-Zlib/README
+++ b/cpan/Compress-Raw-Zlib/README
@@ -1,9 +1,9 @@
Compress-Raw-Zlib
- Version 2.036
+ Version 2.037
- 18th June 2011
+ 22nd June 2011
Copyright (c) 2005-2011 Paul Marquess. All rights reserved.
This program is free software; you can redistribute it
@@ -355,7 +355,7 @@ To help me help you, I need all of the following information:
If you haven't installed Compress-Raw-Zlib then search Compress::Raw::Zlib.pm
for a line like this:
- $VERSION = "2.036" ;
+ $VERSION = "2.037" ;
c. The version of zlib you have used.
If you have successfully installed Compress-Raw-Zlib, this one-liner
diff --git a/cpan/Compress-Raw-Zlib/lib/Compress/Raw/Zlib.pm b/cpan/Compress-Raw-Zlib/lib/Compress/Raw/Zlib.pm
index 3f340a26f7..759254523f 100644
--- a/cpan/Compress-Raw-Zlib/lib/Compress/Raw/Zlib.pm
+++ b/cpan/Compress-Raw-Zlib/lib/Compress/Raw/Zlib.pm
@@ -13,7 +13,7 @@ use warnings ;
use bytes ;
our ($VERSION, $XS_VERSION, @ISA, @EXPORT, $AUTOLOAD);
-$VERSION = '2.036';
+$VERSION = '2.037';
$XS_VERSION = $VERSION;
$VERSION = eval $VERSION;
diff --git a/cpan/Compress-Raw-Zlib/t/compress/CompTestUtils.pm b/cpan/Compress-Raw-Zlib/t/compress/CompTestUtils.pm
index 644a61876f..9815eb2caa 100644
--- a/cpan/Compress-Raw-Zlib/t/compress/CompTestUtils.pm
+++ b/cpan/Compress-Raw-Zlib/t/compress/CompTestUtils.pm
@@ -83,6 +83,12 @@ BEGIN {
{
Carp::croak "NO!!!!" if defined $_;
$_ = File::Temp->newdir(DIR => '.');
+ # Subsequent manipulations assume Unix syntax, metacharacters, etc.
+ if ($^O eq 'VMS')
+ {
+ $_->{DIRNAME} = VMS::Filespec::unixify($_->{DIRNAME});
+ $_->{DIRNAME} =~ s/\/$//;
+ }
}
bless [ @_ ], $self ;
}
@@ -92,6 +98,12 @@ BEGIN {
{
Carp::croak "NO!!!!" if defined $_;
$_ = File::Temp::tempdir(DIR => '.', CLEANUP => 1);
+ # Subsequent manipulations assume Unix syntax, metacharacters, etc.
+ if ($^O eq 'VMS')
+ {
+ $_ = VMS::Filespec::unixify($_);
+ $_ =~ s/\/$//;
+ }
}
bless [ @_ ], $self ;
}
diff --git a/pod/perldelta.pod b/pod/perldelta.pod
index 353f6bc5cd..eb13c50e3f 100644
--- a/pod/perldelta.pod
+++ b/pod/perldelta.pod
@@ -105,7 +105,7 @@ L<Compress::Raw::Bzip2> has been upgraded from version 2.035 to version 2.037
=item *
-L<Compress::Raw::Zlib> has been upgraded from version 2.035 to version 2.036
+L<Compress::Raw::Zlib> has been upgraded from version 2.035 to version 2.037
Added offset parameter to CRC32