r1747 - in packages/libcrypt-des-perl/trunk: . debian

Krzysztof Krzyzaniak eloy at costa.debian.org
Sat Dec 24 19:36:07 UTC 2005


Author: eloy
Date: 2005-12-24 19:36:06 +0000 (Sat, 24 Dec 2005)
New Revision: 1747

Added:
   packages/libcrypt-des-perl/trunk/META.yml
   packages/libcrypt-des-perl/trunk/_des.h
Removed:
   packages/libcrypt-des-perl/trunk/des.h
Modified:
   packages/libcrypt-des-perl/trunk/DES.pm
   packages/libcrypt-des-perl/trunk/DES.xs
   packages/libcrypt-des-perl/trunk/MANIFEST
   packages/libcrypt-des-perl/trunk/README
   packages/libcrypt-des-perl/trunk/_des.c
   packages/libcrypt-des-perl/trunk/debian/changelog
   packages/libcrypt-des-perl/trunk/debian/control
   packages/libcrypt-des-perl/trunk/test.pl
Log:
eloy: new upstream version


Modified: packages/libcrypt-des-perl/trunk/DES.pm
===================================================================
--- packages/libcrypt-des-perl/trunk/DES.pm	2005-12-24 19:33:54 UTC (rev 1746)
+++ packages/libcrypt-des-perl/trunk/DES.pm	2005-12-24 19:36:06 UTC (rev 1747)
@@ -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/trunk/DES.xs
===================================================================
--- packages/libcrypt-des-perl/trunk/DES.xs	2005-12-24 19:33:54 UTC (rev 1746)
+++ packages/libcrypt-des-perl/trunk/DES.xs	2005-12-24 19:36:06 UTC (rev 1747)
@@ -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/trunk/MANIFEST
===================================================================
--- packages/libcrypt-des-perl/trunk/MANIFEST	2005-12-24 19:33:54 UTC (rev 1746)
+++ packages/libcrypt-des-perl/trunk/MANIFEST	2005-12-24 19:36:06 UTC (rev 1747)
@@ -5,6 +5,7 @@
 README
 Makefile.PL
 _des.c
-des.h
+_des.h
 test.pl
 typemap
+META.yml                                 Module meta-data (added by MakeMaker)

Copied: packages/libcrypt-des-perl/trunk/META.yml (from rev 1746, packages/libcrypt-des-perl/branches/upstream/current/META.yml)

Modified: packages/libcrypt-des-perl/trunk/README
===================================================================
--- packages/libcrypt-des-perl/trunk/README	2005-12-24 19:33:54 UTC (rev 1746)
+++ packages/libcrypt-des-perl/trunk/README	2005-12-24 19:36:06 UTC (rev 1747)
@@ -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/trunk/_des.c
===================================================================
--- packages/libcrypt-des-perl/trunk/_des.c	2005-12-24 19:33:54 UTC (rev 1746)
+++ packages/libcrypt-des-perl/trunk/_des.c	2005-12-24 19:36:06 UTC (rev 1747)
@@ -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, \

Copied: packages/libcrypt-des-perl/trunk/_des.h (from rev 1746, packages/libcrypt-des-perl/branches/upstream/current/_des.h)

Modified: packages/libcrypt-des-perl/trunk/debian/changelog
===================================================================
--- packages/libcrypt-des-perl/trunk/debian/changelog	2005-12-24 19:33:54 UTC (rev 1746)
+++ packages/libcrypt-des-perl/trunk/debian/changelog	2005-12-24 19:36:06 UTC (rev 1747)
@@ -1,3 +1,10 @@
+libcrypt-des-perl (2.05-1) unstable; urgency=low
+
+  * New upstream release (closes: #344647)
+  * Added me to Uploaders
+
+ -- Krzysztof Krzyzaniak (eloy) <eloy at debian.org>  Sat, 24 Dec 2005 20:34:04 +0100
+
 libcrypt-des-perl (2.03-4) unstable; urgency=low
 
   * Package now maintained by the Debian Perl group.  (Closes:  #313465)

Modified: packages/libcrypt-des-perl/trunk/debian/control
===================================================================
--- packages/libcrypt-des-perl/trunk/debian/control	2005-12-24 19:33:54 UTC (rev 1746)
+++ packages/libcrypt-des-perl/trunk/debian/control	2005-12-24 19:36:06 UTC (rev 1747)
@@ -2,9 +2,9 @@
 Section: perl
 Priority: optional
 Maintainer: "Debian Perl group" <pkg-perl-maintainers at lists.alioth.debian.org>
-Uploaders: Jaldhar H. Vyas <jaldhar at debian.org>
+Uploaders: Jaldhar H. Vyas <jaldhar at debian.org>, Krzysztof Krzyzaniak (eloy) <eloy at debian.org>
 Build-Depends: debhelper (>> 3.0.0), perl (>= 5.8.0-7), libcrypt-cbc-perl
-Standards-Version: 3.6.1
+Standards-Version: 3.6.2
 
 Package: libcrypt-des-perl
 Architecture: any

Deleted: packages/libcrypt-des-perl/trunk/des.h
===================================================================
--- packages/libcrypt-des-perl/trunk/des.h	2005-12-24 19:33:54 UTC (rev 1746)
+++ packages/libcrypt-des-perl/trunk/des.h	2005-12-24 19:36:06 UTC (rev 1747)
@@ -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/trunk/test.pl
===================================================================
--- packages/libcrypt-des-perl/trunk/test.pl	2005-12-24 19:33:54 UTC (rev 1746)
+++ packages/libcrypt-des-perl/trunk/test.pl	2005-12-24 19:36:06 UTC (rev 1747)
@@ -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