This commit is contained in:
parent
dfbf31407f
commit
f2063af2a5
@ -1,3 +0,0 @@
|
|||||||
version https://git-lfs.github.com/spec/v1
|
|
||||||
oid sha256:8eed4261ae15ca7d43702a25878b7bc9e063d9e101ba965f0809b20086ace902
|
|
||||||
size 46682
|
|
3
IO-Socket-SSL-1.13.tar.bz2
Normal file
3
IO-Socket-SSL-1.13.tar.bz2
Normal file
@ -0,0 +1,3 @@
|
|||||||
|
version https://git-lfs.github.com/spec/v1
|
||||||
|
oid sha256:0f8fef59aaf922251af5d5781f783cff9606b64b2bcdd624429ef834e648caba
|
||||||
|
size 46991
|
@ -1,3 +1,14 @@
|
|||||||
|
-------------------------------------------------------------------
|
||||||
|
Mon Jan 28 15:27:25 CET 2008 - anicka@suse.cz
|
||||||
|
|
||||||
|
- update to 1.13
|
||||||
|
* removed CLONE_SKIP which was added in 1.03 because this breaks
|
||||||
|
windows forking. Handled threads/windows forking better by
|
||||||
|
making sure that CTX from Net::SSLeay gets not freed multiple
|
||||||
|
times from different threads after cloning/forking
|
||||||
|
* removed setting LocalPort to 0 in tests, instead leave it undef
|
||||||
|
if a random port should be allocated.
|
||||||
|
|
||||||
-------------------------------------------------------------------
|
-------------------------------------------------------------------
|
||||||
Thu Nov 1 15:42:58 CET 2007 - anicka@suse.cz
|
Thu Nov 1 15:42:58 CET 2007 - anicka@suse.cz
|
||||||
|
|
||||||
|
@ -1,7 +1,7 @@
|
|||||||
#
|
#
|
||||||
# spec file for package perl-IO-Socket-SSL (Version 1.12)
|
# spec file for package perl-IO-Socket-SSL (Version 1.13)
|
||||||
#
|
#
|
||||||
# Copyright (c) 2007 SUSE LINUX Products GmbH, Nuernberg, Germany.
|
# Copyright (c) 2008 SUSE LINUX Products GmbH, Nuernberg, Germany.
|
||||||
# This file and all modifications and additions to the pristine
|
# This file and all modifications and additions to the pristine
|
||||||
# package are under the same license as the package itself.
|
# package are under the same license as the package itself.
|
||||||
#
|
#
|
||||||
@ -12,7 +12,7 @@
|
|||||||
|
|
||||||
Name: perl-IO-Socket-SSL
|
Name: perl-IO-Socket-SSL
|
||||||
BuildRequires: perl-Net_SSLeay perl-libwww-perl
|
BuildRequires: perl-Net_SSLeay perl-libwww-perl
|
||||||
Version: 1.12
|
Version: 1.13
|
||||||
Release: 1
|
Release: 1
|
||||||
Provides: p_iossl
|
Provides: p_iossl
|
||||||
Obsoletes: p_iossl
|
Obsoletes: p_iossl
|
||||||
@ -64,8 +64,17 @@ rm -rf $RPM_BUILD_ROOT
|
|||||||
%{perl_vendorlib}/IO
|
%{perl_vendorlib}/IO
|
||||||
%{perl_vendorarch}/auto/IO
|
%{perl_vendorarch}/auto/IO
|
||||||
/var/adm/perl-modules/%{name}
|
/var/adm/perl-modules/%{name}
|
||||||
|
|
||||||
%changelog
|
%changelog
|
||||||
* Thu Nov 01 2007 - anicka@suse.cz
|
* Mon Jan 28 2008 anicka@suse.cz
|
||||||
|
- update to 1.13
|
||||||
|
* removed CLONE_SKIP which was added in 1.03 because this breaks
|
||||||
|
windows forking. Handled threads/windows forking better by
|
||||||
|
making sure that CTX from Net::SSLeay gets not freed multiple
|
||||||
|
times from different threads after cloning/forking
|
||||||
|
* removed setting LocalPort to 0 in tests, instead leave it undef
|
||||||
|
if a random port should be allocated.
|
||||||
|
* Thu Nov 01 2007 anicka@suse.cz
|
||||||
- update to 1.12
|
- update to 1.12
|
||||||
* treat timeouts of 0 for accept_SSL and connect_SSL like
|
* treat timeouts of 0 for accept_SSL and connect_SSL like
|
||||||
no timeout, like IO::Socket does.
|
no timeout, like IO::Socket does.
|
||||||
@ -75,37 +84,37 @@ rm -rf $RPM_BUILD_ROOT
|
|||||||
Timeout so that the SSL handshake will not block forever. Only
|
Timeout so that the SSL handshake will not block forever. Only
|
||||||
used if the socket is blocking. If not set the Timeout value
|
used if the socket is blocking. If not set the Timeout value
|
||||||
from the underlying IO::Socket is used
|
from the underlying IO::Socket is used
|
||||||
* Mon Oct 08 2007 - anicka@suse.cz
|
* Mon Oct 08 2007 anicka@suse.cz
|
||||||
- update to 1.09
|
- update to 1.09
|
||||||
* new method stop_SSL as opposite of start_SSL
|
* new method stop_SSL as opposite of start_SSL
|
||||||
* try to make it clearer that thread support is buggy
|
* try to make it clearer that thread support is buggy
|
||||||
* make sure that Scalar::Util has support for dualvar
|
* make sure that Scalar::Util has support for dualvar
|
||||||
(Makefile.PL,SSL.pm) because the perl*only version has
|
(Makefile.PL,SSL.pm) because the perl*only version has
|
||||||
has no dualvar
|
has no dualvar
|
||||||
* Mon Jun 11 2007 - anicka@suse.cz
|
* Mon Jun 11 2007 anicka@suse.cz
|
||||||
- update to 1.07
|
- update to 1.07
|
||||||
* fix t/nonblock.t on systems which have by default a larger
|
* fix t/nonblock.t on systems which have by default a larger
|
||||||
socket buffer. Set SO_SNDBUF explicitly with setsockopt
|
socket buffer. Set SO_SNDBUF explicitly with setsockopt
|
||||||
to force smaller writes on the socket
|
to force smaller writes on the socket
|
||||||
- move testing to %%check
|
- move testing to %%check
|
||||||
* Tue May 15 2007 - anicka@suse.cz
|
* Tue May 15 2007 anicka@suse.cz
|
||||||
- update to 1.06
|
- update to 1.06
|
||||||
* instead of setting undef args to '' in configure_SSL drop
|
* instead of setting undef args to '' in configure_SSL drop
|
||||||
them. This makes Net::SMTP::SSL working again because it
|
them. This makes Net::SMTP::SSL working again because it
|
||||||
does not give LocalPort of '' to IO::Socket::INET any more
|
does not give LocalPort of '' to IO::Socket::INET any more
|
||||||
* Mon Apr 23 2007 - anicka@suse.cz
|
* Mon Apr 23 2007 anicka@suse.cz
|
||||||
- update to 1.05
|
- update to 1.05
|
||||||
* make session cache working even if the IO::Socket::SSL object
|
* make session cache working even if the IO::Socket::SSL object
|
||||||
was not created with IO::Socket::SSL->new but with
|
was not created with IO::Socket::SSL->new but with
|
||||||
IO::Socket::SSL->start_SSL on an established socket
|
IO::Socket::SSL->start_SSL on an established socket
|
||||||
* Fri Mar 30 2007 - anicka@suse.cz
|
* Fri Mar 30 2007 anicka@suse.cz
|
||||||
- update to 1.04
|
- update to 1.04
|
||||||
* added way to create SSL object with predefined session
|
* added way to create SSL object with predefined session
|
||||||
cache
|
cache
|
||||||
* Wed Mar 07 2007 - anicka@suse.cz
|
* Wed Mar 07 2007 anicka@suse.cz
|
||||||
- update to 1.03
|
- update to 1.03
|
||||||
* add CLONE_SKIP
|
* add CLONE_SKIP
|
||||||
* Wed Dec 13 2006 - anicka@suse.cz
|
* Wed Dec 13 2006 anicka@suse.cz
|
||||||
- update to 1.02
|
- update to 1.02
|
||||||
* added some info to BUGS and to BUGS section of pod
|
* added some info to BUGS and to BUGS section of pod
|
||||||
* added TELL and BINMODE to IO::Socket::SSL::SSL_HANDLE, even
|
* added TELL and BINMODE to IO::Socket::SSL::SSL_HANDLE, even
|
||||||
@ -113,66 +122,66 @@ rm -rf $RPM_BUILD_ROOT
|
|||||||
* all tests allocate now the ports dynamically, so there should
|
* all tests allocate now the ports dynamically, so there should
|
||||||
be no longer a conflict with open ports on the system where
|
be no longer a conflict with open ports on the system where
|
||||||
the tests run
|
the tests run
|
||||||
* Thu Sep 14 2006 - anicka@suse.cz
|
* Thu Sep 14 2006 anicka@suse.cz
|
||||||
- update to 1.01
|
- update to 1.01
|
||||||
* add support for Diffie Hellman Key Exchange.
|
* add support for Diffie Hellman Key Exchange.
|
||||||
* accept_SSL sets errors on $socket (the accepted socket)
|
* accept_SSL sets errors on $socket (the accepted socket)
|
||||||
not $self (the listening socket if called from accept)
|
not $self (the listening socket if called from accept)
|
||||||
* many bugfixes
|
* many bugfixes
|
||||||
* Mon Jul 24 2006 - anicka@suse.cz
|
* Mon Jul 24 2006 anicka@suse.cz
|
||||||
- update to 0.993
|
- update to 0.993
|
||||||
* added test for sysread/syswrite behavior
|
* added test for sysread/syswrite behavior
|
||||||
* fix Makefile.PL to allow detectection of failures in PREREQ_PM
|
* fix Makefile.PL to allow detectection of failures in PREREQ_PM
|
||||||
* fix problems with HTTP::Daemon::SSL
|
* fix problems with HTTP::Daemon::SSL
|
||||||
* Tue Jul 18 2006 - anicka@suse.cz
|
* Tue Jul 18 2006 anicka@suse.cz
|
||||||
- update to 0.99
|
- update to 0.99
|
||||||
* Maintainer changed to <Steffen_Ullrich at genua dot de>
|
* Maintainer changed to <Steffen_Ullrich at genua dot de>
|
||||||
* Better support for nonblocking sockets
|
* Better support for nonblocking sockets
|
||||||
* Bugfixes
|
* Bugfixes
|
||||||
* Wed Jan 25 2006 - mls@suse.de
|
* Wed Jan 25 2006 mls@suse.de
|
||||||
- converted neededforbuild to BuildRequires
|
- converted neededforbuild to BuildRequires
|
||||||
* Mon Aug 01 2005 - mjancar@suse.cz
|
* Mon Aug 01 2005 mjancar@suse.cz
|
||||||
- update to 0.97
|
- update to 0.97
|
||||||
* Wed Sep 29 2004 - mls@suse.de
|
* Wed Sep 29 2004 mls@suse.de
|
||||||
- use X509_STORE_set_flags instead of X509_STORE_CTX_set_flags
|
- use X509_STORE_set_flags instead of X509_STORE_CTX_set_flags
|
||||||
* Thu Aug 19 2004 - mjancar@suse.cz
|
* Thu Aug 19 2004 mjancar@suse.cz
|
||||||
- update to 0.96
|
- update to 0.96
|
||||||
* Thu Feb 26 2004 - mjancar@suse.cz
|
* Thu Feb 26 2004 mjancar@suse.cz
|
||||||
- update to 0.95
|
- update to 0.95
|
||||||
* Sun Jan 11 2004 - adrian@suse.de
|
* Sun Jan 11 2004 adrian@suse.de
|
||||||
- build as user
|
- build as user
|
||||||
* Fri Aug 22 2003 - mjancar@suse.cz
|
* Fri Aug 22 2003 mjancar@suse.cz
|
||||||
- require the perl version we build with
|
- require the perl version we build with
|
||||||
* Thu Jul 24 2003 - mjancar@suse.cz
|
* Thu Jul 24 2003 mjancar@suse.cz
|
||||||
- update 0.94
|
- update 0.94
|
||||||
* Thu Jul 17 2003 - mjancar@suse.cz
|
* Thu Jul 17 2003 mjancar@suse.cz
|
||||||
- adapt to perl-5.8.1
|
- adapt to perl-5.8.1
|
||||||
- use %%perl_process_packlist
|
- use %%perl_process_packlist
|
||||||
* Mon Jun 16 2003 - mjancar@suse.cz
|
* Mon Jun 16 2003 mjancar@suse.cz
|
||||||
- run make test
|
- run make test
|
||||||
- fix filelist
|
- fix filelist
|
||||||
* Tue May 20 2003 - mjancar@suse.cz
|
* Tue May 20 2003 mjancar@suse.cz
|
||||||
- remove unpackaged files
|
- remove unpackaged files
|
||||||
* Fri Dec 20 2002 - prehak@suse.cz
|
* Fri Dec 20 2002 prehak@suse.cz
|
||||||
- updated to 0.92
|
- updated to 0.92
|
||||||
- added example directory
|
- added example directory
|
||||||
* Wed Dec 18 2002 - prehak@suse.cz
|
* Wed Dec 18 2002 prehak@suse.cz
|
||||||
- updated to version 0.901
|
- updated to version 0.901
|
||||||
* Thu Jul 11 2002 - prehak@suse.cz
|
* Thu Jul 11 2002 prehak@suse.cz
|
||||||
- updated to version 0.81
|
- updated to version 0.81
|
||||||
- added demo, util and more to documetation
|
- added demo, util and more to documetation
|
||||||
* Tue Jul 02 2002 - mls@suse.de
|
* Tue Jul 02 2002 mls@suse.de
|
||||||
- remove race in .packlist generation
|
- remove race in .packlist generation
|
||||||
* Mon Jan 14 2002 - rvasice@suse.cz
|
* Mon Jan 14 2002 rvasice@suse.cz
|
||||||
- update to version 0.80
|
- update to version 0.80
|
||||||
* Fri Aug 24 2001 - rvasice@suse.cz
|
* Fri Aug 24 2001 rvasice@suse.cz
|
||||||
- removed make test - need network
|
- removed make test - need network
|
||||||
* Tue Aug 14 2001 - rvasice@suse.cz
|
* Tue Aug 14 2001 rvasice@suse.cz
|
||||||
- update to version 0.79
|
- update to version 0.79
|
||||||
- add make test
|
- add make test
|
||||||
* Tue Mar 13 2001 - cihlar@suse.cz
|
* Tue Mar 13 2001 cihlar@suse.cz
|
||||||
- update to version 0.77
|
- update to version 0.77
|
||||||
* Fri Nov 10 2000 - cihlar@suse.cz
|
* Fri Nov 10 2000 cihlar@suse.cz
|
||||||
- renamed p_iossl -> perl-IO-Socket-SSL
|
- renamed p_iossl -> perl-IO-Socket-SSL
|
||||||
* Wed Aug 23 2000 - cihlar@suse.cz
|
* Wed Aug 23 2000 cihlar@suse.cz
|
||||||
- package created
|
- package created
|
||||||
|
Loading…
x
Reference in New Issue
Block a user