Accepting request 249272 from devel:languages:perl

- updated to 6.07
 Jason Fesler (1):
     Opportunistically use IO::Socket::IP or IO::Socket::INET6.
     Properly parse IPv6 literal addreses with optional port numbers. [RT#75618]

OBS-URL: https://build.opensuse.org/request/show/249272
OBS-URL: https://build.opensuse.org/package/show/openSUSE:Factory/perl-Net-HTTP?expand=0&rev=13
This commit is contained in:
Stephan Kulow 2014-09-17 15:24:16 +00:00 committed by Git OBS Bridge
commit e8029b4e61
4 changed files with 21 additions and 16 deletions

View File

@ -1,3 +0,0 @@
version https://git-lfs.github.com/spec/v1
oid sha256:1d4e3ced899efad12431564d93abe73dd2a1224aa208af5f4ab829e7a2dd39d4
size 15609

3
Net-HTTP-6.07.tar.gz Normal file
View File

@ -0,0 +1,3 @@
version https://git-lfs.github.com/spec/v1
oid sha256:9f31e0325a5a0930ad309fa019da9d208e57e236fb0598675ed883c820240364
size 16945

View File

@ -1,3 +1,11 @@
-------------------------------------------------------------------
Mon Sep 15 12:52:31 UTC 2014 - coolo@suse.com
- updated to 6.07
Jason Fesler (1):
Opportunistically use IO::Socket::IP or IO::Socket::INET6.
Properly parse IPv6 literal addreses with optional port numbers. [RT#75618]
-------------------------------------------------------------------
Wed Jun 5 19:17:49 UTC 2013 - coolo@suse.com

View File

@ -1,7 +1,7 @@
#
# spec file for package perl-Net-HTTP
#
# Copyright (c) 2013 SUSE LINUX Products GmbH, Nuernberg, Germany.
# Copyright (c) 2014 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
@ -17,29 +17,24 @@
Name: perl-Net-HTTP
Version: 6.06
Version: 6.07
Release: 0
%define cpan_name Net-HTTP
Summary: Low-level HTTP connection (client)
License: Artistic-1.0 or GPL-1.0+
Group: Development/Libraries/Perl
Url: http://search.cpan.org/dist/Net-HTTP/
Source: http://www.cpan.org/authors/id/G/GA/GAAS/%{cpan_name}-%{version}.tar.gz
Source: http://www.cpan.org/authors/id/M/MS/MSCHILLI/%{cpan_name}-%{version}.tar.gz
BuildArch: noarch
BuildRoot: %{_tmppath}/%{name}-%{version}-build
BuildRequires: perl
BuildRequires: perl-macros
BuildRequires: perl(Compress::Raw::Zlib)
BuildRequires: perl(IO::Compress::Gzip)
#BuildRequires: perl(IO::Socket::SSL)
#BuildRequires: perl(IO::Uncompress::Gunzip)
#BuildRequires: perl(Net::HTTP)
#BuildRequires: perl(Net::HTTP::Methods)
#BuildRequires: perl(Net::HTTP::NB)
#BuildRequires: perl(Net::HTTPS)
#BuildRequires: perl(Net::SSL)
BuildRequires: perl(URI)
Requires: perl(Compress::Raw::Zlib)
Requires: perl(IO::Compress::Gzip)
Requires: perl(URI)
Recommends: perl(IO::Socket::SSL) >= 1.38
%{perl_requires}
@ -49,9 +44,11 @@ The 'Net::HTTP' class is a low-level HTTP client. An instance of the
protocol is described in RFC 2616. The 'Net::HTTP' class supports
'HTTP/1.0' and 'HTTP/1.1'.
'Net::HTTP' is a sub-class of 'IO::Socket::INET'. You can mix the methods
described below with reading and writing from the socket directly. This is
not necessary a good idea, unless you know what you are doing.
'Net::HTTP' is a sub-class of one of 'IO::Socket::IP' (IPv6+IPv4),
'IO::Socket::INET6' (IPv6+IPv4), or 'IO::Socket::INET' (IPv4 only). You can
mix the methods described below with reading and writing from the socket
directly. This is not necessary a good idea, unless you know what you are
doing.
%prep
%setup -q -n %{cpan_name}-%{version}