r10722 - in /trunk/libcrypt-rijndael-perl: Changes META.yml Makefile.PL Rijndael.pm debian/changelog rijndael.h

dmn at users.alioth.debian.org dmn at users.alioth.debian.org
Sun Dec 2 17:20:33 UTC 2007


Author: dmn
Date: Sun Dec  2 17:20:33 2007
New Revision: 10722

URL: http://svn.debian.org/wsvn/?sc=1&rev=10722
Log:
New upstream release (1.05.01)

Modified:
    trunk/libcrypt-rijndael-perl/Changes
    trunk/libcrypt-rijndael-perl/META.yml
    trunk/libcrypt-rijndael-perl/Makefile.PL
    trunk/libcrypt-rijndael-perl/Rijndael.pm
    trunk/libcrypt-rijndael-perl/debian/changelog
    trunk/libcrypt-rijndael-perl/rijndael.h

Modified: trunk/libcrypt-rijndael-perl/Changes
URL: http://svn.debian.org/wsvn/trunk/libcrypt-rijndael-perl/Changes?rev=10722&op=diff
==============================================================================
--- trunk/libcrypt-rijndael-perl/Changes (original)
+++ trunk/libcrypt-rijndael-perl/Changes Sun Dec  2 17:20:33 2007
@@ -1,10 +1,14 @@
+
+1.05_01 - Tue Nov 20 07:59:26 2007
+	* Updated rijndael.h to handle Mac OS X Panther.
+	* No need to upgrade if you already have this installed.
 
 1.05 - Fri Nov  9 05:39:09 2007
 	* This version fixes the signed integer problems that Solaris had.
-	* Now this module require perl 5.6.
+	* Now this module requires perl 5.6.
 	* You don't need to upgrade if your system isn't Solaris.
 
-1.04 - Mon Oct 15 14:27:00 2007
+1.04_03 - Mon Oct 15 14:27:00 2007
 	* Quashed warnings about overflows by casting numbers to
 	unsigned ints.
 	* This compiles warning-free and passes all tests on

Modified: trunk/libcrypt-rijndael-perl/META.yml
URL: http://svn.debian.org/wsvn/trunk/libcrypt-rijndael-perl/META.yml?rev=10722&op=diff
==============================================================================
--- trunk/libcrypt-rijndael-perl/META.yml (original)
+++ trunk/libcrypt-rijndael-perl/META.yml Sun Dec  2 17:20:33 2007
@@ -1,6 +1,6 @@
 --- #YAML:1.0
 name:                Crypt-Rijndael
-version:             1.05
+version:             1.05_01
 abstract:            Crypt::CBC compliant Rijndael encryption module
 license:             gpl
 generated_by:        ExtUtils::MakeMaker version 6.36

Modified: trunk/libcrypt-rijndael-perl/Makefile.PL
URL: http://svn.debian.org/wsvn/trunk/libcrypt-rijndael-perl/Makefile.PL?rev=10722&op=diff
==============================================================================
--- trunk/libcrypt-rijndael-perl/Makefile.PL (original)
+++ trunk/libcrypt-rijndael-perl/Makefile.PL Sun Dec  2 17:20:33 2007
@@ -1,4 +1,4 @@
-# $Id: Makefile.PL 2367 2007-11-09 11:38:52Z comdog $
+# $Id: Makefile.PL 2408 2007-11-20 13:54:31Z comdog $
 
 require 5.006;
 
@@ -23,7 +23,7 @@
 			'Rijndael.pm' => '$(INST_MAN3DIR)/Crypt::Rijndael.3',
 			},
 
-	clean          => { FILES    => q|*.bak Crypt-*| },
+	clean          => { FILES    => q|*.bak *.old Crypt-*| },
 
 	dist	       => {
 	            PREOP	=> 'pod2text Rijndael.pm | tee README >$(DISTVNAME)/README; chmod -R u=rwX,go=rX . ;',

Modified: trunk/libcrypt-rijndael-perl/Rijndael.pm
URL: http://svn.debian.org/wsvn/trunk/libcrypt-rijndael-perl/Rijndael.pm?rev=10722&op=diff
==============================================================================
--- trunk/libcrypt-rijndael-perl/Rijndael.pm (original)
+++ trunk/libcrypt-rijndael-perl/Rijndael.pm Sun Dec  2 17:20:33 2007
@@ -34,7 +34,7 @@
 
 require DynaLoader;
 
-$VERSION = '1.05';
+$VERSION = '1.05_01';
 @ISA = qw/DynaLoader/;
 
 bootstrap Crypt::Rijndael $VERSION;

Modified: trunk/libcrypt-rijndael-perl/debian/changelog
URL: http://svn.debian.org/wsvn/trunk/libcrypt-rijndael-perl/debian/changelog?rev=10722&op=diff
==============================================================================
--- trunk/libcrypt-rijndael-perl/debian/changelog (original)
+++ trunk/libcrypt-rijndael-perl/debian/changelog Sun Dec  2 17:20:33 2007
@@ -1,3 +1,9 @@
+libcrypt-rijndael-perl (1.05.01-1) UNRELEASED; urgency=low
+
+  * (NOT RELEASED YET) New upstream release
+
+ -- Damyan Ivanov <dmn at debian.org>  Sun, 02 Dec 2007 19:03:39 +0200
+
 libcrypt-rijndael-perl (1.05-1) unstable; urgency=low
 
   * New upstream release.

Modified: trunk/libcrypt-rijndael-perl/rijndael.h
URL: http://svn.debian.org/wsvn/trunk/libcrypt-rijndael-perl/rijndael.h?rev=10722&op=diff
==============================================================================
--- trunk/libcrypt-rijndael-perl/rijndael.h (original)
+++ trunk/libcrypt-rijndael-perl/rijndael.h Sun Dec  2 17:20:33 2007
@@ -42,6 +42,22 @@
 	#define _CRYPT_RIJNDAEL_H_TYPES
 	typedef uint32_t UINT32;
 	typedef uint8_t  UINT8;
+#endif
+
+/* Mac OS X 10.3 defines things differently than most other 
+systems */
+#if defined( __ENVIRONMENT_MAC_OS_X_VERSION_MIN_REQUIRED__ ) &&  __ENVIRONMENT_MAC_OS_X_VERSION_MIN_REQUIRED__-0 < 1140
+	#define _CRYPT_RIJNDAEL_H_TYPES
+	typedef u_int32_t UINT32;
+	typedef u_char    UINT8;
+#endif
+
+/* Mac OS X 10.3 defines things differently than most other
+systems */
+#if defined(__APPLE__) && ! defined(__DARWIN_UNIX03)
+	#define _CRYPT_RIJNDAEL_H_TYPES
+	typedef u_int32_t UINT32;
+	typedef u_char Ê ÊUINT8;
 #endif
 
 /* I expect this to be the usual case */




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