9ccfd1
Name:           perl-IO-Socket-SSL
9ccfd1
Version:        1.94
a8323a
Release:        5%{?dist}
9ccfd1
Summary:        Perl library for transparent SSL
9ccfd1
Group:          Development/Libraries
9ccfd1
License:        GPL+ or Artistic
9ccfd1
URL:            http://search.cpan.org/dist/IO-Socket-SSL/
9ccfd1
Source0:        http://search.cpan.org/CPAN/authors/id/S/SU/SULLR/IO-Socket-SSL-%{version}.tar.gz
9ccfd1
# Correct error reporting, fixed in 1.953, CPAN RT#87052
9ccfd1
Patch0:         IO-Socket-SSL-1.94-1.953-RT-87052-fix-in-Utils.pm.patch
a8323a
# Respect OpenSSL default ciphers and protocol versions BZ#1127322
a8323a
Patch1:         IO-Socket-SSL-1.94-Respect-OpenSSL-default-ciphers-and-protocol-versions.patch
a8323a
# Fix typo in Utils.pm BZ#1097710
a8323a
Patch2:         IO-Socket-SSL-1.94-Fix-typo-key-free.patch
a8323a
# Add support for ECDH key exchange, in upstream 1.955, bug #1316377
a8323a
Patch3:         IO-Socket-SSL-1.94-Added-support-for-ECDH-key-exchange-with-key-SSL_ecd.patch
9ccfd1
BuildArch:      noarch
9ccfd1
BuildRequires:  openssl >= 0.9.8
9ccfd1
BuildRequires:  perl
9ccfd1
BuildRequires:  perl(Carp)
9ccfd1
BuildRequires:  perl(constant)
9ccfd1
BuildRequires:  perl(Errno)
9ccfd1
BuildRequires:  perl(Exporter)
9ccfd1
BuildRequires:  perl(ExtUtils::MakeMaker) >= 6.46
9ccfd1
BuildRequires:  perl(IO::Select)
9ccfd1
BuildRequires:  perl(IO::Socket)
9ccfd1
BuildRequires:  perl(IO::Socket::INET)
9ccfd1
#BuildRequires: perl(IO::Socket::INET6) ????
9ccfd1
BuildRequires:  perl(IO::Socket::IP) >= 0.20
9ccfd1
BuildRequires:  perl(Net::LibIDN)
9ccfd1
BuildRequires:  perl(Net::SSLeay) >= 1.46
9ccfd1
BuildRequires:  perl(Scalar::Util)
9ccfd1
BuildRequires:  perl(Socket) >= 1.9
9ccfd1
BuildRequires:  perl(Socket6)
9ccfd1
BuildRequires:  perl(strict)
9ccfd1
BuildRequires:  perl(Time::Local)
9ccfd1
BuildRequires:  perl(vars)
9ccfd1
BuildRequires:  perl(warnings)
9ccfd1
BuildRequires:  procps
9ccfd1
Requires:       perl(:MODULE_COMPAT_%(eval "`perl -V:version`"; echo $version))
9ccfd1
Requires:       perl(IO::Socket::IP) >= 0.20
9ccfd1
Requires:       perl(Socket) >= 1.95
9ccfd1
Requires:       perl(Net::LibIDN)
9ccfd1
Requires:       openssl >= 0.9.8
9ccfd1
9ccfd1
%description
9ccfd1
This module is a true drop-in replacement for IO::Socket::INET that
9ccfd1
uses SSL to encrypt data before it is transferred to a remote server
9ccfd1
or client. IO::Socket::SSL supports all the extra features that one
9ccfd1
needs to write a full-featured SSL client or server application:
9ccfd1
multiple SSL contexts, cipher selection, certificate verification, and
9ccfd1
SSL version selection. As an extra bonus, it works perfectly with
9ccfd1
mod_perl.
9ccfd1
9ccfd1
%prep
9ccfd1
%setup -q -n IO-Socket-SSL-%{version}
9ccfd1
%patch0 -p1
a8323a
%patch1 -p1
a8323a
%patch2 -p1
a8323a
%patch3 -p1
9ccfd1
9ccfd1
%build
9ccfd1
perl Makefile.PL INSTALLDIRS=vendor
9ccfd1
make %{?_smp_mflags}
9ccfd1
9ccfd1
%install
9ccfd1
make pure_install DESTDIR=%{buildroot}
9ccfd1
find %{buildroot} -type f -name .packlist -exec rm -f {} +
9ccfd1
%{_fixperms} %{buildroot}
9ccfd1
9ccfd1
%check
9ccfd1
make test
9ccfd1
9ccfd1
%files
9ccfd1
%doc BUGS Changes README docs/ certs/ example/ util/
9ccfd1
%{perl_vendorlib}/IO/
9ccfd1
%{_mandir}/man3/IO::Socket::SSL.3*
9ccfd1
%{_mandir}/man3/IO::Socket::SSL::Intercept.3*
9ccfd1
%{_mandir}/man3/IO::Socket::SSL::Utils.3*
9ccfd1
9ccfd1
%changelog
a8323a
* Thu Mar 10 2016 Jitka Plesnikova <jplesnik@redhat.com> - 1.94-5
a8323a
- Add support for ECDH key exchange (bug #1316377)
a8323a
a8323a
* Fri Mar 04 2016 Jitka Plesnikova <jplesnik@redhat.com> - 1.94-4
a8323a
- Respect OpenSSL default ciphers and protocol versions (bug #1127322)
a8323a
- Fix typo in Utils.pm (bug #1097710)
a8323a
5f4475
* Fri Dec 27 2013 Daniel Mach <dmach@redhat.com> - 1.94-3
5f4475
- Mass rebuild 2013-12-27
5f4475
9ccfd1
* Wed Aug 07 2013 Petr Šabata <contyk@redhat.com> - 1.94-2.1
9ccfd1
- Extend the dependency list and remove not needed conditionals
9ccfd1
- Modernize the spec
9ccfd1
9ccfd1
* Mon Jul 22 2013 Petr Pisar <ppisar@redhat.com> - 1.94-2
9ccfd1
- Correct error reporting (CPAN RT#87052)
9ccfd1
9ccfd1
* Sat Jun  1 2013 Paul Howarth <paul@city-fan.org> - 1.94-1
9ccfd1
- Update to 1.94
9ccfd1
  - Makefile.PL reported wrong version of openssl if Net::SSLeay was not
9ccfd1
    installed, instead of reporting a missing dependency of Net::SSLeay
9ccfd1
9ccfd1
* Fri May 31 2013 Paul Howarth <paul@city-fan.org> - 1.93-1
9ccfd1
- Update to 1.93
9ccfd1
  - Need at least OpenSSL version 0.9.8 now, since last 0.9.7 was released 6
9ccfd1
    years ago; remove code to work around older releases
9ccfd1
  - Changed AUTHOR in Makefile.PL from array back to string, because the array
9ccfd1
    feature is not available in MakeMaker shipped with 5.8.9 (CPAN RT#85739)
9ccfd1
- Set openssl version requirement to 0.9.8
9ccfd1
- Drop ExtUtils::MakeMaker version requirement back to 6.46
9ccfd1
9ccfd1
* Thu May 30 2013 Paul Howarth <paul@city-fan.org> - 1.92-1
9ccfd1
- Update to 1.92
9ccfd1
  - Intercept: use sha1-fingerprint of original cert for id into cache unless
9ccfd1
    otherwise given
9ccfd1
  - Fix pod error in IO::Socket::SSL::Utils (CPAN RT#85733)
9ccfd1
9ccfd1
* Thu May 30 2013 Paul Howarth <paul@city-fan.org> - 1.91-1
9ccfd1
- Update to 1.91
9ccfd1
  - Added IO::Socket::SSL::Utils for easier manipulation of certificates and
9ccfd1
    keys
9ccfd1
  - Moved SSL interception into IO::Socket::SSL::Intercept and simplified it
9ccfd1
    using IO::Socket::SSL::Utils
9ccfd1
  - Enhance meta information in Makefile.PL
9ccfd1
- Bump openssl version requirement to 0.9.8a
9ccfd1
- Need at least version 6.58 of ExtUtils::MakeMaker (CPAN RT#85739)
9ccfd1
9ccfd1
* Wed May 29 2013 Paul Howarth <paul@city-fan.org> - 1.90-1
9ccfd1
- Update to 1.90
9ccfd1
  - Support more digests, especially SHA-2 (CPAN RT#85290)
9ccfd1
  - Added support for easy SSL interception (man in the middle) based on ideas
9ccfd1
    found in mojo-mitm proxy
9ccfd1
  - Make 1.46 the minimal required version for Net::SSLeay, because it
9ccfd1
    introduced lots of useful functions
9ccfd1
- BR:/R: openssl ≥ 0.9.7e for P_ASN1_TIME_(get,set)_isotime in Net::SSLeay
9ccfd1
9ccfd1
* Tue May 14 2013 Paul Howarth <paul@city-fan.org> - 1.89-1
9ccfd1
- Update to 1.89
9ccfd1
  - If IO::Socket::IP is used it should be at least version 0.20; otherwise we
9ccfd1
    get problems with HTTP::Daemon::SSL and maybe others (CPAN RT#81932)
9ccfd1
  - Spelling corrections
9ccfd1
9ccfd1
* Thu May  2 2013 Paul Howarth <paul@city-fan.org> - 1.88-1
9ccfd1
- Update to 1.88
9ccfd1
  - Consider a value of '' the same as undef for SSL_ca_(path|file), SSL_key*
9ccfd1
    and SSL_cert* - some apps like Net::LDAP use it that way
9ccfd1
9ccfd1
* Wed Apr 24 2013 Paul Howarth <paul@city-fan.org> - 1.87-1
9ccfd1
- Update to 1.87
9ccfd1
  - Complain if given SSL_(key|cert|ca)_(file|path) do not exist or if they are
9ccfd1
    not readable (CPAN RT#84829)
9ccfd1
  - Fix use of SSL_key|SSL_file objects instead of files, broken with 1.83
9ccfd1
9ccfd1
* Wed Apr 17 2013 Paul Howarth <paul@city-fan.org> - 1.86-1
9ccfd1
- Update to 1.86
9ccfd1
  - Don't warn about SSL_verify_mode when re-using an existing SSL context
9ccfd1
    (CPAN RT#84686)
9ccfd1
9ccfd1
* Mon Apr 15 2013 Paul Howarth <paul@city-fan.org> - 1.85-1
9ccfd1
- Update to 1.85
9ccfd1
  - Probe for available modules with local __DIE__ and __WARN__handlers
9ccfd1
    (CPAN RT#84574)
9ccfd1
  - Fix warning, when IO::Socket::IP is installed and inet6 support gets
9ccfd1
    explicitly requested (CPAN RT#84619)
9ccfd1
9ccfd1
* Sat Feb 16 2013 Paul Howarth <paul@city-fan.org> - 1.84-1
9ccfd1
- Update to 1.84
9ccfd1
  - Disabled client side SNI for openssl version < 1.0.0 because of
9ccfd1
    CPAN RT#83289
9ccfd1
  - Added functions can_client_sni, can_server_sni and can_npn to check
9ccfd1
    availability of SNI and NPN features
9ccfd1
  - Added more documentation for SNI and NPN
9ccfd1
9ccfd1
* Thu Feb 14 2013 Paul Howarth <paul@city-fan.org> - 1.83-2
9ccfd1
- Update to 1.831
9ccfd1
  - Separated documentation of non-blocking I/O from error handling
9ccfd1
  - Changed and documented behavior of readline to return the read data on
9ccfd1
    EAGAIN/EWOULDBLOCK in case of non-blocking socket
9ccfd1
    (see https://github.com/noxxi/p5-io-socket-ssl/issues/1)
9ccfd1
- Bumped release rather than version number to preserve likely upgrade path
9ccfd1
  and avoid need for epoch or version number ugliness; may revisit this in
9ccfd1
  light of upstream's future version numbering decisions
9ccfd1
9ccfd1
* Mon Feb  4 2013 Paul Howarth <paul@city-fan.org> - 1.83-1
9ccfd1
- Update to 1.83
9ccfd1
  - Server Name Indication (SNI) support on the server side (CPAN RT#82761)
9ccfd1
  - Reworked part of the documentation, like providing better examples
9ccfd1
9ccfd1
* Mon Jan 28 2013 Paul Howarth <paul@city-fan.org> - 1.82-1
9ccfd1
- Update to 1.82
9ccfd1
  - sub error sets $SSL_ERROR etc. only if there really is an error; otherwise
9ccfd1
    it will keep the latest error, which allows IO::Socket::SSL->new to report
9ccfd1
    the correct problem, even if the problem is deeper in the code (like in
9ccfd1
    connect)
9ccfd1
  - Correct spelling (CPAN RT#82790)
9ccfd1
9ccfd1
* Thu Dec  6 2012 Paul Howarth <paul@city-fan.org> - 1.81-1
9ccfd1
- Update to 1.81
9ccfd1
  - Deprecated set_ctx_defaults; new name is set_defaults (the old name is
9ccfd1
    still available)
9ccfd1
  - Changed handling of default path for SSL_(ca|cert|key)* keys: if one of
9ccfd1
    these keys is user defined, don't add defaults for the others, i.e.
9ccfd1
    don't mix user settings and defaults
9ccfd1
  - Cleaner handling of module defaults vs. global settings vs. socket
9ccfd1
    specific settings; global and socket specific settings are both provided
9ccfd1
    by the user, while module defaults are not
9ccfd1
  - Make IO::Socket::INET6 and IO::Socket::IP specific tests both run, even
9ccfd1
    if both modules are installed, by faking a failed load of the other module
9ccfd1
- BR: perl(IO::Socket::INET6) and perl(Socket6) unconditionally
9ccfd1
9ccfd1
* Fri Nov 30 2012 Paul Howarth <paul@city-fan.org> - 1.80-1
9ccfd1
- Update to 1.80
9ccfd1
  - Removed some warnings in test (missing SSL_verify_mode => 0), which caused
9ccfd1
    tests to hang on Windows (CPAN RT#81493)
9ccfd1
9ccfd1
* Sun Nov 25 2012 Paul Howarth <paul@city-fan.org> - 1.79-1
9ccfd1
- Update to 1.79
9ccfd1
  - Use getnameinfo instead of unpack_sockaddr_in6 to get PeerAddr and PeerPort
9ccfd1
    from sockaddr in _update_peer, because this provides scope too
9ccfd1
  - Work around systems that don't define AF_INET6 (CPAN RT#81216)
9ccfd1
  - Prepare transition to a more secure default for SSL_verify_mode; the use of
9ccfd1
    the current default SSL_VERIFY_NONE will cause a big warning for clients,
9ccfd1
    unless SSL_verify_mode was explicitly set inside the application to this
9ccfd1
    insecure value (in the near future the default will be SSL_VERIFY_PEER, and
9ccfd1
    thus causing verification failures in unchanged applications)
9ccfd1
9ccfd1
* Thu Nov 15 2012 Petr Šabata <contyk@redhat.com> - 1.77-2
9ccfd1
- Added some missing build dependencies
9ccfd1
9ccfd1
* Fri Oct  5 2012 Paul Howarth <paul@city-fan.org> - 1.77-1
9ccfd1
- Update to 1.77
9ccfd1
  - support _update_peer for IPv6 too (CPAN RT#79916)
9ccfd1
9ccfd1
* Fri Jul 20 2012 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 1.76-3
9ccfd1
- Rebuilt for https://fedoraproject.org/wiki/Fedora_18_Mass_Rebuild
9ccfd1
9ccfd1
* Thu Jun 28 2012 Petr Pisar <ppisar@redhat.com> - 1.76-2
9ccfd1
- Perl 5.16 rebuild
9ccfd1
9ccfd1
* Mon Jun 18 2012 Paul Howarth <paul@city-fan.org> - 1.76-1
9ccfd1
- Update to 1.76
9ccfd1
  - add support for IO::Socket::IP, which supports inet6 and inet4
9ccfd1
    (CPAN RT#75218)
9ccfd1
  - fix documentation errors (CPAN RT#77690)
9ccfd1
  - made it possible to explicitly disable TLSv11 and TLSv12 in SSL_version
9ccfd1
  - use inet_pton from either Socket.pm 1.95 or Socket6.pm
9ccfd1
- Use IO::Socket::IP for IPv6 support where available, else IO::Socket::INET6
9ccfd1
- Add runtime dependency for appropriate IPv6 support module so that we can
9ccfd1
  ensure that we run at runtime what we tested with at build time
9ccfd1
9ccfd1
* Thu Jun 14 2012 Petr Pisar <ppisar@redhat.com> - 1.74-2
9ccfd1
- Perl 5.16 rebuild
9ccfd1
9ccfd1
* Mon May 14 2012 Paul Howarth <paul@city-fan.org> - 1.74-1
9ccfd1
- Update to 1.74
9ccfd1
  - accept a version of SSLv2/3 as SSLv23, because older documentation could
9ccfd1
    be interpreted like this
9ccfd1
9ccfd1
* Fri May 11 2012 Paul Howarth <paul@city-fan.org> - 1.73-1
9ccfd1
- Update to 1.73
9ccfd1
  - set DEFAULT_CIPHER_LIST to ALL:!LOW instead of HIGH:!LOW
9ccfd1
  - make test t/dhe.t hopefully work with more versions of openssl
9ccfd1
9ccfd1
* Wed May  9 2012 Paul Howarth <paul@city-fan.org> - 1.71-1
9ccfd1
- Update to 1.71
9ccfd1
  - 1.70 done right: don't disable SSLv2 ciphers; SSLv2 support is better
9ccfd1
    disabled by the default SSL_version of 'SSLv23:!SSLv2'
9ccfd1
9ccfd1
* Tue May  8 2012 Paul Howarth <paul@city-fan.org> - 1.70-1
9ccfd1
- Update to 1.70
9ccfd1
  - make it possible to disable protocols using SSL_version, and make
9ccfd1
    SSL_version default to 'SSLv23:!SSLv2'
9ccfd1
9ccfd1
* Tue May  8 2012 Paul Howarth <paul@city-fan.org> - 1.69-1
9ccfd1
- Update to 1.69 (changes for CPAN RT#76929)
9ccfd1
  - if no explicit cipher list is given, default to ALL:!LOW instead of the
9ccfd1
    openssl default, which usually includes weak ciphers like DES
9ccfd1
  - new config key SSL_honor_cipher_order and document how to use it to fight
9ccfd1
    BEAST attack
9ccfd1
  - fix behavior for empty cipher list (use default)
9ccfd1
  - re-added workaround in t/dhe.t
9ccfd1
9ccfd1
* Mon Apr 16 2012 Paul Howarth <paul@city-fan.org> - 1.66-1
9ccfd1
- Update to 1.66
9ccfd1
  - make it thread safer (CPAN RT#76538)
9ccfd1
9ccfd1
* Mon Apr 16 2012 Paul Howarth <paul@city-fan.org> - 1.65-1
9ccfd1
- Update to 1.65
9ccfd1
  - added NPN (Next Protocol Negotiation) support (CPAN RT#76223)
9ccfd1
9ccfd1
* Sat Apr  7 2012 Paul Howarth <paul@city-fan.org> - 1.64-1
9ccfd1
- Update to 1.64
9ccfd1
  - ignore die from within eval to make tests more stable on Win32
9ccfd1
    (CPAN RT#76147)
9ccfd1
  - clarify some behavior regarding hostname verification
9ccfd1
- Drop patch for t/dhe.t, no longer needed
9ccfd1
9ccfd1
* Wed Mar 28 2012 Paul Howarth <paul@city-fan.org> - 1.62-1
9ccfd1
- Update to 1.62
9ccfd1
  - small fix to last version
9ccfd1
9ccfd1
* Tue Mar 27 2012 Paul Howarth <paul@city-fan.org> - 1.61-1
9ccfd1
- Update to 1.61
9ccfd1
  - call CTX_set_session_id_context so that server's session caching works with
9ccfd1
    client certificates too (CPAN RT#76053)
9ccfd1
9ccfd1
* Tue Mar 20 2012 Paul Howarth <paul@city-fan.org> - 1.60-1
9ccfd1
- Update to 1.60
9ccfd1
  - don't make blocking readline if socket was set nonblocking, but return as
9ccfd1
    soon no more data are available (CPAN RT#75910)
9ccfd1
  - fix BUG section about threading so that it shows package as thread safe
9ccfd1
    as long as Net::SSLeay ≥ 1.43 is used (CPAN RT#75749)
9ccfd1
- BR: perl(constant), perl(Exporter) and perl(IO::Socket)
9ccfd1
9ccfd1
* Thu Mar  8 2012 Paul Howarth <paul@city-fan.org> - 1.59-1
9ccfd1
- Update to 1.59
9ccfd1
  - if SSLv2 is not supported by Net::SSLeay set SSL_ERROR with useful message
9ccfd1
    when attempting to use it
9ccfd1
  - modify constant declarations so that 5.6.1 should work again
9ccfd1
- Drop %%defattr, redundant since rpm 4.4
9ccfd1
9ccfd1
* Mon Feb 27 2012 Paul Howarth <paul@city-fan.org> - 1.58-1
9ccfd1
- Update to 1.58
9ccfd1
  - fix t/dhe.t for openssl 1.0.1 beta by forcing TLSv1, so that it does not
9ccfd1
    complain about the too small RSA key, which it should not use anyway; this
9ccfd1
    workaround is not applied for older openssl versions, where it would cause
9ccfd1
    failures (CPAN RT#75165)
9ccfd1
- Add patch to fiddle the openssl version number in the t/dhe.t workaround
9ccfd1
  because the OPENSSL_VERSION_NUMBER cannot be trusted in Fedora
9ccfd1
- One buildreq per line for readability
9ccfd1
- Drop redundant buildreq perl(Test::Simple)
9ccfd1
- Always run full test suite
9ccfd1
9ccfd1
* Wed Feb 22 2012 Paul Howarth <paul@city-fan.org> - 1.56-1
9ccfd1
- Update to 1.56
9ccfd1
  - add automatic or explicit (via SSL_hostname) SNI support, needed for
9ccfd1
    multiple SSL hostnames with the same IP (currently only supported for the
9ccfd1
    client)
9ccfd1
- Use DESTDIR rather than PERL_INSTALL_ROOT
9ccfd1
- No need to delete empty directories from buildroot
9ccfd1
9ccfd1
* Mon Feb 20 2012 Paul Howarth <paul@city-fan.org> - 1.55-1
9ccfd1
- Update to 1.55
9ccfd1
  - work around IO::Socket's work around for systems returning EISCONN etc. on
9ccfd1
    connect retry for non-blocking sockets by clearing $! if SUPER::connect
9ccfd1
    returned true (CPAN RT#75101)
9ccfd1
9ccfd1
* Wed Jan 11 2012 Paul Howarth <paul@city-fan.org> - 1.54-1
9ccfd1
- Update to 1.54
9ccfd1
  - return 0 instead of undef in SSL_verify_callback to fix uninitialized
9ccfd1
    warnings (CPAN RT#73629)
9ccfd1
9ccfd1
* Mon Dec 12 2011 Paul Howarth <paul@city-fan.org> - 1.53-1
9ccfd1
- Update to 1.53
9ccfd1
  - kill child in t/memleak_bad_handshake.t if test fails (CPAN RT#73146)
9ccfd1
9ccfd1
* Wed Dec  7 2011 Paul Howarth <paul@city-fan.org> - 1.52-1
9ccfd1
- Update to 1.52
9ccfd1
  - fix for t/nonblock.t hangs on AIX (CPAN RT#72305)
9ccfd1
  - disable t/memleak_bad_handshake.t on AIX, because it might hang
9ccfd1
    (CPAN RT#72170)
9ccfd1
  - fix syntax error in t/memleak_bad_handshake.t
9ccfd1
9ccfd1
* Fri Oct 28 2011 Paul Howarth <paul@city-fan.org> - 1.49-1
9ccfd1
- Update to 1.49
9ccfd1
  - another regression for readline fix: this time it failed to return lines
9ccfd1
    at EOF that don't end with newline - extended t/readline.t to catch this
9ccfd1
    case and the fix for 1.48
9ccfd1
9ccfd1
* Wed Oct 26 2011 Paul Howarth <paul@city-fan.org> - 1.48-1
9ccfd1
- Update to 1.48
9ccfd1
  - further fix for readline fix in 1.45: if the pending data were false (like
9ccfd1
    '0'), it failed to read the rest of the line (CPAN RT#71953)
9ccfd1
9ccfd1
* Fri Oct 21 2011 Paul Howarth <paul@city-fan.org> - 1.47-1
9ccfd1
- Update to 1.47
9ccfd1
  - fix for 1.46 - check for mswin32 needs to be /i
9ccfd1
9ccfd1
* Tue Oct 18 2011 Paul Howarth <paul@city-fan.org> - 1.46-1
9ccfd1
- Update to 1.46
9ccfd1
  - skip signals test on Windows
9ccfd1
9ccfd1
* Thu Oct 13 2011 Paul Howarth <paul@city-fan.org> - 1.45-1
9ccfd1
- Update to 1.45
9ccfd1
  - fix readline to continue when getting interrupt waiting for more data
9ccfd1
- BR: perl(Carp)
9ccfd1
9ccfd1
* Tue Jul 19 2011 Petr Sabata <contyk@redhat.com> - 1.44-2
9ccfd1
- Perl mass rebuild
9ccfd1
9ccfd1
* Fri May 27 2011 Paul Howarth <paul@city-fan.org> - 1.44-1
9ccfd1
- Update to 1.44
9ccfd1
  - fix invalid call to inet_pton in verify_hostname_of_cert when identity
9ccfd1
    should be verified as ipv6 address because it contains a colon
9ccfd1
9ccfd1
* Wed May 11 2011 Paul Howarth <paul@city-fan.org> - 1.43-1
9ccfd1
- Update to 1.43
9ccfd1
  - add SSL_create_ctx_callback to have a way to adjust context on creation
9ccfd1
    (CPAN RT#67799)
9ccfd1
  - describe problem of fake memory leak because of big session cache and how
9ccfd1
    to fix it (CPAN RT#68073)
9ccfd1
  - fix t/nonblock.t
9ccfd1
  - stability improvements for t/inet6.t
9ccfd1
9ccfd1
* Tue May 10 2011 Paul Howarth <paul@city-fan.org> - 1.41-1
9ccfd1
- Update to 1.41
9ccfd1
  - fix issue in stop_SSL where it did not issue a shutdown of the SSL
9ccfd1
    connection if it first received the shutdown from the other side
9ccfd1
  - try to make t/nonblock.t more reliable, at least report the real cause of
9ccfd1
    SSL connection errors
9ccfd1
- No longer need to re-code docs to UTF-8
9ccfd1
9ccfd1
* Mon May  2 2011 Paul Howarth <paul@city-fan.org> - 1.40-1
9ccfd1
- Update to 1.40
9ccfd1
  - fix in example/async_https_server
9ccfd1
  - get IDN support from URI (CPAN RT#67676)
9ccfd1
- Nobody else likes macros for commands
9ccfd1
9ccfd1
* Thu Mar  3 2011 Paul Howarth <paul@city-fan.org> - 1.39-1
9ccfd1
- Update to 1.39
9ccfd1
  - fixed documentation of http verification: wildcards in cn is allowed
9ccfd1
9ccfd1
* Tue Feb 08 2011 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 1.38-2
9ccfd1
- Rebuilt for https://fedoraproject.org/wiki/Fedora_15_Mass_Rebuild
9ccfd1
9ccfd1
* Tue Jan 18 2011 Paul Howarth <paul@city-fan.org> - 1.38-1
9ccfd1
- Update to 1.38
9ccfd1
  - fixed wildcards_in_cn setting for http, wrongly set in 1.34 to 1 instead of
9ccfd1
    anywhere (CPAN RT#64864)
9ccfd1
9ccfd1
* Fri Dec 10 2010 Paul Howarth <paul@city-fan.org> - 1.37-1
9ccfd1
- Update to 1.37
9ccfd1
  - don't complain about invalid certificate locations if user explicitly set
9ccfd1
    SSL_ca_path and SSL_ca_file to undef: assume that user knows what they are
9ccfd1
    doing and will work around the problems themselves (CPAN RT#63741)
9ccfd1
9ccfd1
* Thu Dec  9 2010 Paul Howarth <paul@city-fan.org> - 1.36-1
9ccfd1
- Update to 1.36
9ccfd1
  - update documentation for SSL_verify_callback based on CPAN RT#63743 and
9ccfd1
    CPAN RT#63740
9ccfd1
9ccfd1
* Mon Dec  6 2010 Paul Howarth <paul@city-fan.org> - 1.35-1
9ccfd1
- Update to 1.35 (addresses CVE-2010-4334)
9ccfd1
  - if verify_mode is not VERIFY_NONE and the ca_file/ca_path cannot be
9ccfd1
    verified as valid, it will no longer fall back to VERIFY_NONE but throw an
9ccfd1
    error (http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=606058)
9ccfd1
9ccfd1
* Tue Nov  2 2010 Paul Howarth <paul@city-fan.org> - 1.34-1
9ccfd1
- Update to 1.34
9ccfd1
  - schema http for certificate verification changed to wildcards_in_cn=1
9ccfd1
  - if upgrading socket from inet to ssl fails due to handshake problems, the
9ccfd1
    socket gets downgraded back again but is still open (CPAN RT#61466)
9ccfd1
  - deprecate kill_socket: just use close()
9ccfd1
9ccfd1
* Sun May 02 2010 Marcela Maslanova <mmaslano@redhat.com> - 1.33-2
9ccfd1
- Mass rebuild with perl-5.12.0
9ccfd1
9ccfd1
* Wed Mar 17 2010 Paul Howarth <paul@city-fan.org> - 1.33-1
9ccfd1
- Update to 1.33
9ccfd1
  - attempt to make t/memleak_bad_handshake.t more stable
9ccfd1
  - fix hostname checking: only check an IP against subjectAltName GEN_IPADD
9ccfd1
9ccfd1
* Tue Feb 23 2010 Paul Howarth <paul@city-fan.org> - 1.32-1
9ccfd1
- Update to 1.32 (die in Makefile.PL if Scalar::Util has no dualvar support)
9ccfd1
- Use %%{_fixperms} macro instead of our own %%{__chmod} incantation
9ccfd1
9ccfd1
* Mon Dec  7 2009 Stepan Kasal <skasal@redhat.com> - 1.31-2
9ccfd1
- Rebuild against perl 5.10.1
9ccfd1
9ccfd1
* Sun Sep 27 2009 Paul Howarth <paul@city-fan.org> - 1.31-1
9ccfd1
- Update to 1.31 (see Changes for details)
9ccfd1
9ccfd1
* Thu Aug 20 2009 Paul Howarth <paul@city-fan.org> - 1.30-1
9ccfd1
- Update to 1.30 (fix memleak when SSL handshake failed)
9ccfd1
- Add buildreq procps needed for memleak test
9ccfd1
9ccfd1
* Mon Jul 27 2009 Paul Howarth <paul@city-fan.org> - 1.27-1
9ccfd1
- Update to 1.27
9ccfd1
  - various regex fixes for i18n and service names
9ccfd1
  - fix warnings from perl -w (CPAN RT#48131)
9ccfd1
  - improve handling of errors from Net::ssl_write_all
9ccfd1
9ccfd1
* Sat Jul 25 2009 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 1.26-2
9ccfd1
- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild
9ccfd1
9ccfd1
* Sat Jul  4 2009 Paul Howarth <paul@city-fan.org> - 1.26-1
9ccfd1
- Update to 1.26 (verify_hostname_of_cert matched only the prefix for the
9ccfd1
  hostname when no wildcard was given, e.g. www.example.org matched against a
9ccfd1
  certificate with name www.exam in it [#509819])
9ccfd1
9ccfd1
* Fri Jul  3 2009 Paul Howarth <paul@city-fan.org> - 1.25-1
9ccfd1
- Update to 1.25 (fix t/nonblock.t for OS X 10.5 - CPAN RT#47240)
9ccfd1
9ccfd1
* Thu Apr  2 2009 Paul Howarth <paul@city-fan.org> - 1.24-1
9ccfd1
- Update to 1.24 (add verify hostname scheme ftp, same as http)
9ccfd1
9ccfd1
* Wed Feb 25 2009 Paul Howarth <paul@city-fan.org> - 1.23-1
9ccfd1
- Update to 1.23 (complain when no certificates are provided)
9ccfd1
9ccfd1
* Sat Jan 24 2009 Paul Howarth <paul@city-fan.org> - 1.22-1
9ccfd1
- Update to latest upstream version: 1.22
9ccfd1
9ccfd1
* Thu Jan 22 2009 Paul Howarth <paul@city-fan.org> - 1.20-1
9ccfd1
- Update to latest upstream version: 1.20
9ccfd1
9ccfd1
* Tue Nov 18 2008 Paul Howarth <paul@city-fan.org> - 1.18-1
9ccfd1
- Update to latest upstream version: 1.18
9ccfd1
- BR: perl(IO::Socket::INET6) for extra test coverage
9ccfd1
9ccfd1
* Mon Oct 13 2008 Paul Howarth <paul@city-fan.org> - 1.17-1
9ccfd1
- Update to latest upstream version: 1.17
9ccfd1
9ccfd1
* Mon Sep 22 2008 Paul Howarth <paul@city-fan.org> - 1.16-1
9ccfd1
- Update to latest upstream version: 1.16
9ccfd1
9ccfd1
* Sat Aug 30 2008 Paul Howarth <paul@city-fan.org> - 1.15-1
9ccfd1
- Update to latest upstream version: 1.15
9ccfd1
- Add buildreq and req for perl(Net::LibIDN) to avoid croaking when trying to
9ccfd1
  verify an international name against a certificate
9ccfd1
9ccfd1
* Wed Jul 16 2008 Paul Howarth <paul@city-fan.org> - 1.14-1
9ccfd1
- Update to latest upstream version: 1.14
9ccfd1
- BuildRequire perl(Net::SSLeay) >= 1.21
9ccfd1
9ccfd1
* Wed Feb 27 2008 Tom "spot" Callaway <tcallawa@redhat.com> - 1.12-4
9ccfd1
- Rebuild for perl 5.10 (again)
9ccfd1
9ccfd1
* Thu Jan 31 2008 Tom "spot" Callaway <tcallawa@redhat.com> - 1.12-3
9ccfd1
- Rebuild for new perl
9ccfd1
9ccfd1
* Wed Nov 28 2007 Paul Howarth <paul@city-fan.org> - 1.12-2
9ccfd1
- Cosmetic spec changes suiting new maintainer's preferences
9ccfd1
9ccfd1
* Fri Oct 26 2007 Robin Norwood <rnorwood@redhat.com> - 1.12-1
9ccfd1
- Update to latest upstream version: 1.12
9ccfd1
- Fix license tag
9ccfd1
- Add BuildRequires for ExtUtils::MakeMaker and Test::Simple
9ccfd1
- Fix package review issues:
9ccfd1
- Source URL
9ccfd1
- Resolves: bz#226264
9ccfd1
9ccfd1
* Tue Oct 16 2007 Tom "spot" Callaway <tcallawa@redhat.com> - 1.02-1.1
9ccfd1
- Correct license tag
9ccfd1
- Add BR: perl(ExtUtils::MakeMaker)
9ccfd1
9ccfd1
* Sat Dec 02 2006 Robin Norwood <rnorwood@redhat.com> - 1.02-1
9ccfd1
- Upgrade to latest CPAN version: 1.02
9ccfd1
9ccfd1
* Mon Sep 18 2006 Warren Togami <wtogami@redhat.com> - 1.01-1
9ccfd1
- 1.01 bug fixes (#206782)
9ccfd1
9ccfd1
* Sun Aug 13 2006 Warren Togami <wtogami@redhat.com> - 0.998-1
9ccfd1
- 0.998 with more important fixes
9ccfd1
9ccfd1
* Tue Aug 01 2006 Warren Togami <wtogami@redhat.com> - 0.994-1
9ccfd1
- 0.994 important bugfixes (#200860)
9ccfd1
9ccfd1
* Tue Jul 18 2006 Warren Togami <wtogami@redhat.com> - 0.991-1
9ccfd1
- 0.991
9ccfd1
9ccfd1
* Wed Jul 12 2006 Warren Togami <wtogami@redhat.com> - 0.97-3
9ccfd1
- Import into FC6
9ccfd1
9ccfd1
* Tue Feb 28 2006 Jose Pedro Oliveira <jpo at di.uminho.pt> - 0.97-2
9ccfd1
- Rebuild for FC5 (perl 5.8.8).
9ccfd1
- Rebuild switch: "--with sessiontests".
9ccfd1
9ccfd1
* Mon Jul 18 2005 Ville Skyttä <ville.skytta at iki.fi> - 0.97-1
9ccfd1
- 0.97.
9ccfd1
- Convert docs to UTF-8, drop some unuseful ones.
9ccfd1
9ccfd1
* Wed Apr  6 2005 Michael Schwendt <mschwendt[AT]users.sf.net> - 0.96-4
9ccfd1
- Rebuilt
9ccfd1
9ccfd1
* Tue Oct 12 2004 Ville Skyttä <ville.skytta at iki.fi> - 0:0.96-3
9ccfd1
- Disable session test suite even if Net::SSLeay >= 1.26 is available.
9ccfd1
9ccfd1
* Wed Jul  7 2004 Ville Skyttä <ville.skytta at iki.fi> - 0:0.96-0.fdr.2
9ccfd1
- Bring up to date with current fedora.us Perl spec template.
9ccfd1
- Include examples in docs.
9ccfd1
9ccfd1
* Sat May  1 2004 Ville Skyttä <ville.skytta at iki.fi> - 0:0.96-0.fdr.1
9ccfd1
- Update to 0.96.
9ccfd1
- Reduce directory ownership bloat.
9ccfd1
- Require perl(:MODULE_COMPAT_*).
9ccfd1
9ccfd1
* Fri Oct 17 2003 Ville Skyttä <ville.skytta at iki.fi> - 0:0.95-0.fdr.1
9ccfd1
- First build.