r25942 - in /branches/upstream/libcrypt-rijndael-perl/current: Changes META.yml Rijndael.pm rijndael.h

ansgar-guest at users.alioth.debian.org ansgar-guest at users.alioth.debian.org
Sat Oct 11 13:48:57 UTC 2008


Author: ansgar-guest
Date: Sat Oct 11 13:48:54 2008
New Revision: 25942

URL: http://svn.debian.org/wsvn/pkg-perl/?sc=1&rev=25942
Log:
[svn-upgrade] Integrating new upstream version, libcrypt-rijndael-perl (1.07)

Modified:
    branches/upstream/libcrypt-rijndael-perl/current/Changes
    branches/upstream/libcrypt-rijndael-perl/current/META.yml
    branches/upstream/libcrypt-rijndael-perl/current/Rijndael.pm
    branches/upstream/libcrypt-rijndael-perl/current/rijndael.h

Modified: branches/upstream/libcrypt-rijndael-perl/current/Changes
URL: http://svn.debian.org/wsvn/pkg-perl/branches/upstream/libcrypt-rijndael-perl/current/Changes?rev=25942&op=diff
==============================================================================
--- branches/upstream/libcrypt-rijndael-perl/current/Changes (original)
+++ branches/upstream/libcrypt-rijndael-perl/current/Changes Sat Oct 11 13:48:54 2008
@@ -1,3 +1,21 @@
+
+1.07 - Fri Aug 15 16:53:36 2008
+	* Fixed the odd character problems in some of the files
+	* No need to upgrade if you already have this installed
+
+1.06_03 - Sun Jun 22 11:32:46 2008
+	* Trying the __sgi definition. If this doesn't make things
+	blow up, this release will get bumped to 1.07.
+
+1.06_02 - Thu Jun 19 11:55:21 2008
+	* Removed wide chars from the header file. Some compilers 
+	like to complain about things that are wrong. :(
+
+1.06_01 - Wed Jun 18 09:37:34 2008
+	This is a test of a fix for Irix.
+
+1.06_01 - Wed Jun  4 19:18:57 2008
+	* This is a test of a fix for Irix.
 
 1.06 - Wed Apr 23 13:14:34 2008
 	* This release has a compiler-bug workaround for Sun C 5.9

Modified: branches/upstream/libcrypt-rijndael-perl/current/META.yml
URL: http://svn.debian.org/wsvn/pkg-perl/branches/upstream/libcrypt-rijndael-perl/current/META.yml?rev=25942&op=diff
==============================================================================
--- branches/upstream/libcrypt-rijndael-perl/current/META.yml (original)
+++ branches/upstream/libcrypt-rijndael-perl/current/META.yml Sat Oct 11 13:48:54 2008
@@ -1,9 +1,11 @@
 --- #YAML:1.0
 name:                Crypt-Rijndael
-version:             1.06
+version:             1.07
 abstract:            Crypt::CBC compliant Rijndael encryption module
 license:             gpl
-generated_by:        ExtUtils::MakeMaker version 6.36
+author:              
+    - Rafael R. Sevilla (maintained by brian d foy <bdfoy at cpan.org>)
+generated_by:        ExtUtils::MakeMaker version 6.44
 distribution_type:   module
 requires:     
     Test::Manifest:                1.14
@@ -11,5 +13,3 @@
 meta-spec:
     url:     http://module-build.sourceforge.net/META-spec-v1.3.html
     version: 1.3
-author:
-    - Rafael R. Sevilla (maintained by brian d foy <bdfoy at cpan.org>)

Modified: branches/upstream/libcrypt-rijndael-perl/current/Rijndael.pm
URL: http://svn.debian.org/wsvn/pkg-perl/branches/upstream/libcrypt-rijndael-perl/current/Rijndael.pm?rev=25942&op=diff
==============================================================================
--- branches/upstream/libcrypt-rijndael-perl/current/Rijndael.pm (original)
+++ branches/upstream/libcrypt-rijndael-perl/current/Rijndael.pm Sat Oct 11 13:48:54 2008
@@ -34,7 +34,7 @@
 
 require DynaLoader;
 
-$VERSION = '1.06';
+$VERSION = '1.07';
 @ISA = qw/DynaLoader/;
 
 bootstrap Crypt::Rijndael $VERSION;

Modified: branches/upstream/libcrypt-rijndael-perl/current/rijndael.h
URL: http://svn.debian.org/wsvn/pkg-perl/branches/upstream/libcrypt-rijndael-perl/current/rijndael.h?rev=25942&op=diff
==============================================================================
--- branches/upstream/libcrypt-rijndael-perl/current/rijndael.h (original)
+++ branches/upstream/libcrypt-rijndael-perl/current/rijndael.h Sat Oct 11 13:48:54 2008
@@ -34,6 +34,17 @@
 	#undef _CRYPT_RIJNDAEL_H_TYPES
 #endif
 
+/* Irix. We could include stdint.h and use uint8_t but that also
+ * requires that we specifically drive the compiler in C99 mode.
+ * Defining UINT8 as unsigned char is, ultimately, what stdint.h
+ * would do anyway.
+ */
+#if defined(_SGIAPI) || defined( __sgi )
+	#define _CRYPT_RIJNDAEL_H_TYPES
+	typedef __uint32_t    UINT32;
+	typedef unsigned char UINT8;
+#endif
+
 /* Solaris has sys/types.h, but doesn't act like everyone else 
  * GCC defines __sun__ and __sun (report from Todd Ross)
  * Solaris cc defines __sun
@@ -57,7 +68,7 @@
 #if defined(__APPLE__) && ! defined(__DARWIN_UNIX03)
 	#define _CRYPT_RIJNDAEL_H_TYPES
 	typedef u_int32_t UINT32;
-	typedef u_char Ê ÊUINT8;
+	typedef u_char    UINT8;
 #endif
 
 /* I expect this to be the usual case */




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