r18973 - in /trunk/libcrypt-rijndael-perl: Changes META.yml Rijndael.pm _rijndael.c debian/changelog

gregoa at users.alioth.debian.org gregoa at users.alioth.debian.org
Mon Apr 21 16:14:03 UTC 2008


Author: gregoa
Date: Mon Apr 21 16:14:02 2008
New Revision: 18973

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

Modified:
    trunk/libcrypt-rijndael-perl/Changes
    trunk/libcrypt-rijndael-perl/META.yml
    trunk/libcrypt-rijndael-perl/Rijndael.pm
    trunk/libcrypt-rijndael-perl/_rijndael.c
    trunk/libcrypt-rijndael-perl/debian/changelog

Modified: trunk/libcrypt-rijndael-perl/Changes
URL: http://svn.debian.org/wsvn/pkg-perl/trunk/libcrypt-rijndael-perl/Changes?rev=18973&op=diff
==============================================================================
--- trunk/libcrypt-rijndael-perl/Changes (original)
+++ trunk/libcrypt-rijndael-perl/Changes Mon Apr 21 16:14:02 2008
@@ -1,6 +1,10 @@
+
+1.05_02 - Sun Apr 20 15:26:21 2008
+	* This is a workaround for a Solaris compiler bug, but let
+	s see what CPAN Testers does with it.
 
 1.05_01 - Tue Nov 20 07:59:26 2007
-	* Updated rijndael.h to handle Mac OS X Panther.
+	* Updated rijndael.h to handle Mac OS X Panther, thanks to John Fong.
 	* No need to upgrade if you already have this installed.
 
 1.05 - Fri Nov  9 05:39:09 2007
@@ -12,15 +16,14 @@
 	* Quashed warnings about overflows by casting numbers to
 	unsigned ints.
 	* This compiles warning-free and passes all tests on
-	Solaris 10 with gcc 3.4.6, so it might take care of RT
-	# 27632
+	Solaris 10 with gcc 3.4.6, so it might take care of RT#27632
 
 1.04_02 - Wed Sep 19 19:24:06 2007
 	* remove test files that shouldn't be there
 
 1.04_01 - Wed Sep 12 15:34:24 2007
 	* This developer release explores the Solaris bug noted in 
-	RT # 27632. Some Solaris installations may be encrypting or
+	RT#27632. Some Solaris installations may be encrypting or
 	decrpyting incorrectly.
 
 1.04 - Fri Feb 23 11:20:44 2007

Modified: trunk/libcrypt-rijndael-perl/META.yml
URL: http://svn.debian.org/wsvn/pkg-perl/trunk/libcrypt-rijndael-perl/META.yml?rev=18973&op=diff
==============================================================================
--- trunk/libcrypt-rijndael-perl/META.yml (original)
+++ trunk/libcrypt-rijndael-perl/META.yml Mon Apr 21 16:14:02 2008
@@ -1,6 +1,6 @@
 --- #YAML:1.0
 name:                Crypt-Rijndael
-version:             1.05_01
+version:             1.05_02
 abstract:            Crypt::CBC compliant Rijndael encryption module
 license:             gpl
 generated_by:        ExtUtils::MakeMaker version 6.36

Modified: trunk/libcrypt-rijndael-perl/Rijndael.pm
URL: http://svn.debian.org/wsvn/pkg-perl/trunk/libcrypt-rijndael-perl/Rijndael.pm?rev=18973&op=diff
==============================================================================
--- trunk/libcrypt-rijndael-perl/Rijndael.pm (original)
+++ trunk/libcrypt-rijndael-perl/Rijndael.pm Mon Apr 21 16:14:02 2008
@@ -34,7 +34,7 @@
 
 require DynaLoader;
 
-$VERSION = '1.05_01';
+$VERSION = '1.05_02';
 @ISA = qw/DynaLoader/;
 
 bootstrap Crypt::Rijndael $VERSION;

Modified: trunk/libcrypt-rijndael-perl/_rijndael.c
URL: http://svn.debian.org/wsvn/pkg-perl/trunk/libcrypt-rijndael-perl/_rijndael.c?rev=18973&op=diff
==============================================================================
--- trunk/libcrypt-rijndael-perl/_rijndael.c (original)
+++ trunk/libcrypt-rijndael-perl/_rijndael.c Mon Apr 21 16:14:02 2008
@@ -523,11 +523,11 @@
 	  input[RIJNDAEL_BLOCKSIZE*i + j];
       }
       block[RIJNDAEL_BLOCKSIZE-1]++;
-      carry_flg = block[RIJNDAEL_BLOCKSIZE-1] ? 0 : 1;
+      carry_flg = block[RIJNDAEL_BLOCKSIZE-1] != 0 ? 0 : 1;
       for (j=RIJNDAEL_BLOCKSIZE-2; j>=0; j--) {
 	if (carry_flg) {
 	  block[j]++;
-          carry_flg = block[j] ? 0 : 1;
+          carry_flg = block[j] != 0 ? 0 : 1;
         } else
 	  break;
       }
@@ -599,11 +599,11 @@
 	  input[RIJNDAEL_BLOCKSIZE*i + j];
       }
       block[RIJNDAEL_BLOCKSIZE-1]++;
-      carry_flg = block[RIJNDAEL_BLOCKSIZE-1] ? 0 : 1;
+      carry_flg = block[RIJNDAEL_BLOCKSIZE-1] != 0 ? 0 : 1;
       for (j=RIJNDAEL_BLOCKSIZE-2; j>=0; j--) {
 	if (carry_flg) {
 	  block[j]++;
-          carry_flg = block[j] ? 0 : 1;
+          carry_flg = block[j] != 0 ? 0 : 1;
         } else
 	  break;
       }

Modified: trunk/libcrypt-rijndael-perl/debian/changelog
URL: http://svn.debian.org/wsvn/pkg-perl/trunk/libcrypt-rijndael-perl/debian/changelog?rev=18973&op=diff
==============================================================================
--- trunk/libcrypt-rijndael-perl/debian/changelog (original)
+++ trunk/libcrypt-rijndael-perl/debian/changelog Mon Apr 21 16:14:02 2008
@@ -1,8 +1,12 @@
-libcrypt-rijndael-perl (1.05.01-3) UNRELEASED; urgency=low
+libcrypt-rijndael-perl (1.05.02-1) UNRELEASED; urgency=low
 
+  [ Martín Ferrari ]
   * Added by-author entry to allow us track the developer releases.
 
- -- Martín Ferrari <martin.ferrari at gmail.com>  Fri, 15 Feb 2008 05:17:53 -0200
+  [ gregor herrmann ]
+  * New upstream release.
+
+ -- gregor herrmann <gregoa at debian.org>  Mon, 21 Apr 2008 18:13:03 +0200
 
 libcrypt-rijndael-perl (1.05.01-2) unstable; urgency=low
 




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