r73802 - in /branches/upstream/libcrypt-openssl-x509-perl/current: Changes META.yml README X509.pm t/utf8.t t/x509.t

carnil at users.alioth.debian.org carnil at users.alioth.debian.org
Fri Apr 29 07:36:36 UTC 2011


Author: carnil
Date: Fri Apr 29 07:34:43 2011
New Revision: 73802

URL: http://svn.debian.org/wsvn/pkg-perl/?sc=1&rev=73802
Log:
[svn-upgrade] new version libcrypt-openssl-x509-perl (1.8.1)

Modified:
    branches/upstream/libcrypt-openssl-x509-perl/current/Changes
    branches/upstream/libcrypt-openssl-x509-perl/current/META.yml
    branches/upstream/libcrypt-openssl-x509-perl/current/README
    branches/upstream/libcrypt-openssl-x509-perl/current/X509.pm
    branches/upstream/libcrypt-openssl-x509-perl/current/t/utf8.t
    branches/upstream/libcrypt-openssl-x509-perl/current/t/x509.t

Modified: branches/upstream/libcrypt-openssl-x509-perl/current/Changes
URL: http://svn.debian.org/wsvn/pkg-perl/branches/upstream/libcrypt-openssl-x509-perl/current/Changes?rev=73802&op=diff
==============================================================================
--- branches/upstream/libcrypt-openssl-x509-perl/current/Changes (original)
+++ branches/upstream/libcrypt-openssl-x509-perl/current/Changes Fri Apr 29 07:34:43 2011
@@ -1,4 +1,7 @@
 Revision history for Perl extension Crypt::OpenSSL::X509.
+
+1.8.1  Sun Apr 17 06:57:09 PDT 2011
+	- Fix OpenSSL version check.
 
 1.8    Wed Apr 13 06:22:30 PDT 2011
 	- Bump version to deal with CPAN/Perl versioning madness.

Modified: branches/upstream/libcrypt-openssl-x509-perl/current/META.yml
URL: http://svn.debian.org/wsvn/pkg-perl/branches/upstream/libcrypt-openssl-x509-perl/current/META.yml?rev=73802&op=diff
==============================================================================
--- branches/upstream/libcrypt-openssl-x509-perl/current/META.yml (original)
+++ branches/upstream/libcrypt-openssl-x509-perl/current/META.yml Fri Apr 29 07:34:43 2011
@@ -23,4 +23,4 @@
   bugtracker: https://github.com/dsully/perl-crypt-openssl-x509/issues
   homepage: https://github.com/dsully/perl-crypt-openssl-x509
   license: http://dev.perl.org/licenses/
-version: 1.8
+version: 1.800.1

Modified: branches/upstream/libcrypt-openssl-x509-perl/current/README
URL: http://svn.debian.org/wsvn/pkg-perl/branches/upstream/libcrypt-openssl-x509-perl/current/README?rev=73802&op=diff
==============================================================================
--- branches/upstream/libcrypt-openssl-x509-perl/current/README (original)
+++ branches/upstream/libcrypt-openssl-x509-perl/current/README Fri Apr 29 07:34:43 2011
@@ -1,4 +1,4 @@
-Crypt/OpenSSL/X509 version 1.8
+Crypt/OpenSSL/X509 version 1.8.1
 ===============================
 
 The README is used to introduce the module and provide instructions on

Modified: branches/upstream/libcrypt-openssl-x509-perl/current/X509.pm
URL: http://svn.debian.org/wsvn/pkg-perl/branches/upstream/libcrypt-openssl-x509-perl/current/X509.pm?rev=73802&op=diff
==============================================================================
--- branches/upstream/libcrypt-openssl-x509-perl/current/X509.pm (original)
+++ branches/upstream/libcrypt-openssl-x509-perl/current/X509.pm Fri Apr 29 07:34:43 2011
@@ -5,7 +5,7 @@
 use Exporter;
 use base qw(Exporter);
 
-$VERSION = '1.8';
+$VERSION = '1.800.1';
 
 @EXPORT_OK = qw(
   FORMAT_UNDEF FORMAT_ASN1 FORMAT_TEXT FORMAT_PEM FORMAT_NETSCAPE

Modified: branches/upstream/libcrypt-openssl-x509-perl/current/t/utf8.t
URL: http://svn.debian.org/wsvn/pkg-perl/branches/upstream/libcrypt-openssl-x509-perl/current/t/utf8.t?rev=73802&op=diff
==============================================================================
--- branches/upstream/libcrypt-openssl-x509-perl/current/t/utf8.t (original)
+++ branches/upstream/libcrypt-openssl-x509-perl/current/t/utf8.t Fri Apr 29 07:34:43 2011
@@ -41,7 +41,7 @@
 
 # OpenSSL v1.0.0 (and higher?) fails to read this cert.
 SKIP: {
-  skip "OpenSSL v1.0.0 can't read broken certs.", 3 if Crypt::OpenSSL::X509::OPENSSL_VERSION_NUMBER >= 0x1000000f;
+  skip "OpenSSL v1.0.0 can't read broken certs.", 3 if Crypt::OpenSSL::X509::OPENSSL_VERSION_NUMBER >= 0x10000000;
 
   ok($x509 = Crypt::OpenSSL::X509->new_from_file('certs/broken-utf8.pem'), 'new_from_file()');
   $sub = $x509->subject();

Modified: branches/upstream/libcrypt-openssl-x509-perl/current/t/x509.t
URL: http://svn.debian.org/wsvn/pkg-perl/branches/upstream/libcrypt-openssl-x509-perl/current/t/x509.t?rev=73802&op=diff
==============================================================================
--- branches/upstream/libcrypt-openssl-x509-perl/current/t/x509.t (original)
+++ branches/upstream/libcrypt-openssl-x509-perl/current/t/x509.t Fri Apr 29 07:34:43 2011
@@ -20,7 +20,7 @@
 
 # For some reason the hash hash changed with v1.0.0
 # Verified with the openssl binary.
-if (Crypt::OpenSSL::X509::OPENSSL_VERSION_NUMBER >= 0x1000000f) {
+if (Crypt::OpenSSL::X509::OPENSSL_VERSION_NUMBER >= 0x10000000) {
   ok($x509->hash() eq '24ad0b63', 'hash()');
 } else {
   ok($x509->hash() eq '2edf7016', 'hash()');




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