r8842 - in /trunk/libdigest-crc-perl: Changes README debian/changelog lib/Digest/CRC.pm t/crc.t

gregoa-guest at users.alioth.debian.org gregoa-guest at users.alioth.debian.org
Sun Nov 4 17:12:31 UTC 2007


Author: gregoa-guest
Date: Sun Nov  4 17:12:31 2007
New Revision: 8842

URL: http://svn.debian.org/wsvn/?sc=1&rev=8842
Log:
New upstream release.

Modified:
    trunk/libdigest-crc-perl/Changes
    trunk/libdigest-crc-perl/README
    trunk/libdigest-crc-perl/debian/changelog
    trunk/libdigest-crc-perl/lib/Digest/CRC.pm
    trunk/libdigest-crc-perl/t/crc.t

Modified: trunk/libdigest-crc-perl/Changes
URL: http://svn.debian.org/wsvn/trunk/libdigest-crc-perl/Changes?rev=8842&op=diff
==============================================================================
--- trunk/libdigest-crc-perl/Changes (original)
+++ trunk/libdigest-crc-perl/Changes Sun Nov  4 17:12:31 2007
@@ -34,3 +34,6 @@
 0.12  Sat Nov  3 10:11:42 2007
         - Debug output removed
 
+0.13  Sun Nov  4 11:22:54 2007
+        - fixed tests
+

Modified: trunk/libdigest-crc-perl/README
URL: http://svn.debian.org/wsvn/trunk/libdigest-crc-perl/README?rev=8842&op=diff
==============================================================================
--- trunk/libdigest-crc-perl/README (original)
+++ trunk/libdigest-crc-perl/README Sun Nov  4 17:12:31 2007
@@ -1,4 +1,4 @@
-Digest::CRC version 0.12
+Digest::CRC version 0.13
 ========================
 
 NAME
@@ -41,9 +41,3 @@
    make test
    make install
 
-COPYRIGHT AND LICENCE
-   CRC algorithm code taken from "A PAINLESS GUIDE TO CRC ERROR DETECTION
-   ALGORITHMS".
-
-   The author of this package disclaims all copyrights and releases it
-   into the public domain.

Modified: trunk/libdigest-crc-perl/debian/changelog
URL: http://svn.debian.org/wsvn/trunk/libdigest-crc-perl/debian/changelog?rev=8842&op=diff
==============================================================================
--- trunk/libdigest-crc-perl/debian/changelog (original)
+++ trunk/libdigest-crc-perl/debian/changelog Sun Nov  4 17:12:31 2007
@@ -1,3 +1,9 @@
+libdigest-crc-perl (0.13-1) UNRELEASED; urgency=low
+
+  * New upstream release.
+
+ -- gregor herrmann <gregor+debian at comodo.priv.at>  Sun, 04 Nov 2007 18:10:49 +0100
+
 libdigest-crc-perl (0.12-1) unstable; urgency=low
 
   * New upstream release.

Modified: trunk/libdigest-crc-perl/lib/Digest/CRC.pm
URL: http://svn.debian.org/wsvn/trunk/libdigest-crc-perl/lib/Digest/CRC.pm?rev=8842&op=diff
==============================================================================
--- trunk/libdigest-crc-perl/lib/Digest/CRC.pm (original)
+++ trunk/libdigest-crc-perl/lib/Digest/CRC.pm Sun Nov  4 17:12:31 2007
@@ -16,7 +16,7 @@
  crc32_hex crc32_base64
 );
 
-$VERSION    = '0.12';
+$VERSION    = '0.13';
 $XS_VERSION = $VERSION;
 $VERSION    = eval $VERSION;
 

Modified: trunk/libdigest-crc-perl/t/crc.t
URL: http://svn.debian.org/wsvn/trunk/libdigest-crc-perl/t/crc.t?rev=8842&op=diff
==============================================================================
--- trunk/libdigest-crc-perl/t/crc.t (original)
+++ trunk/libdigest-crc-perl/t/crc.t Sun Nov  4 17:12:31 2007
@@ -45,17 +45,17 @@
 $ctx->addfile(F);
 close(F);
 my $y = $ctx->digest;
-ok($y == 1468974098, 'OO crc32 with addfile '.$y); 
+ok($y == 1413438101, 'OO crc32 with addfile '.$y); 
 
 # start at offset >0 with previous checksum result
-$ctx = Digest::CRC->new(type=>"crc32",cont=>1,init=>2583869373); 
+$ctx = Digest::CRC->new(type=>"crc32",cont=>1,init=>1413438101); 
 open(F,"<README")||die "Cannot open README";
 use Fcntl qw(:seek);
 seek(F,989,Fcntl::SEEK_SET);
 $ctx->addfile(F);
 close(F);
 $y = $ctx->digest;
-ok($y == 1468974098, 'OO crc32 with addfile '.$y); 
+ok($y == 1413438101, 'OO crc32 with init and addfile '.$y); 
 
 $ctx = Digest::CRC->new(type=>"crcccitt"); 
 $ctx->add($input);




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