OBS-URL: https://build.opensuse.org/package/show/openSUSE:Factory/perl-IO-Socket-SSL?expand=0&rev=16
This commit is contained in:
parent
c229eb044c
commit
9dff622cb9
@ -1,25 +0,0 @@
|
||||
From 379f2843b96daf2f5aa575f56df5325d812056a3 Mon Sep 17 00:00:00 2001
|
||||
From: Ludwig Nussel <ludwig.nussel@suse.de>
|
||||
Date: Mon, 17 Nov 2008 14:44:02 +0100
|
||||
Subject: [PATCH] fix typo
|
||||
|
||||
---
|
||||
SSL.pm | 2 +-
|
||||
1 files changed, 1 insertions(+), 1 deletions(-)
|
||||
|
||||
diff --git a/SSL.pm b/SSL.pm
|
||||
index 68fddf3..32c48b9 100644
|
||||
--- a/SSL.pm
|
||||
+++ b/SSL.pm
|
||||
@@ -1084,7 +1084,7 @@ sub dump_peer_certificate {
|
||||
|
||||
if ( $scheme->{check_cn} eq 'always' or
|
||||
$scheme->{check_cn} eq 'when_only' and !$alt_dnsNames) {
|
||||
- $check_name->($commonName,$identity,$scheme->{wildcars_in_cn})
|
||||
+ $check_name->($commonName,$identity,$scheme->{wildcards_in_cn})
|
||||
and return 1;
|
||||
}
|
||||
|
||||
--
|
||||
1.6.0.2
|
||||
|
@ -1,3 +0,0 @@
|
||||
version https://git-lfs.github.com/spec/v1
|
||||
oid sha256:87cf9c174c2326368bcd47eeba84731bdd23299b1222ae49809d5144e83a6250
|
||||
size 55389
|
3
IO-Socket-SSL-1.20.tar.bz2
Normal file
3
IO-Socket-SSL-1.20.tar.bz2
Normal file
@ -0,0 +1,3 @@
|
||||
version https://git-lfs.github.com/spec/v1
|
||||
oid sha256:fd49f4fd22e43ac2ce6e6c67bc0f792a410b4255e1442b13bde454e3eb106a05
|
||||
size 56606
|
@ -1,3 +1,27 @@
|
||||
-------------------------------------------------------------------
|
||||
Tue Jan 20 17:50:47 CET 2009 - anicka@suse.cz
|
||||
|
||||
- update to 1.20
|
||||
* only changes on test suite to make it ready for win32
|
||||
* fix verfycn_name autodetection from PeerAddr/PeerHost
|
||||
* fixed typo in argument: wildcars_in_cn -> wildcards_in_cn
|
||||
* no code changes, publish v.16_3 as v.17 because it looks better
|
||||
than v.16
|
||||
* document win32 behavior regarding non-blocking and timeouts
|
||||
* fix t/nonblock.t with workaround for problems with
|
||||
IO::Socket::INET on some systems (Mac,5.6.2) where it cannot do
|
||||
nonblocking connect and leaves socket blocked.
|
||||
* make some tests less verbose by fixing diag in t/testlib.t
|
||||
(send output to STDOUT not STDERR and prefix with '#')
|
||||
* work around Bug in IO::Socket::INET6 on BSD systems
|
||||
http://rt.cpan.org/Ticket/Display.html?id=39550
|
||||
by setting Domain based on PeerAddr
|
||||
* remove tests of recv/send from t/core.t. Might badly interact
|
||||
with SSL handshake and cause crashes as seen on OS X 10.4
|
||||
* IPv6 is enabled by default if IO::Socket::INET6 is available
|
||||
* t/inet6.t for basic tests
|
||||
- remove last patch (fixed in upstream)
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Mon Nov 17 16:45:47 CET 2008 - lnussel@suse.de
|
||||
|
||||
|
@ -1,7 +1,7 @@
|
||||
#
|
||||
# spec file for package perl-IO-Socket-SSL (Version 1.16)
|
||||
# spec file for package perl-IO-Socket-SSL (Version 1.20)
|
||||
#
|
||||
# Copyright (c) 2008 SUSE LINUX Products GmbH, Nuernberg, Germany.
|
||||
# Copyright (c) 2009 SUSE LINUX Products GmbH, Nuernberg, Germany.
|
||||
#
|
||||
# All modifications and additions to the file contributed by third parties
|
||||
# remain the property of their copyright owners, unless otherwise agreed
|
||||
@ -20,8 +20,8 @@
|
||||
|
||||
Name: perl-IO-Socket-SSL
|
||||
BuildRequires: perl-Net-SSLeay perl-libwww-perl
|
||||
Version: 1.16
|
||||
Release: 2
|
||||
Version: 1.20
|
||||
Release: 1
|
||||
Provides: p_iossl
|
||||
Obsoletes: p_iossl
|
||||
Requires: perl-Net-SSLeay perl-libwww-perl
|
||||
@ -32,7 +32,6 @@ License: Artistic License
|
||||
Url: http://cpan.org/modules/by-module/IO
|
||||
Summary: IO::Socket::SSL Perl Module
|
||||
Source: IO-Socket-SSL-%{version}.tar.bz2
|
||||
Patch: IO-Socket-SSL-1.16-wildcard-typo.diff
|
||||
BuildRoot: %{_tmppath}/%{name}-%{version}-build
|
||||
|
||||
%description
|
||||
@ -49,7 +48,6 @@ Authors:
|
||||
|
||||
%prep
|
||||
%setup -q -n IO-Socket-SSL-%{version}
|
||||
%patch -p1
|
||||
|
||||
%build
|
||||
perl Makefile.PL
|
||||
@ -79,6 +77,27 @@ rm -rf $RPM_BUILD_ROOT
|
||||
/var/adm/perl-modules/%{name}
|
||||
|
||||
%changelog
|
||||
* Tue Jan 20 2009 anicka@suse.cz
|
||||
- update to 1.20
|
||||
* only changes on test suite to make it ready for win32
|
||||
* fix verfycn_name autodetection from PeerAddr/PeerHost
|
||||
* fixed typo in argument: wildcars_in_cn -> wildcards_in_cn
|
||||
* no code changes, publish v.16_3 as v.17 because it looks better
|
||||
than v.16
|
||||
* document win32 behavior regarding non-blocking and timeouts
|
||||
* fix t/nonblock.t with workaround for problems with
|
||||
IO::Socket::INET on some systems (Mac,5.6.2) where it cannot do
|
||||
nonblocking connect and leaves socket blocked.
|
||||
* make some tests less verbose by fixing diag in t/testlib.t
|
||||
(send output to STDOUT not STDERR and prefix with '#')
|
||||
* work around Bug in IO::Socket::INET6 on BSD systems
|
||||
http://rt.cpan.org/Ticket/Display.html?id=39550
|
||||
by setting Domain based on PeerAddr
|
||||
* remove tests of recv/send from t/core.t. Might badly interact
|
||||
with SSL handshake and cause crashes as seen on OS X 10.4
|
||||
* IPv6 is enabled by default if IO::Socket::INET6 is available
|
||||
* t/inet6.t for basic tests
|
||||
- remove last patch (fixed in upstream)
|
||||
* Mon Nov 17 2008 lnussel@suse.de
|
||||
- fix typo that prevented wildcards in CN (bnc#445678)
|
||||
* Mon Oct 06 2008 anicka@suse.cz
|
||||
|
Loading…
x
Reference in New Issue
Block a user