r1745 - packages/libcrypt-des-perl/branches/upstream/current

Krzysztof Krzyzaniak eloy at costa.debian.org
Sat Dec 24 19:33:50 UTC 2005


Author: eloy
Date: 2005-12-24 19:33:49 +0000 (Sat, 24 Dec 2005)
New Revision: 1745

Added:
   packages/libcrypt-des-perl/branches/upstream/current/META.yml
   packages/libcrypt-des-perl/branches/upstream/current/_des.h
Removed:
   packages/libcrypt-des-perl/branches/upstream/current/des.h
Modified:
   packages/libcrypt-des-perl/branches/upstream/current/DES.pm
   packages/libcrypt-des-perl/branches/upstream/current/DES.xs
   packages/libcrypt-des-perl/branches/upstream/current/MANIFEST
   packages/libcrypt-des-perl/branches/upstream/current/Makefile.PL
   packages/libcrypt-des-perl/branches/upstream/current/README
   packages/libcrypt-des-perl/branches/upstream/current/_des.c
   packages/libcrypt-des-perl/branches/upstream/current/test.pl
Log:
Load /tmp/tmp.CR6mNc/libcrypt-des-perl-2.05 into
packages/libcrypt-des-perl/branches/upstream/current.


Modified: packages/libcrypt-des-perl/branches/upstream/current/DES.pm
===================================================================
--- packages/libcrypt-des-perl/branches/upstream/current/DES.pm	2005-12-24 19:32:28 UTC (rev 1744)
+++ packages/libcrypt-des-perl/branches/upstream/current/DES.pm	2005-12-24 19:33:49 UTC (rev 1745)
@@ -19,7 +19,7 @@
 # Other items we are prepared to export if requested
 @EXPORT_OK =	qw();
 
-$VERSION = '2.03';
+$VERSION = '2.05';
 bootstrap Crypt::DES $VERSION;
 
 use strict;

Modified: packages/libcrypt-des-perl/branches/upstream/current/DES.xs
===================================================================
--- packages/libcrypt-des-perl/branches/upstream/current/DES.xs	2005-12-24 19:32:28 UTC (rev 1744)
+++ packages/libcrypt-des-perl/branches/upstream/current/DES.xs	2005-12-24 19:33:49 UTC (rev 1745)
@@ -15,17 +15,17 @@
 typedef unsigned char i8;
 typedef unsigned long i32;
 
-#include "des.h"
+#include "_des.h"
 
 #ifndef sv_undef
 #define sv_undef  PL_sv_undef
 #endif
 
-MODULE = Crypt::DES		PACKAGE = Crypt::DES		PREFIX = des_
+MODULE = Crypt::DES		PACKAGE = Crypt::DES		PREFIX = _des_
 PROTOTYPES: DISABLE
 
 char *
-des_expand_key(key)
+_des_expand_key(key)
 	char *	key = NO_INIT
 	STRLEN	key_len = NO_INIT
     CODE:
@@ -42,7 +42,7 @@
 	}
 
 void
-des_crypt(input, output, ks, enc_flag)
+_des_crypt(input, output, ks, enc_flag)
 	char *	input = NO_INIT
 	SV *	output
 	char *	ks = NO_INIT

Modified: packages/libcrypt-des-perl/branches/upstream/current/MANIFEST
===================================================================
--- packages/libcrypt-des-perl/branches/upstream/current/MANIFEST	2005-12-24 19:32:28 UTC (rev 1744)
+++ packages/libcrypt-des-perl/branches/upstream/current/MANIFEST	2005-12-24 19:33:49 UTC (rev 1745)
@@ -5,6 +5,7 @@
 README
 Makefile.PL
 _des.c
-des.h
+_des.h
 test.pl
 typemap
+META.yml                                 Module meta-data (added by MakeMaker)

Added: packages/libcrypt-des-perl/branches/upstream/current/META.yml
===================================================================
--- packages/libcrypt-des-perl/branches/upstream/current/META.yml	2005-12-24 19:32:28 UTC (rev 1744)
+++ packages/libcrypt-des-perl/branches/upstream/current/META.yml	2005-12-24 19:33:49 UTC (rev 1745)
@@ -0,0 +1,10 @@
+# http://module-build.sourceforge.net/META-spec.html
+#XXXXXXX This is a prototype!!!  It will change in the future!!! XXXXX#
+name:         Crypt-DES
+version:      2.05
+version_from: DES.pm
+installdirs:  site
+requires:
+
+distribution_type: module
+generated_by: ExtUtils::MakeMaker version 6.30


Property changes on: packages/libcrypt-des-perl/branches/upstream/current/Makefile.PL
___________________________________________________________________
Name: svn:executable
   - 
   + *

Modified: packages/libcrypt-des-perl/branches/upstream/current/README
===================================================================
--- packages/libcrypt-des-perl/branches/upstream/current/README	2005-12-24 19:32:28 UTC (rev 1744)
+++ packages/libcrypt-des-perl/branches/upstream/current/README	2005-12-24 19:33:49 UTC (rev 1745)
@@ -10,6 +10,14 @@
 to Jan 'Kozo' Vajda for pointing out the des_SPtrans
 overlap between these two packages.
 
+In release 2.04, des.h was renamed to _des.h in an
+attempt to solve the build-on-Solaris problem.  Reports
+would be appreciated.
+
+In release 2.05, all references to des_ were changed to
+_des_ since the 2.04 release didn't seem to fix the problem
+on Solaris.
+
 Prerequisites
 -------------
 

Modified: packages/libcrypt-des-perl/branches/upstream/current/_des.c
===================================================================
--- packages/libcrypt-des-perl/branches/upstream/current/_des.c	2005-12-24 19:32:28 UTC (rev 1744)
+++ packages/libcrypt-des-perl/branches/upstream/current/_des.c	2005-12-24 19:33:49 UTC (rev 1745)
@@ -59,7 +59,7 @@
 * [including the GNU Public Licence.]
 */
 
-#include "des.h"
+#include "_des.h"
 
 #define c2l(c,l)	(l =((unsigned long)(*((c)++))), \
 			 l|=((unsigned long)(*((c)++)))<< 8, \

Added: packages/libcrypt-des-perl/branches/upstream/current/_des.h
===================================================================
--- packages/libcrypt-des-perl/branches/upstream/current/_des.h	2005-12-24 19:32:28 UTC (rev 1744)
+++ packages/libcrypt-des-perl/branches/upstream/current/_des.h	2005-12-24 19:33:49 UTC (rev 1745)
@@ -0,0 +1,7 @@
+typedef unsigned char des_user_key[8];
+typedef unsigned char des_cblock[8];
+typedef unsigned long des_ks[32];
+
+void _des_crypt( des_cblock in, des_cblock out, des_ks key, int encrypt );
+void _des_expand_key( des_user_key userKey, des_ks key );
+

Deleted: packages/libcrypt-des-perl/branches/upstream/current/des.h
===================================================================
--- packages/libcrypt-des-perl/branches/upstream/current/des.h	2005-12-24 19:32:28 UTC (rev 1744)
+++ packages/libcrypt-des-perl/branches/upstream/current/des.h	2005-12-24 19:33:49 UTC (rev 1745)
@@ -1,7 +0,0 @@
-typedef unsigned char des_user_key[8];
-typedef unsigned char des_cblock[8];
-typedef unsigned long des_ks[32];
-
-void des_crypt( des_cblock in, des_cblock out, des_ks key, int encrypt );
-void des_expand_key( des_user_key userKey, des_ks key );
-

Modified: packages/libcrypt-des-perl/branches/upstream/current/test.pl
===================================================================
--- packages/libcrypt-des-perl/branches/upstream/current/test.pl	2005-12-24 19:32:28 UTC (rev 1744)
+++ packages/libcrypt-des-perl/branches/upstream/current/test.pl	2005-12-24 19:33:49 UTC (rev 1745)
@@ -23,7 +23,7 @@
 # Other items we are prepared to export if requested
 @EXPORT_OK =	qw();
 
-$VERSION = '2.03';
+$VERSION = '2.05';
 bootstrap Crypt::DES;
 
 use strict;




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