r67169 - in /trunk/libcompress-raw-zlib-perl: Changes META.yml README debian/changelog lib/Compress/Raw/Zlib.pm pod/FAQ.pod t/000prereq.t

periapt-guest at users.alioth.debian.org periapt-guest at users.alioth.debian.org
Sat Jan 8 20:59:16 UTC 2011


Author: periapt-guest
Date: Sat Jan  8 20:59:10 2011
New Revision: 67169

URL: http://svn.debian.org/wsvn/pkg-perl/?sc=1&rev=67169
Log:
New upstream release

Modified:
    trunk/libcompress-raw-zlib-perl/Changes
    trunk/libcompress-raw-zlib-perl/META.yml
    trunk/libcompress-raw-zlib-perl/README
    trunk/libcompress-raw-zlib-perl/debian/changelog
    trunk/libcompress-raw-zlib-perl/lib/Compress/Raw/Zlib.pm
    trunk/libcompress-raw-zlib-perl/pod/FAQ.pod
    trunk/libcompress-raw-zlib-perl/t/000prereq.t

Modified: trunk/libcompress-raw-zlib-perl/Changes
URL: http://svn.debian.org/wsvn/pkg-perl/trunk/libcompress-raw-zlib-perl/Changes?rev=67169&op=diff
==============================================================================
--- trunk/libcompress-raw-zlib-perl/Changes (original)
+++ trunk/libcompress-raw-zlib-perl/Changes Sat Jan  8 20:59:10 2011
@@ -1,5 +1,10 @@
 CHANGES
 -------
+
+  2.032 4 Jan 2011
+
+      * Document inflateReset
+        [RT #61082]
 
   2.030 22 July 2010 
 

Modified: trunk/libcompress-raw-zlib-perl/META.yml
URL: http://svn.debian.org/wsvn/pkg-perl/trunk/libcompress-raw-zlib-perl/META.yml?rev=67169&op=diff
==============================================================================
--- trunk/libcompress-raw-zlib-perl/META.yml (original)
+++ trunk/libcompress-raw-zlib-perl/META.yml Sat Jan  8 20:59:10 2011
@@ -1,6 +1,6 @@
 --- #YAML:1.0
 name:               Compress-Raw-Zlib
-version:            2.030
+version:            2.032
 abstract:           ~
 author:  []
 license:            perl

Modified: trunk/libcompress-raw-zlib-perl/README
URL: http://svn.debian.org/wsvn/pkg-perl/trunk/libcompress-raw-zlib-perl/README?rev=67169&op=diff
==============================================================================
--- trunk/libcompress-raw-zlib-perl/README (original)
+++ trunk/libcompress-raw-zlib-perl/README Sat Jan  8 20:59:10 2011
@@ -1,11 +1,11 @@
 
                              Compress-Raw-Zlib
 
-                             Version 2.030
-
-                               22nd July 2010
-
-       Copyright (c) 2005-2010 Paul Marquess. All rights reserved.
+                             Version 2.032
+
+                             4th January 2011
+
+       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 @@
         If you haven't installed Compress-Raw-Zlib then search Compress::Raw::Zlib.pm
         for a line like this:
 
-          $VERSION = "2.030" ;
+          $VERSION = "2.032" ;
 
      c. The version of zlib you have used.
         If you have successfully installed Compress-Raw-Zlib, this one-liner

Modified: trunk/libcompress-raw-zlib-perl/debian/changelog
URL: http://svn.debian.org/wsvn/pkg-perl/trunk/libcompress-raw-zlib-perl/debian/changelog?rev=67169&op=diff
==============================================================================
--- trunk/libcompress-raw-zlib-perl/debian/changelog (original)
+++ trunk/libcompress-raw-zlib-perl/debian/changelog Sat Jan  8 20:59:10 2011
@@ -1,3 +1,9 @@
+libcompress-raw-zlib-perl (2.032-1) UNRELEASED; urgency=low
+
+  * New upstream release
+
+ -- Nicholas Bamber <nicholas at periapt.co.uk>  Sat, 08 Jan 2011 21:01:48 +0000
+
 libcompress-raw-zlib-perl (2.030-1) unstable; urgency=low
 
   [ Jonathan Yu ]

Modified: trunk/libcompress-raw-zlib-perl/lib/Compress/Raw/Zlib.pm
URL: http://svn.debian.org/wsvn/pkg-perl/trunk/libcompress-raw-zlib-perl/lib/Compress/Raw/Zlib.pm?rev=67169&op=diff
==============================================================================
--- trunk/libcompress-raw-zlib-perl/lib/Compress/Raw/Zlib.pm (original)
+++ trunk/libcompress-raw-zlib-perl/lib/Compress/Raw/Zlib.pm Sat Jan  8 20:59:10 2011
@@ -13,7 +13,7 @@
 use bytes ;
 our ($VERSION, $XS_VERSION, @ISA, @EXPORT, $AUTOLOAD);
 
-$VERSION = '2.030';
+$VERSION = '2.032';
 $XS_VERSION = $VERSION; 
 $VERSION = eval $VERSION;
 
@@ -564,6 +564,7 @@
     ($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() ;
@@ -1100,6 +1101,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()>
 
@@ -1413,7 +1422,7 @@
 
 =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.

Modified: trunk/libcompress-raw-zlib-perl/pod/FAQ.pod
URL: http://svn.debian.org/wsvn/pkg-perl/trunk/libcompress-raw-zlib-perl/pod/FAQ.pod?rev=67169&op=diff
==============================================================================
--- trunk/libcompress-raw-zlib-perl/pod/FAQ.pod (original)
+++ trunk/libcompress-raw-zlib-perl/pod/FAQ.pod Sat Jan  8 20:59:10 2011
@@ -120,7 +120,7 @@
 
 =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.

Modified: trunk/libcompress-raw-zlib-perl/t/000prereq.t
URL: http://svn.debian.org/wsvn/pkg-perl/trunk/libcompress-raw-zlib-perl/t/000prereq.t?rev=67169&op=diff
==============================================================================
--- trunk/libcompress-raw-zlib-perl/t/000prereq.t (original)
+++ trunk/libcompress-raw-zlib-perl/t/000prereq.t Sat Jan  8 20:59:10 2011
@@ -19,7 +19,7 @@
         if eval { require Test::NoWarnings ;  import Test::NoWarnings; 1 };
 
 
-    my $VERSION = '2.030';
+    my $VERSION = '2.032';
     my @NAMES = qw(
 			
 			);




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