Update to 2.016
- New upstream release 2.016 - Add flag X509_V_FLAG_TRUSTED_FIRST by default if available in OpenSSL (since 1.02) and available with Net::SSLeay (CPAN RT#104759) - Work around hanging prompt() with older perl in Makefile.PL (CPAN RT#104731) - Make t/memleak_bad_handshake.t work on cygwin and other systems having /proc/pid/statm (CPAN RT#104659) - Add better debugging
This commit is contained in:
parent
73b0e3e90c
commit
c60a35205c
@ -9,7 +9,7 @@
|
|||||||
SSL_verify_callback => undef,
|
SSL_verify_callback => undef,
|
||||||
SSL_verifycn_scheme => undef, # fallback cn verification
|
SSL_verifycn_scheme => undef, # fallback cn verification
|
||||||
SSL_verifycn_publicsuffix => undef, # fallback default list verification
|
SSL_verifycn_publicsuffix => undef, # fallback default list verification
|
||||||
@@ -2120,7 +2120,7 @@ WARN
|
@@ -2133,7 +2133,7 @@ WARN
|
||||||
$ssl_op |= &Net::SSLeay::OP_SINGLE_DH_USE;
|
$ssl_op |= &Net::SSLeay::OP_SINGLE_DH_USE;
|
||||||
$ssl_op |= &Net::SSLeay::OP_SINGLE_ECDH_USE if $can_ecdh;
|
$ssl_op |= &Net::SSLeay::OP_SINGLE_ECDH_USE if $can_ecdh;
|
||||||
|
|
||||||
@ -20,7 +20,7 @@
|
|||||||
or croak("invalid SSL_version specified");
|
or croak("invalid SSL_version specified");
|
||||||
--- lib/IO/Socket/SSL.pod
|
--- lib/IO/Socket/SSL.pod
|
||||||
+++ lib/IO/Socket/SSL.pod
|
+++ lib/IO/Socket/SSL.pod
|
||||||
@@ -930,11 +930,12 @@ protocol to the specified version.
|
@@ -932,11 +932,12 @@ protocol to the specified version.
|
||||||
All values are case-insensitive. Instead of 'TLSv1_1' and 'TLSv1_2' one can
|
All values are case-insensitive. Instead of 'TLSv1_1' and 'TLSv1_2' one can
|
||||||
also use 'TLSv11' and 'TLSv12'. Support for 'TLSv1_1' and 'TLSv1_2' requires
|
also use 'TLSv11' and 'TLSv12'. Support for 'TLSv1_1' and 'TLSv1_2' requires
|
||||||
recent versions of Net::SSLeay and openssl.
|
recent versions of Net::SSLeay and openssl.
|
@ -56,7 +56,7 @@
|
|||||||
# set values inside _init to work with perlcc, RT#95452
|
# set values inside _init to work with perlcc, RT#95452
|
||||||
--- lib/IO/Socket/SSL.pod
|
--- lib/IO/Socket/SSL.pod
|
||||||
+++ lib/IO/Socket/SSL.pod
|
+++ lib/IO/Socket/SSL.pod
|
||||||
@@ -956,12 +956,8 @@ documentation (L<http://www.openssl.org/
|
@@ -958,12 +958,8 @@ documentation (L<http://www.openssl.org/
|
||||||
for more details.
|
for more details.
|
||||||
|
|
||||||
Unless you fail to contact your peer because of no shared ciphers it is
|
Unless you fail to contact your peer because of no shared ciphers it is
|
@ -1,13 +1,13 @@
|
|||||||
Name: perl-IO-Socket-SSL
|
Name: perl-IO-Socket-SSL
|
||||||
Version: 2.015
|
Version: 2.016
|
||||||
Release: 2%{?dist}
|
Release: 1%{?dist}
|
||||||
Summary: Perl library for transparent SSL
|
Summary: Perl library for transparent SSL
|
||||||
Group: Development/Libraries
|
Group: Development/Libraries
|
||||||
License: GPL+ or Artistic
|
License: GPL+ or Artistic
|
||||||
URL: http://search.cpan.org/dist/IO-Socket-SSL/
|
URL: http://search.cpan.org/dist/IO-Socket-SSL/
|
||||||
Source0: http://search.cpan.org/CPAN/authors/id/S/SU/SULLR/IO-Socket-SSL-%{version}.tar.gz
|
Source0: http://search.cpan.org/CPAN/authors/id/S/SU/SULLR/IO-Socket-SSL-%{version}.tar.gz
|
||||||
Patch0: IO-Socket-SSL-2.013-use-system-default-cipher-list.patch
|
Patch0: IO-Socket-SSL-2.016-use-system-default-cipher-list.patch
|
||||||
Patch1: IO-Socket-SSL-2.015-use-system-default-SSL-version.patch
|
Patch1: IO-Socket-SSL-2.016-use-system-default-SSL-version.patch
|
||||||
BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root-%(id -nu)
|
BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root-%(id -nu)
|
||||||
BuildArch: noarch
|
BuildArch: noarch
|
||||||
# Module Build
|
# Module Build
|
||||||
@ -112,6 +112,16 @@ rm -rf %{buildroot}
|
|||||||
%{_mandir}/man3/IO::Socket::SSL::Utils.3*
|
%{_mandir}/man3/IO::Socket::SSL::Utils.3*
|
||||||
|
|
||||||
%changelog
|
%changelog
|
||||||
|
* Sun Jun 7 2015 Paul Howarth <paul@city-fan.org> - 2.016-1
|
||||||
|
- Update to 2.016
|
||||||
|
- Add flag X509_V_FLAG_TRUSTED_FIRST by default if available in OpenSSL
|
||||||
|
(since 1.02) and available with Net::SSLeay (CPAN RT#104759)
|
||||||
|
- Work around hanging prompt() with older perl in Makefile.PL
|
||||||
|
(CPAN RT#104731)
|
||||||
|
- Make t/memleak_bad_handshake.t work on cygwin and other systems having
|
||||||
|
/proc/pid/statm (CPAN RT#104659)
|
||||||
|
- Add better debugging
|
||||||
|
|
||||||
* Sat Jun 06 2015 Jitka Plesnikova <jplesnik@redhat.com> - 2.015-2
|
* Sat Jun 06 2015 Jitka Plesnikova <jplesnik@redhat.com> - 2.015-2
|
||||||
- Perl 5.22 rebuild
|
- Perl 5.22 rebuild
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user