Update Compress-Raw-Zlib to CPAN version 2.033
authorChris 'BinGOs' Williams <chris@bingosnet.co.uk>
Tue, 11 Jan 2011 19:23:52 +0000 (19:23 +0000)
committerChris 'BinGOs' Williams <chris@bingosnet.co.uk>
Tue, 11 Jan 2011 19:23:52 +0000 (19:23 +0000)
  [DELTA]

  2.033 11 Jan 2011
      * Fixed typos & spelling errors.
        [perl# 81782]

  2.032 4 Jan 2011

      * Document inflateReset
        [RT #61082]

Porting/Maintainers.pl
cpan/Compress-Raw-Zlib/Changes
cpan/Compress-Raw-Zlib/README
cpan/Compress-Raw-Zlib/config.in [changed mode: 0644->0755]
cpan/Compress-Raw-Zlib/examples/filtdef [changed mode: 0644->0755]
cpan/Compress-Raw-Zlib/examples/filtinf [changed mode: 0644->0755]
cpan/Compress-Raw-Zlib/lib/Compress/Raw/Zlib.pm
cpan/Compress-Raw-Zlib/pod/FAQ.pod
pod/perldelta.pod

index 9d8ec24..915f292 100755 (executable)
@@ -336,7 +336,7 @@ use File::Glob qw(:case);
     'Compress::Raw::Zlib' =>
        {
        'MAINTAINER'    => 'pmqs',
-       'DISTRIBUTION'  => 'PMQS/Compress-Raw-Zlib-2.030.tar.gz',
+       'DISTRIBUTION'  => 'PMQS/Compress-Raw-Zlib-2.033.tar.gz',
 
        'FILES'         => q[cpan/Compress-Raw-Zlib],
        'EXCLUDED'      => [ qr{^t/Test/},
index 74e1da6..ebc9171 100644 (file)
@@ -1,7 +1,16 @@
 CHANGES
 -------
 
-  2.030 22 July 2010
+  2.033 11 Jan 2011
+      * Fixed typos & spelling errors.
+        [perl# 81782]
+
+  2.032 4 Jan 2011
+
+      * Document inflateReset
+        [RT #61082]
+
+  2.030 22 July 2010 
 
       * Ran the zlib2ansi script against the files in zlib-src.
         Thanks to Nicholas Clark for the reminder.
@@ -35,7 +44,7 @@ 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
+        Thanks to Robin Barker and zefram [RT #50765] for independently
         spotting the issue.
 
   2.021 30 August 2009
index 5c1f5ae..122d32d 100644 (file)
@@ -1,11 +1,11 @@
 
                              Compress-Raw-Zlib
 
-                             Version 2.030
+                             Version 2.033
 
-                               22nd July 2010
+                             11th January 2011
 
-       Copyright (c) 2005-2010 Paul Marquess. All rights reserved.
+       Copyright (c) 2005-2011 Paul Marquess. All rights reserved.
           This program is free software; you can redistribute it
            and/or modify it under the same terms as Perl itself.
 
@@ -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.030" ;
+          $VERSION = "2.033" ;
 
      c. The version of zlib you have used.
         If you have successfully installed Compress-Raw-Zlib, this one-liner
old mode 100644 (file)
new mode 100755 (executable)
old mode 100644 (file)
new mode 100755 (executable)
old mode 100644 (file)
new mode 100755 (executable)
index e6e15c9..8b17dcc 100644 (file)
@@ -13,7 +13,7 @@ use warnings ;
 use bytes ;
 our ($VERSION, $XS_VERSION, @ISA, @EXPORT, $AUTOLOAD);
 
-$VERSION = '2.030';
+$VERSION = '2.033';
 $XS_VERSION = $VERSION; 
 $VERSION = eval $VERSION;
 
@@ -564,6 +564,7 @@ Compress::Raw::Zlib - Low-Level Interface to zlib compression library
     ($i, $status) = new Compress::Raw::Zlib::Inflate( [OPT] ) ;
     $status = $i->inflate($input, $output [, $eof]) ;
     $status = $i->inflateSync($input) ;
+    $i->inflateReset() ;
     $i->dict_adler() ;
     $d->crc32() ;
     $d->adler32() ;
@@ -1101,6 +1102,14 @@ Note I<full flush points> are not present by default in compressed
 data streams. They must have been added explicitly when the data stream
 was created by calling C<Compress::Deflate::flush>  with C<Z_FULL_FLUSH>.
 
+=head2 B<$status = $i-E<gt>inflateReset() >
+
+This method will reset the inflation object C<$i>. It can be used when you
+are uncompressing multiple data streams and want to use the same object to
+uncompress each of them. 
+
+Returns C<Z_OK> if successful.
+
 =head2 B<$i-E<gt>dict_adler()>
 
 Returns the adler32 value for the dictionary.
@@ -1413,7 +1422,7 @@ See the Changes file.
 
 =head1 COPYRIGHT AND LICENSE
 
-Copyright (c) 2005-2010 Paul Marquess. All rights reserved.
+Copyright (c) 2005-2011 Paul Marquess. All rights reserved.
 
 This program is free software; you can redistribute it and/or
 modify it under the same terms as Perl itself.
index 716ddb7..a3e3756 100644 (file)
@@ -39,7 +39,7 @@ available
 
 See previous FAQ item.
 
-If the C<Archive::Tar> module is instaled and either the C<uncompress> or
+If the C<Archive::Tar> module is installed and either the C<uncompress> or
 C<gunzip> programs are available, you can use one of these workarounds to
 read C<.tar.Z> files.
 
@@ -120,7 +120,7 @@ See the Changes file.
 
 =head1 COPYRIGHT AND LICENSE
 
-Copyright (c) 2005-2010 Paul Marquess. All rights reserved.
+Copyright (c) 2005-2011 Paul Marquess. All rights reserved.
 
 This program is free software; you can redistribute it and/or
 modify it under the same terms as Perl itself.
index 842644d..001c932 100644 (file)
@@ -147,6 +147,10 @@ C<Compress::Raw::Bzip2> has been upgraded from version 2.031 to 2.033
 
 =item *
 
+C<Compress::Raw::Zlib> has been upgraded from version 2.030 to 2.033
+
+=item *
+
 C<CPANPLUS> has been upgraded from version 0.9010 to 0.9011
 
 =item *