Hello community,
here is the log from the commit of package perl-HTTP-Daemon for
openSUSE:Factory checked in at 2020-06-02 14:33:41
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Comparing /work/SRC/openSUSE:Factory/perl-HTTP-Daemon (Old)
and /work/SRC/openSUSE:Factory/.perl-HTTP-Daemon.new.3606 (New)
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Package is "perl-HTTP-Daemon"
Tue Jun 2 14:33:41 2020 rev:13 rq:809206 version:6.10
Changes:
--------
--- /work/SRC/openSUSE:Factory/perl-HTTP-Daemon/perl-HTTP-Daemon.changes
2019-09-07 11:28:53.798468233 +0200
+++
/work/SRC/openSUSE:Factory/.perl-HTTP-Daemon.new.3606/perl-HTTP-Daemon.changes
2020-06-02 14:33:50.698611339 +0200
@@ -1,0 +2,22 @@
+Wed May 27 03:12:24 UTC 2020 - Tina Müller <[email protected]>
+
+updated to 6.10
+ see /usr/share/doc/packages/perl-HTTP-Daemon/Changes
+
+ 6.10 2020-05-26 16:20:36Z
+ - No changes since TRIAL release 6.09
+
+ 6.09 2020-05-25 16:52:14Z (TRIAL RELEASE)
+ - Require IO::Socket::IP 0.25 so that HTTP::Tiny uses it (GH#45) (Shoichi
Kaji)
+
+ 6.08 2020-05-22 15:26:00Z (TRIAL RELEASE)
+ - In t/chunked.t, leave choosing IP address family to IO::Socket::IP
(GH#42) (Shoichi Kaji)
+ - Add "IPv6 SUPPORT" section to pod (GH#43) (Shoichi Kaji)
+ - Use HTTP::Tiny 0.042+ for IPv6 support (GH#41) (Shoichi Kaji)
+
+ 6.07 2020-05-19 19:19:53Z (TRIAL RELEASE)
+ - Prefer IP address for host in $d->url (GH#40) (Shoichi Kaji)
+ - Improve documentation readability (GH#36) (Ferenc Erki)
+
+
+-------------------------------------------------------------------
Old:
----
HTTP-Daemon-6.06.tar.gz
New:
----
HTTP-Daemon-6.10.tar.gz
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Other differences:
------------------
++++++ perl-HTTP-Daemon.spec ++++++
--- /var/tmp/diff_new_pack.JDqTxQ/_old 2020-06-02 14:33:51.290613213 +0200
+++ /var/tmp/diff_new_pack.JDqTxQ/_new 2020-06-02 14:33:51.294613225 +0200
@@ -1,7 +1,7 @@
#
# spec file for package perl-HTTP-Daemon
#
-# Copyright (c) 2019 SUSE LINUX GmbH, Nuernberg, Germany.
+# Copyright (c) 2020 SUSE LLC
#
# All modifications and additions to the file contributed by third parties
# remain the property of their copyright owners, unless otherwise agreed
@@ -17,13 +17,13 @@
Name: perl-HTTP-Daemon
-Version: 6.06
+Version: 6.10
Release: 0
%define cpan_name HTTP-Daemon
Summary: Simple http server class
License: Artistic-1.0 OR GPL-1.0-or-later
Group: Development/Libraries/Perl
-Url: https://metacpan.org/release/%{cpan_name}
+URL: https://metacpan.org/release/%{cpan_name}
Source0:
https://cpan.metacpan.org/authors/id/O/OA/OALDERS/%{cpan_name}-%{version}.tar.gz
Source1: cpanspec.yml
BuildArch: noarch
@@ -34,17 +34,19 @@
BuildRequires: perl(HTTP::Request) >= 6
BuildRequires: perl(HTTP::Response) >= 6
BuildRequires: perl(HTTP::Status) >= 6
-BuildRequires: perl(IO::Socket::IP)
+BuildRequires: perl(HTTP::Tiny) >= 0.042
+BuildRequires: perl(IO::Socket::IP) >= 0.25
BuildRequires: perl(LWP::MediaTypes) >= 6
BuildRequires: perl(Module::Build::Tiny) >= 0.034
BuildRequires: perl(Module::Metadata)
+BuildRequires: perl(Test::More) >= 0.98
BuildRequires: perl(Test::Needs)
BuildRequires: perl(URI)
Requires: perl(HTTP::Date) >= 6
Requires: perl(HTTP::Request) >= 6
Requires: perl(HTTP::Response) >= 6
Requires: perl(HTTP::Status) >= 6
-Requires: perl(IO::Socket::IP)
+Requires: perl(IO::Socket::IP) >= 0.25
Requires: perl(LWP::MediaTypes) >= 6
%{perl_requires}
@@ -53,6 +55,10 @@
socket for incoming requests. The 'HTTP::Daemon' is a subclass of
'IO::Socket::IP', so you can perform socket operations directly on it too.
+Please note that 'HTTP::Daemon' used to be a subclass of
+'IO::Socket::INET'. To support IPv6, it switched the parent class to
+'IO::Socket::IP' at version 6.05. See IPv6 SUPPORT for details.
+
The accept() method will return when a connection from a client is
available. The returned value will be an 'HTTP::Daemon::ClientConn' object
which is another 'IO::Socket::IP' subclass. Calling the get_request()
@@ -60,14 +66,9 @@
'HTTP::Request' object. The ClientConn object also provide methods to send
back various responses.
-This HTTP daemon does not fork(2) for you. Your application, i.e. the user
-of the 'HTTP::Daemon' is responsible for forking if that is desirable. Also
-note that the user is responsible for generating responses that conform to
-the HTTP/1.1 protocol.
-
%prep
%setup -q -n %{cpan_name}-%{version}
-find . -type f ! -name \*.pl -print0 | xargs -0 chmod 644
+find . -type f ! -path "*/t/*" ! -name "*.pl" ! -path "*/bin/*" ! -path
"*/script/*" ! -name "configure" -print0 | xargs -0 chmod 644
%build
perl Build.PL --installdirs=vendor
++++++ HTTP-Daemon-6.06.tar.gz -> HTTP-Daemon-6.10.tar.gz ++++++
++++ 1985 lines of diff (skipped)