Accepting request 70004 from devel:languages:perl
bugfix: fix issue with lack of socket shutdown OBS-URL: https://build.opensuse.org/request/show/70004 OBS-URL: https://build.opensuse.org/package/show/openSUSE:Factory/perl-IO-Socket-SSL?expand=0&rev=42
This commit is contained in:
commit
3cbeb46e1b
@ -1,3 +0,0 @@
|
|||||||
version https://git-lfs.github.com/spec/v1
|
|
||||||
oid sha256:30d46e67a2da50400eaeae5bc07a1687839e3cfed2347eabe444f37cdf6d286a
|
|
||||||
size 61159
|
|
3
IO-Socket-SSL-1.42.tar.gz
Normal file
3
IO-Socket-SSL-1.42.tar.gz
Normal file
@ -0,0 +1,3 @@
|
|||||||
|
version https://git-lfs.github.com/spec/v1
|
||||||
|
oid sha256:7b9d2bf0fdf72a8c1b34834015fb7ac078d5206e4105f329e731adbb299c4d67
|
||||||
|
size 68868
|
@ -1,3 +1,25 @@
|
|||||||
|
-------------------------------------------------------------------
|
||||||
|
Tue May 10 19:18:51 UTC 2011 - pascal.bleser@opensuse.org
|
||||||
|
|
||||||
|
- update to 1.42:
|
||||||
|
* add SSL_create_ctx_callback to have a way to adjust context on creation
|
||||||
|
RT#67799
|
||||||
|
* describe problem of fake memory leak because of big session cache and how
|
||||||
|
to fix it, see RT#68073
|
||||||
|
|
||||||
|
- changes from 1.41:
|
||||||
|
* fix issue in stop_SSL where it did not issue a shutdown of the SSL
|
||||||
|
connection if it first received the shutdown from the other side
|
||||||
|
|
||||||
|
-------------------------------------------------------------------
|
||||||
|
Wed May 4 10:55:36 UTC 2011 - coolo@opensuse.org
|
||||||
|
|
||||||
|
- updated to 1.40
|
||||||
|
- integrated patch from GAAS to get IDN support from URI.
|
||||||
|
https://rt.cpan.org/Ticket/Display.html?id=67676
|
||||||
|
- fix in exampel/async_https_server.
|
||||||
|
Thanks to DetlefPilzecker[AT]web[DOT]de for reporting
|
||||||
|
|
||||||
-------------------------------------------------------------------
|
-------------------------------------------------------------------
|
||||||
Fri Mar 4 16:34:20 UTC 2011 - vcizek@novell.com
|
Fri Mar 4 16:34:20 UTC 2011 - vcizek@novell.com
|
||||||
|
|
||||||
|
@ -1,5 +1,5 @@
|
|||||||
#
|
#
|
||||||
# spec file for package perl-IO-Socket-SSL
|
# spec file for package perl-IO-Socket-SSL (Version 1.40)
|
||||||
#
|
#
|
||||||
# Copyright (c) 2011 SUSE LINUX Products GmbH, Nuernberg, Germany.
|
# Copyright (c) 2011 SUSE LINUX Products GmbH, Nuernberg, Germany.
|
||||||
#
|
#
|
||||||
@ -15,31 +15,28 @@
|
|||||||
# Please submit bugfixes or comments via http://bugs.opensuse.org/
|
# Please submit bugfixes or comments via http://bugs.opensuse.org/
|
||||||
#
|
#
|
||||||
|
|
||||||
# norootforbuild
|
|
||||||
|
|
||||||
|
|
||||||
Name: perl-IO-Socket-SSL
|
Name: perl-IO-Socket-SSL
|
||||||
%define cpan_name IO-Socket-SSL
|
Version: 1.42
|
||||||
Summary: Nearly transparent SSL encapsulation for IO::Socket::INET
|
|
||||||
Version: 1.39
|
|
||||||
Release: 1
|
Release: 1
|
||||||
License: GPL+ or Artistic
|
License: GPL+ or Artistic
|
||||||
Group: Development/Libraries/Perl
|
%define cpan_name IO-Socket-SSL
|
||||||
|
Summary: Nearly transparent SSL encapsulation for IO::Socket::INET
|
||||||
Url: http://search.cpan.org/dist/IO-Socket-SSL/
|
Url: http://search.cpan.org/dist/IO-Socket-SSL/
|
||||||
#Source: http://www.cpan.org/authors/id/S/SU/SULLR/IO-Socket-SSL-1.34.tar.gz
|
Group: Development/Libraries/Perl
|
||||||
Source: %{cpan_name}-%{version}.tar.bz2
|
Source: http://www.cpan.org/authors/id/S/SU/SULLR/%{cpan_name}-%{version}.tar.gz
|
||||||
BuildArch: noarch
|
BuildArch: noarch
|
||||||
BuildRoot: %{_tmppath}/%{name}-%{version}-build
|
BuildRoot: %{_tmppath}/%{name}-%{version}-build
|
||||||
%{perl_requires}
|
|
||||||
BuildRequires: perl
|
BuildRequires: perl
|
||||||
BuildRequires: perl-macros
|
BuildRequires: perl-macros
|
||||||
BuildRequires: perl(Net::LibIDN)
|
|
||||||
BuildRequires: perl(Net::SSLeay) >= 1.21
|
BuildRequires: perl(Net::SSLeay) >= 1.21
|
||||||
BuildRequires: perl(Scalar::Util)
|
|
||||||
Requires: perl(Net::SSLeay) >= 1.21
|
Requires: perl(Net::SSLeay) >= 1.21
|
||||||
Requires: perl(Scalar::Util)
|
# MANUAL BEGIN
|
||||||
|
BuildRequires: perl(IO::Socket::INET6)
|
||||||
|
BuildRequires: perl(Net::LibIDN)
|
||||||
Recommends: perl(IO::Socket::INET6)
|
Recommends: perl(IO::Socket::INET6)
|
||||||
Recommends: perl(Net::LibIDN)
|
Recommends: perl(Net::LibIDN)
|
||||||
|
# MANUAL END
|
||||||
|
%{perl_requires}
|
||||||
|
|
||||||
%description
|
%description
|
||||||
This module is a true drop-in replacement for IO::Socket::INET that uses
|
This module is a true drop-in replacement for IO::Socket::INET that uses
|
||||||
@ -61,12 +58,6 @@ support for non-blocking.
|
|||||||
|
|
||||||
If you are trying to use it with threads see the BUGS section.
|
If you are trying to use it with threads see the BUGS section.
|
||||||
|
|
||||||
Authors:
|
|
||||||
--------
|
|
||||||
Steffen Ullrich, <steffen at genua.de> is the current maintainer.
|
|
||||||
Peter Behroozi, <behrooz at fas.harvard.edu>
|
|
||||||
Marko Asplund, <marko.asplund at kronodoc.fi> original author of IO::Socket::SSL
|
|
||||||
|
|
||||||
%prep
|
%prep
|
||||||
%setup -q -n %{cpan_name}-%{version}
|
%setup -q -n %{cpan_name}-%{version}
|
||||||
|
|
||||||
@ -74,29 +65,16 @@ Authors:
|
|||||||
%{__perl} Makefile.PL INSTALLDIRS=vendor
|
%{__perl} Makefile.PL INSTALLDIRS=vendor
|
||||||
%{__make} %{?_smp_mflags}
|
%{__make} %{?_smp_mflags}
|
||||||
|
|
||||||
%check
|
|
||||||
%{__make} test
|
|
||||||
|
|
||||||
%install
|
%install
|
||||||
%perl_make_install
|
%perl_make_install
|
||||||
### since 11.4 perl_process_packlist
|
|
||||||
### removes .packlist, perllocal.pod files
|
|
||||||
%if 0%{?suse_version} > 1130
|
|
||||||
%perl_process_packlist
|
%perl_process_packlist
|
||||||
%else
|
|
||||||
# do not perl_process_packlist
|
|
||||||
# remove .packlist file
|
|
||||||
%{__rm} -rf $RPM_BUILD_ROOT%perl_vendorarch
|
|
||||||
# remove perllocal.pod file
|
|
||||||
%{__rm} -f $RPM_BUILD_ROOT%perl_archlib/perllocal.pod
|
|
||||||
%endif
|
|
||||||
%perl_gen_filelist
|
%perl_gen_filelist
|
||||||
|
|
||||||
%clean
|
%clean
|
||||||
%{__rm} -rf $RPM_BUILD_ROOT
|
%{__rm} -rf %{buildroot}
|
||||||
|
|
||||||
%files -f %{name}.files
|
%files -f %{name}.files
|
||||||
%defattr(-,root,root,-)
|
%defattr(-,root,root,755)
|
||||||
%doc BUGS Changes README example util
|
%doc BUGS Changes README
|
||||||
|
|
||||||
%changelog
|
%changelog
|
||||||
|
Loading…
x
Reference in New Issue
Block a user