r76133 - in /branches/upstream/libcompress-raw-zlib-perl/current: Changes META.yml README Zlib.xs lib/Compress/Raw/Zlib.pm t/000prereq.t

gregoa at users.alioth.debian.org gregoa at users.alioth.debian.org
Sun Jun 19 15:54:21 UTC 2011


Author: gregoa
Date: Sun Jun 19 15:54:19 2011
New Revision: 76133

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

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/Zlib.xs
    branches/upstream/libcompress-raw-zlib-perl/current/lib/Compress/Raw/Zlib.pm
    branches/upstream/libcompress-raw-zlib-perl/current/t/000prereq.t

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=76133&op=diff
==============================================================================
--- branches/upstream/libcompress-raw-zlib-perl/current/Changes (original)
+++ branches/upstream/libcompress-raw-zlib-perl/current/Changes Sun Jun 19 15:54:19 2011
@@ -1,5 +1,9 @@
 CHANGES
 -------
+
+  2.036 6 May 2011
+
+      * Added offset patramter to CRC32
 
   2.035 6 May 2011
 

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=76133&op=diff
==============================================================================
--- branches/upstream/libcompress-raw-zlib-perl/current/META.yml (original)
+++ branches/upstream/libcompress-raw-zlib-perl/current/META.yml Sun Jun 19 15:54:19 2011
@@ -1,6 +1,6 @@
 --- #YAML:1.0
 name:               Compress-Raw-Zlib
-version:            2.035
+version:            2.036
 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=76133&op=diff
==============================================================================
--- branches/upstream/libcompress-raw-zlib-perl/current/README (original)
+++ branches/upstream/libcompress-raw-zlib-perl/current/README Sun Jun 19 15:54:19 2011
@@ -1,9 +1,9 @@
 
                              Compress-Raw-Zlib
 
-                             Version 2.035
-
-                               6th May 2011
+                             Version 2.036
+
+                              18th June 2011
 
        Copyright (c) 2005-2011 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.035" ;
+          $VERSION = "2.036" ;
 
      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/Zlib.xs
URL: http://svn.debian.org/wsvn/pkg-perl/branches/upstream/libcompress-raw-zlib-perl/current/Zlib.xs?rev=76133&op=diff
==============================================================================
--- branches/upstream/libcompress-raw-zlib-perl/current/Zlib.xs (original)
+++ branches/upstream/libcompress-raw-zlib-perl/current/Zlib.xs Sun Jun 19 15:54:19 2011
@@ -669,13 +669,14 @@
     OUTPUT:
         RETVAL
  
-#define Zip_crc32(buf, crc) crc32(crc, buf, (uInt)len)
-
-uLong
-Zip_crc32(buf, crc=crcInitial)
+#define Zip_crc32(buf, crc, offset) crc32(crc, buf+offset, (uInt)len-offset)
+
+uLong
+Zip_crc32(buf, crc=crcInitial, offset=0)
         uLong    crc = NO_INIT
         STRLEN   len = NO_INIT
         Bytef *  buf = NO_INIT
+        int      offset       
 	SV *	 sv = ST(0) ;
 	INIT:
     	/* If the buffer is a reference, dereference it */
@@ -692,8 +693,7 @@
 	  crc = SvUV(ST(1)) ;
 	else
 	  crc = crcInitial;
-
-
+ 
 uLong
 crc32_combine(crc1, crc2, len2)
         uLong    crc1 

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=76133&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 Sun Jun 19 15:54:19 2011
@@ -13,7 +13,7 @@
 use bytes ;
 our ($VERSION, $XS_VERSION, @ISA, @EXPORT, $AUTOLOAD);
 
-$VERSION = '2.035';
+$VERSION = '2.036';
 $XS_VERSION = $VERSION; 
 $VERSION = eval $VERSION;
 

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=76133&op=diff
==============================================================================
--- branches/upstream/libcompress-raw-zlib-perl/current/t/000prereq.t (original)
+++ branches/upstream/libcompress-raw-zlib-perl/current/t/000prereq.t Sun Jun 19 15:54:19 2011
@@ -19,7 +19,7 @@
         if eval { require Test::NoWarnings ;  import Test::NoWarnings; 1 };
 
 
-    my $VERSION = '2.035';
+    my $VERSION = '2.036';
     my @NAMES = qw(
 			
 			);




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