pkgsrc-Changes-HG archive

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index][Old Index]

[pkgsrc/trunk]: pkgsrc/security/p5-Crypt-IDEA Updated to version 1.06.



details:   https://anonhg.NetBSD.org/pkgsrc/rev/90188df16495
branches:  trunk
changeset: 507975:90188df16495
user:      heinz <heinz%pkgsrc.org@localhost>
date:      Sun Feb 12 02:46:50 2006 +0000

description:
Updated to version 1.06.

Changes since version 1.02:
======================================
There is no list of changes. Changes I found so far:
- Used htons() from netinet/in.h to simplify handling of different endianness
  between platforms.
- Some changes in test.pl

diffstat:

 security/p5-Crypt-IDEA/Makefile         |   5 ++---
 security/p5-Crypt-IDEA/distinfo         |  10 ++++------
 security/p5-Crypt-IDEA/patches/patch-aa |  28 ----------------------------
 security/p5-Crypt-IDEA/patches/patch-ac |  12 ------------
 4 files changed, 6 insertions(+), 49 deletions(-)

diffs (78 lines):

diff -r dab89578eeb1 -r 90188df16495 security/p5-Crypt-IDEA/Makefile
--- a/security/p5-Crypt-IDEA/Makefile   Sun Feb 12 02:26:08 2006 +0000
+++ b/security/p5-Crypt-IDEA/Makefile   Sun Feb 12 02:46:50 2006 +0000
@@ -1,9 +1,8 @@
-# $NetBSD: Makefile,v 1.10 2005/08/06 06:19:29 jlam Exp $
+# $NetBSD: Makefile,v 1.11 2006/02/12 02:46:50 heinz Exp $
 #
 
-DISTNAME=              Crypt-IDEA-1.02
+DISTNAME=              Crypt-IDEA-1.06
 PKGNAME=               p5-${DISTNAME}
-PKGREVISION=           2
 CATEGORIES=            security perl5
 MASTER_SITES=          ${MASTER_SITE_PERL_CPAN:=Crypt/}
 
diff -r dab89578eeb1 -r 90188df16495 security/p5-Crypt-IDEA/distinfo
--- a/security/p5-Crypt-IDEA/distinfo   Sun Feb 12 02:26:08 2006 +0000
+++ b/security/p5-Crypt-IDEA/distinfo   Sun Feb 12 02:46:50 2006 +0000
@@ -1,7 +1,5 @@
-$NetBSD: distinfo,v 1.4 2005/05/28 00:42:31 heinz Exp $
+$NetBSD: distinfo,v 1.5 2006/02/12 02:46:50 heinz Exp $
 
-SHA1 (Crypt-IDEA-1.02.tar.gz) = 05fca3a3040c4ab1ae26996698d92d86cf230a86
-RMD160 (Crypt-IDEA-1.02.tar.gz) = 40ec35380e16dfcec75a7ba14bfd08bf2f2a114c
-Size (Crypt-IDEA-1.02.tar.gz) = 5366 bytes
-SHA1 (patch-aa) = 2ef310bcbe8202c25708cce446ea694cd5fdecfa
-SHA1 (patch-ac) = 88a03be0a16b57a2c1347b66731dcdc99e2485d3
+SHA1 (Crypt-IDEA-1.06.tar.gz) = 0fb4183cf7799989a0c1bb016fa30c07180c1759
+RMD160 (Crypt-IDEA-1.06.tar.gz) = bd385286161b67dc5f6e5c1a34add1c4e976fa59
+Size (Crypt-IDEA-1.06.tar.gz) = 6719 bytes
diff -r dab89578eeb1 -r 90188df16495 security/p5-Crypt-IDEA/patches/patch-aa
--- a/security/p5-Crypt-IDEA/patches/patch-aa   Sun Feb 12 02:26:08 2006 +0000
+++ /dev/null   Thu Jan 01 00:00:00 1970 +0000
@@ -1,28 +0,0 @@
-$NetBSD: patch-aa,v 1.3 2005/05/28 00:42:31 heinz Exp $
-
---- _idea.c.orig       Sat May 22 22:30:47 1999
-+++ _idea.c
-@@ -5,7 +5,22 @@
- 
- #include "idea.h"
- 
--#include <endian.h>
-+#if defined(__DragonFly__) || defined(__FreeBSD__) || defined(__NetBSD__) || defined(__OpenBSD__)
-+# include <sys/endian.h>
-+#elif defined(__APPLE__)
-+# include <sys/types.h>
-+#elif defined(__sun)
-+# define LITTLE_ENDIAN 1234
-+# define BIG_ENDIAN 4321
-+# include <sys/isa_defs.h>
-+# if defined(_LITTLE_ENDIAN)
-+#  define BYTE_ORDER LITTLE_ENDIAN
-+# else
-+#  define BYTE_ORDER BIG_ENDIAN
-+# endif
-+#else
-+# include <endian.h>
-+#endif
- 
- #define KEYS_PER_ROUND        6
- #define ROUNDS                        8 
diff -r dab89578eeb1 -r 90188df16495 security/p5-Crypt-IDEA/patches/patch-ac
--- a/security/p5-Crypt-IDEA/patches/patch-ac   Sun Feb 12 02:26:08 2006 +0000
+++ /dev/null   Thu Jan 01 00:00:00 1970 +0000
@@ -1,12 +0,0 @@
-$NetBSD: patch-ac,v 1.1 2005/05/28 00:38:38 heinz Exp $
-
---- idea.h.orig        Sat May 22 22:30:47 1999
-+++ idea.h
-@@ -1,4 +1,7 @@
- #include <sys/types.h>
-+#if defined(__sun)
-+typedef uint16_t u_int16_t;
-+#endif
- 
- #define IDEA_KS_SIZE 104
- 



Home | Main Index | Thread Index | Old Index