summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorheinz <heinz@pkgsrc.org>2008-01-08 15:01:55 +0000
committerheinz <heinz@pkgsrc.org>2008-01-08 15:01:55 +0000
commitc4641b5471ed70cb342116877b9e46465db89ce1 (patch)
tree1a7c6e76b05700b1169b905d132837641de2f06b
parentaa79a95655a1f5606d9ff067f30aab1b913c4e31 (diff)
downloadpkgsrc-c4641b5471ed70cb342116877b9e46465db89ce1.tar.gz
Updated to version 0.25.
Pkgsrc changes: - A C compiler is necessary. - Added explicit license identification. - Removed patch-ab (fixed upstream). Changes since version 0.24: =========================== 0.25 Sun May 20 2007 12:56:11 - Add a LICENSE file. - Fix a bug (reported by many) in rsa.t - we were incorrectly counting the number of tests in situations where use_sha512_hash was not available.
-rw-r--r--security/p5-Crypt-OpenSSL-RSA/Makefile12
-rw-r--r--security/p5-Crypt-OpenSSL-RSA/distinfo9
-rw-r--r--security/p5-Crypt-OpenSSL-RSA/patches/patch-ab16
3 files changed, 12 insertions, 25 deletions
diff --git a/security/p5-Crypt-OpenSSL-RSA/Makefile b/security/p5-Crypt-OpenSSL-RSA/Makefile
index 38c3fbfef78..528ab199082 100644
--- a/security/p5-Crypt-OpenSSL-RSA/Makefile
+++ b/security/p5-Crypt-OpenSSL-RSA/Makefile
@@ -1,7 +1,7 @@
-# $NetBSD: Makefile,v 1.11 2007/05/17 16:40:18 heinz Exp $
+# $NetBSD: Makefile,v 1.12 2008/01/08 15:01:55 heinz Exp $
#
-DISTNAME= Crypt-OpenSSL-RSA-0.24
+DISTNAME= Crypt-OpenSSL-RSA-0.25
PKGNAME= p5-${DISTNAME}
SVR4_PKGNAME= p5ors
CATEGORIES= security perl5
@@ -11,12 +11,16 @@ MAINTAINER= heinz@NetBSD.org
HOMEPAGE= http://perl-openssl.sourceforge.net/
COMMENT= Perl5 wrapper module for the OpenSSL RSA functions
-DEPENDS+= p5-Crypt-OpenSSL-Bignum-[0-9]*:../../security/p5-Crypt-OpenSSL-Bignum
-DEPENDS+= p5-Crypt-OpenSSL-Random-[0-9]*:../../security/p5-Crypt-OpenSSL-Random
+#LICENSE= gnu-gpl-v2 # under same terms as Perl
PKG_DESTDIR_SUPPORT= user-destdir
PKG_INSTALLATION_TYPES= overwrite pkgviews
+DEPENDS+= p5-Crypt-OpenSSL-Bignum-[0-9]*:../../security/p5-Crypt-OpenSSL-Bignum
+DEPENDS+= p5-Crypt-OpenSSL-Random-[0-9]*:../../security/p5-Crypt-OpenSSL-Random
+
+USE_LANGUAGES= c
+
PERL5_PACKLIST= auto/Crypt/OpenSSL/RSA/.packlist
.include "../../security/openssl/buildlink3.mk"
diff --git a/security/p5-Crypt-OpenSSL-RSA/distinfo b/security/p5-Crypt-OpenSSL-RSA/distinfo
index dda7472e45d..ecb8dc12de4 100644
--- a/security/p5-Crypt-OpenSSL-RSA/distinfo
+++ b/security/p5-Crypt-OpenSSL-RSA/distinfo
@@ -1,6 +1,5 @@
-$NetBSD: distinfo,v 1.6 2007/05/17 16:40:19 heinz Exp $
+$NetBSD: distinfo,v 1.7 2008/01/08 15:01:57 heinz Exp $
-SHA1 (Crypt-OpenSSL-RSA-0.24.tar.gz) = d8258622fd50292d0980acd682b6522804a887a5
-RMD160 (Crypt-OpenSSL-RSA-0.24.tar.gz) = 92468e2ae97fce7c1278b25bafd7458e1c32df65
-Size (Crypt-OpenSSL-RSA-0.24.tar.gz) = 11847 bytes
-SHA1 (patch-ab) = c238c982a776a211f896667a60b4723069383abe
+SHA1 (Crypt-OpenSSL-RSA-0.25.tar.gz) = 41597bfc06aa8f816d9d4e4f0dc28405ebe9c407
+RMD160 (Crypt-OpenSSL-RSA-0.25.tar.gz) = c7df8425238fc8d62db217b68ef9441a430dbda1
+Size (Crypt-OpenSSL-RSA-0.25.tar.gz) = 19133 bytes
diff --git a/security/p5-Crypt-OpenSSL-RSA/patches/patch-ab b/security/p5-Crypt-OpenSSL-RSA/patches/patch-ab
deleted file mode 100644
index 1c15ce887f6..00000000000
--- a/security/p5-Crypt-OpenSSL-RSA/patches/patch-ab
+++ /dev/null
@@ -1,16 +0,0 @@
-$NetBSD: patch-ab,v 1.1 2007/05/17 16:40:19 heinz Exp $
-
- If use_sha512_hash is not available (with OpenSSL <0.9.8), 4*5 tests will
- not be done.
-
---- t/rsa.t.orig 2006-11-13 01:01:04.000000000 +0100
-+++ t/rsa.t
-@@ -4,7 +4,7 @@ use Test;
- use Crypt::OpenSSL::Random;
- use Crypt::OpenSSL::RSA;
-
--BEGIN { plan tests => 45 + (UNIVERSAL::can("Crypt::OpenSSL::RSA", "use_sha512_hash") ? 3*6 : 0) }
-+BEGIN { plan tests => 43 + (UNIVERSAL::can("Crypt::OpenSSL::RSA", "use_sha512_hash") ? 4*5 : 0) }
-
- sub _Test_Encrypt_And_Decrypt
- {