From 7e10308b7c9090d2924b336b6be9b35c05744b0e Mon Sep 17 00:00:00 2001 From: taca Date: Thu, 7 Feb 2002 15:50:07 +0000 Subject: Update ruby-openssl package to 0.1.1. Changes from 0.0.9 is below. $Id: ChangeLog,v 1.28 2002/02/06 13:36:15 majkl Exp $ 'OpenSSL for Ruby' project Copyright (C) 2001 Michal Rokos All rights reserved. $Log: ChangeLog,v $ Revision 1.28 2002/02/06 13:36:15 majkl * Dropped Random class * Added Random module * Added egd interface to Random module Revision 1.27 2002/01/16 14:49:52 majkl * really fixed strptime.c (silly me, thanks Hynek) Revision 1.26 2002/01/16 13:52:24 majkl * fixed missing/strptime.c (Hynek) * more strict format for UTC time (ossl.c - 'Z' in the end) Revision 1.25 2002/01/16 12:12:50 majkl * selfdipatch BN implementation (test only) * removed strncasecmp (for WIN32 made alias to _strnicmp) * fixed missing/strptime.c (Hynek Rostinsky) Revision 1.24 2002/01/12 11:49:17 majkl * fixed callbacks in ossl_(ssl|x509store).c * added method X509::Store#verify_status= Revision 1.23 2002/01/10 19:32:23 majkl * fixed and improved verify_callbacks in ossl_(ssl|x509store).c * enhanced ossl_x509store.rb examples Revision 1.22 2002/01/10 17:33:16 majkl * OpenSSL::Cipher::BITx constant == x (so BIT40 = 40,...) Revision 1.21 2002/01/10 13:46:09 majkl * added OpenSSL-SNAPSHOT style NO_* (OPENSSL_NO_*) * added AES cipher when compiled under OpenSSL-SNAPSHOT * added warnings if the OpenSSL is compiled without some feature * handle NO_RSA, NO_DSA in openssl.rb * incremented version in ossl_version.h Revision 1.20 2002/01/10 00:44:17 majkl * OpenSSL 0.9.6c support (BN) * MS_CALLBACK to ossl_pkey_*.c * Memory checking with OSSL_DEBUG * API doc style change Revision 1.19 2002/01/06 16:18:32 majkl * ossl-0.1.0 released Revision 1.18 2002/01/06 16:10:37 majkl * BN is (somewhat) full imp. now * Config reworked (get_value, get_section) Revision 1.17 2002/01/04 11:27:45 majkl * API doc in README (but still not completed) * missing str(ncasecmp|strptime).c files moved to missing/ * ifdef NO_* handled Revision 1.16 2002/01/04 11:22:55 majkl * SelfDispatching used for X509:: Name, Extension, Attribute def XXX.new(arg) XXX.send("new_from_#{arg.type.name.downcase}", arg) end * RSA,DSA - 'new_from_pem', 'generate' singleton methods defined 'new' - implemented in Ruby space Revision 1.15 2002/01/04 11:12:45 majkl * Further checking (Check_SafeStr, memory leaks) Revision 1.14 2001/12/21 20:10:24 majkl *** empty log message *** Revision 1.13 2001/12/21 20:10:12 majkl * Memory checking Revision 1.12 2001/12/21 19:21:35 gotoyuzo * fixed unusual usage of ## preprocessing token sequence. Revision 1.11 2001/12/13 18:08:58 majkl * added bn methods (thanks to UNKNOWN ) * simplify ossl_digest sources Revision 1.10 2001/11/29 13:17:24 majkl * Make work under MS Windows (strptime added) + doc in README Revision 1.9 2001/11/26 11:48:36 majkl * Just forgot to add stuff to changelog... 2001/11/21 majkl * BN added (only proof of concept) * indent changed * rand.h to ossl.h added Revision 1.8 2001/11/21 09:37:03 gotoyuzo * buffering.rb went under ``openssl'' directory. Revision 1.7 2001/11/20 19:39:37 majkl * HMAC added * Config came back * API changed in PKCS7 (param. order) * API changed in Cipher (can't add data in .new) * indentation changed (only half of files, 2nd half to do) * some API doc added to README Revision 1.6 2001/11/19 12:44:57 majkl * added X509::Certificate .to_der --- security/ruby-openssl/Makefile | 4 ++-- security/ruby-openssl/PLIST | 4 ++-- security/ruby-openssl/distinfo | 6 +++--- 3 files changed, 7 insertions(+), 7 deletions(-) (limited to 'security') diff --git a/security/ruby-openssl/Makefile b/security/ruby-openssl/Makefile index 1a5d2513dec..9424d4728b0 100644 --- a/security/ruby-openssl/Makefile +++ b/security/ruby-openssl/Makefile @@ -1,4 +1,4 @@ -# $NetBSD: Makefile,v 1.1.1.1 2002/01/04 16:35:49 taca Exp $ +# $NetBSD: Makefile,v 1.2 2002/02/07 15:50:07 taca Exp $ DISTNAME= ossl-${VERSION} PKGNAME= ${RUBY_PKGNAMEPREFIX}openssl-${VERSION} @@ -10,7 +10,7 @@ MAINTAINER= taca@netbsd.org HOMEPAGE= http://www.freesoftware.fsf.org/rubypki/ COMMENT= OpenSSL interface module for Ruby -VERSION= 0.0.9 +VERSION= 0.1.1 DIST_SUBDIR= ruby USE_RUBY_EXTCONF= yes RUBY_REQD= 1.6.4 diff --git a/security/ruby-openssl/PLIST b/security/ruby-openssl/PLIST index 93802ebf4b7..3868b929f80 100644 --- a/security/ruby-openssl/PLIST +++ b/security/ruby-openssl/PLIST @@ -1,10 +1,10 @@ -@comment $NetBSD: PLIST,v 1.1.1.1 2002/01/04 16:35:49 taca Exp $ +@comment $NetBSD: PLIST,v 1.2 2002/02/07 15:50:07 taca Exp $ ${RUBY_SITEARCHLIBDIR}/openssl.so -${RUBY_SITELIBDIR}/buffering.rb ${RUBY_SITELIBDIR}/net/https.rb ${RUBY_SITELIBDIR}/net/protocols.rb ${RUBY_SITELIBDIR}/net/telnets.rb ${RUBY_SITELIBDIR}/openssl.rb +${RUBY_SITELIBDIR}/openssl/buffering.rb ${RUBY_SITELIBDIR}/ssl.rb ${RUBY_DOCDIR}/openssl/ChangeLog ${RUBY_DOCDIR}/openssl/README diff --git a/security/ruby-openssl/distinfo b/security/ruby-openssl/distinfo index 6fce326d9c0..ac5ba1bdc7d 100644 --- a/security/ruby-openssl/distinfo +++ b/security/ruby-openssl/distinfo @@ -1,4 +1,4 @@ -$NetBSD: distinfo,v 1.1.1.1 2002/01/04 16:35:49 taca Exp $ +$NetBSD: distinfo,v 1.2 2002/02/07 15:50:07 taca Exp $ -SHA1 (ruby/ossl-0.0.9.tgz) = c148c68b50256b438309c982de73da044dfe84cc -Size (ruby/ossl-0.0.9.tgz) = 73816 bytes +SHA1 (ruby/ossl-0.1.1.tgz) = b8ebc997850449e689e0822c553b0e6fd3cc378b +Size (ruby/ossl-0.1.1.tgz) = 84316 bytes -- cgit v1.2.3