r46983 - in /branches/upstream/libcompress-raw-zlib-perl/current: Changes META.yml README lib/Compress/Raw/Zlib.pm pod/FAQ.pod t/000prereq.t t/02zlib.t t/compress/CompTestUtils.pm

jawnsy-guest at users.alioth.debian.org jawnsy-guest at users.alioth.debian.org
Tue Nov 10 17:30:13 UTC 2009


Author: jawnsy-guest
Date: Tue Nov 10 17:30:05 2009
New Revision: 46983

URL: http://svn.debian.org/wsvn/pkg-perl/?sc=1&rev=46983
Log:
[svn-upgrade] Integrating new upstream version, libcompress-raw-zlib-perl (2.023)

Modified:
    branches/upstream/libcompress-raw-zlib-perl/current/Changes
    branches/upstream/libcompress-raw-zlib-perl/current/META.yml
    branches/upstream/libcompress-raw-zlib-perl/current/README
    branches/upstream/libcompress-raw-zlib-perl/current/lib/Compress/Raw/Zlib.pm
    branches/upstream/libcompress-raw-zlib-perl/current/pod/FAQ.pod
    branches/upstream/libcompress-raw-zlib-perl/current/t/000prereq.t
    branches/upstream/libcompress-raw-zlib-perl/current/t/02zlib.t
    branches/upstream/libcompress-raw-zlib-perl/current/t/compress/CompTestUtils.pm

Modified: branches/upstream/libcompress-raw-zlib-perl/current/Changes
URL: http://svn.debian.org/wsvn/pkg-perl/branches/upstream/libcompress-raw-zlib-perl/current/Changes?rev=46983&op=diff
==============================================================================
--- branches/upstream/libcompress-raw-zlib-perl/current/Changes (original)
+++ branches/upstream/libcompress-raw-zlib-perl/current/Changes Tue Nov 10 17:30:05 2009
@@ -1,5 +1,11 @@
 CHANGES
 -------
+
+  2.023 9 November 2009
+
+      * fixed instance where $[ should have been $] in t/02zlib.t
+        Thanks to Robin Barker and zefram [RT #50765] for independantly
+        spotting the issue.
 
   2.021 30 August 2009
 

Modified: branches/upstream/libcompress-raw-zlib-perl/current/META.yml
URL: http://svn.debian.org/wsvn/pkg-perl/branches/upstream/libcompress-raw-zlib-perl/current/META.yml?rev=46983&op=diff
==============================================================================
--- branches/upstream/libcompress-raw-zlib-perl/current/META.yml (original)
+++ branches/upstream/libcompress-raw-zlib-perl/current/META.yml Tue Nov 10 17:30:05 2009
@@ -1,6 +1,6 @@
 --- #YAML:1.0
 name:               Compress-Raw-Zlib
-version:            2.021
+version:            2.023
 abstract:           ~
 author:  []
 license:            perl

Modified: branches/upstream/libcompress-raw-zlib-perl/current/README
URL: http://svn.debian.org/wsvn/pkg-perl/branches/upstream/libcompress-raw-zlib-perl/current/README?rev=46983&op=diff
==============================================================================
--- branches/upstream/libcompress-raw-zlib-perl/current/README (original)
+++ branches/upstream/libcompress-raw-zlib-perl/current/README Tue Nov 10 17:30:05 2009
@@ -1,9 +1,9 @@
 
                              Compress-Raw-Zlib
 
-                             Version 2.021
-
-                             30th August 2009
+                             Version 2.023
+
+                             9th November 2009
 
        Copyright (c) 2005-2009 Paul Marquess. All rights reserved.
           This program is free software; you can redistribute it
@@ -355,7 +355,7 @@
         If you haven't installed Compress-Raw-Zlib then search Compress::Raw::Zlib.pm
         for a line like this:
 
-          $VERSION = "2.021" ;
+          $VERSION = "2.023" ;
 
      c. The version of zlib you have used.
         If you have successfully installed Compress-Raw-Zlib, this one-liner

Modified: branches/upstream/libcompress-raw-zlib-perl/current/lib/Compress/Raw/Zlib.pm
URL: http://svn.debian.org/wsvn/pkg-perl/branches/upstream/libcompress-raw-zlib-perl/current/lib/Compress/Raw/Zlib.pm?rev=46983&op=diff
==============================================================================
--- branches/upstream/libcompress-raw-zlib-perl/current/lib/Compress/Raw/Zlib.pm (original)
+++ branches/upstream/libcompress-raw-zlib-perl/current/lib/Compress/Raw/Zlib.pm Tue Nov 10 17:30:05 2009
@@ -13,7 +13,7 @@
 use bytes ;
 our ($VERSION, $XS_VERSION, @ISA, @EXPORT, $AUTOLOAD);
 
-$VERSION = '2.021';
+$VERSION = '2.023';
 $XS_VERSION = $VERSION; 
 $VERSION = eval $VERSION;
 
@@ -1381,7 +1381,7 @@
 
 =head1 SEE ALSO
 
-L<Compress::Zlib>, L<IO::Compress::Gzip>, L<IO::Uncompress::Gunzip>, L<IO::Compress::Deflate>, L<IO::Uncompress::Inflate>, L<IO::Compress::RawDeflate>, L<IO::Uncompress::RawInflate>, L<IO::Compress::Bzip2>, L<IO::Uncompress::Bunzip2>, L<IO::Compress::Lzop>, L<IO::Uncompress::UnLzop>, L<IO::Compress::Lzf>, L<IO::Uncompress::UnLzf>, L<IO::Uncompress::AnyInflate>, L<IO::Uncompress::AnyUncompress>
+L<Compress::Zlib>, L<IO::Compress::Gzip>, L<IO::Uncompress::Gunzip>, L<IO::Compress::Deflate>, L<IO::Uncompress::Inflate>, L<IO::Compress::RawDeflate>, L<IO::Uncompress::RawInflate>, L<IO::Compress::Bzip2>, L<IO::Uncompress::Bunzip2>, L<IO::Compress::Lzma>, L<IO::Uncompress::UnLzma>, L<IO::Compress::Xz>, L<IO::Uncompress::UnXz>, L<IO::Compress::Lzop>, L<IO::Uncompress::UnLzop>, L<IO::Compress::Lzf>, L<IO::Uncompress::UnLzf>, L<IO::Uncompress::AnyInflate>, L<IO::Uncompress::AnyUncompress>
 
 L<Compress::Zlib::FAQ|Compress::Zlib::FAQ>
 

Modified: branches/upstream/libcompress-raw-zlib-perl/current/pod/FAQ.pod
URL: http://svn.debian.org/wsvn/pkg-perl/branches/upstream/libcompress-raw-zlib-perl/current/pod/FAQ.pod?rev=46983&op=diff
==============================================================================
--- branches/upstream/libcompress-raw-zlib-perl/current/pod/FAQ.pod (original)
+++ branches/upstream/libcompress-raw-zlib-perl/current/pod/FAQ.pod Tue Nov 10 17:30:05 2009
@@ -117,7 +117,7 @@
 
 =head1 SEE ALSO
 
-L<Compress::Zlib>, L<IO::Compress::Gzip>, L<IO::Uncompress::Gunzip>, L<IO::Compress::Deflate>, L<IO::Uncompress::Inflate>, L<IO::Compress::RawDeflate>, L<IO::Uncompress::RawInflate>, L<IO::Compress::Bzip2>, L<IO::Uncompress::Bunzip2>, L<IO::Compress::Lzop>, L<IO::Uncompress::UnLzop>, L<IO::Compress::Lzf>, L<IO::Uncompress::UnLzf>, L<IO::Uncompress::AnyInflate>, L<IO::Uncompress::AnyUncompress>
+L<Compress::Zlib>, L<IO::Compress::Gzip>, L<IO::Uncompress::Gunzip>, L<IO::Compress::Deflate>, L<IO::Uncompress::Inflate>, L<IO::Compress::RawDeflate>, L<IO::Uncompress::RawInflate>, L<IO::Compress::Bzip2>, L<IO::Uncompress::Bunzip2>, L<IO::Compress::Lzma>, L<IO::Uncompress::UnLzma>, L<IO::Compress::Xz>, L<IO::Uncompress::UnXz>, L<IO::Compress::Lzop>, L<IO::Uncompress::UnLzop>, L<IO::Compress::Lzf>, L<IO::Uncompress::UnLzf>, L<IO::Uncompress::AnyInflate>, L<IO::Uncompress::AnyUncompress>
 
 L<Compress::Zlib::FAQ|Compress::Zlib::FAQ>
 

Modified: branches/upstream/libcompress-raw-zlib-perl/current/t/000prereq.t
URL: http://svn.debian.org/wsvn/pkg-perl/branches/upstream/libcompress-raw-zlib-perl/current/t/000prereq.t?rev=46983&op=diff
==============================================================================
--- branches/upstream/libcompress-raw-zlib-perl/current/t/000prereq.t (original)
+++ branches/upstream/libcompress-raw-zlib-perl/current/t/000prereq.t Tue Nov 10 17:30:05 2009
@@ -19,7 +19,7 @@
         if eval { require Test::NoWarnings ;  import Test::NoWarnings; 1 };
 
 
-    my $VERSION = '2.021';
+    my $VERSION = '2.023';
     my @NAMES = qw(
 			
 			);

Modified: branches/upstream/libcompress-raw-zlib-perl/current/t/02zlib.t
URL: http://svn.debian.org/wsvn/pkg-perl/branches/upstream/libcompress-raw-zlib-perl/current/t/02zlib.t?rev=46983&op=diff
==============================================================================
--- branches/upstream/libcompress-raw-zlib-perl/current/t/02zlib.t (original)
+++ branches/upstream/libcompress-raw-zlib-perl/current/t/02zlib.t Tue Nov 10 17:30:05 2009
@@ -27,10 +27,10 @@
         $count = 230 ;
     }
     elsif ($] >= 5.006) {
-        $count = 284 ;
+        $count = 300 ;
     }
     else {
-        $count = 242 ;
+        $count = 258 ;
     }
 
     plan tests => $count + $extra;
@@ -603,7 +603,7 @@
 
 foreach (1 .. 2)
 {
-    next if $[ < 5.005 ;
+    next if $] < 5.005 ;
 
     title 'test inflate/deflate with a substr';
 

Modified: branches/upstream/libcompress-raw-zlib-perl/current/t/compress/CompTestUtils.pm
URL: http://svn.debian.org/wsvn/pkg-perl/branches/upstream/libcompress-raw-zlib-perl/current/t/compress/CompTestUtils.pm?rev=46983&op=diff
==============================================================================
--- branches/upstream/libcompress-raw-zlib-perl/current/t/compress/CompTestUtils.pm (original)
+++ branches/upstream/libcompress-raw-zlib-perl/current/t/compress/CompTestUtils.pm Tue Nov 10 17:30:05 2009
@@ -16,7 +16,7 @@
 sub title
 {
     #diag "" ; 
-    ok 1, $_[0] ;
+    ok(1, $_[0]) ;
     #diag "" ;
 }
 
@@ -476,6 +476,7 @@
                     Append => 1, 
                     Transparent => 0, 
                     RawInflate => 1,
+                    UnLzma     => 1,
                     @opts
         or croak "Cannot open buffer/file: $AnyUncompressError" ;
 
@@ -537,6 +538,7 @@
                 Append => 1, 
                 Transparent => 0, 
                 RawInflate => 1,
+                UnLzma     => 1,
                 @opts
         or croak "Cannot open buffer/file: $AnyUncompressError" ;
 
@@ -647,7 +649,7 @@
 {
     my $class = shift ;
 
-    return (0,0) if $class =~ /lzf/i;
+    return (0,0) if $class =~ /lzf|lzma/i;
     return (1,0);
 }
 




More information about the Pkg-perl-cvs-commits mailing list