# # spec file for package perl-HTTP-Daemon # # 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 # upon. The license for this file, and modifications and additions to the # file, is the same license as for the pristine package itself (unless the # license for the pristine package is not an Open Source License, in which # case the license is the MIT License). An "Open Source License" is a # license that conforms to the Open Source Definition (Version 1.9) # published by the Open Source Initiative. # Please submit bugfixes or comments via https://bugs.opensuse.org/ # Name: perl-HTTP-Daemon Version: 6.12 Release: 1.1 %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} Source0: https://cpan.metacpan.org/authors/id/O/OA/OALDERS/%{cpan_name}-%{version}.tar.gz Source1: cpanspec.yml BuildArch: noarch BuildRoot: %{_tmppath}/%{name}-%{version}-build BuildRequires: perl BuildRequires: perl-macros BuildRequires: perl(HTTP::Date) >= 6 BuildRequires: perl(HTTP::Request) >= 6 BuildRequires: perl(HTTP::Response) >= 6 BuildRequires: perl(HTTP::Status) >= 6 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) >= 0.25 Requires: perl(LWP::MediaTypes) >= 6 %{perl_requires} %description Instances of the 'HTTP::Daemon' class are HTTP/1.1 servers that listen on a 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() method on this object will read data from the client and return an 'HTTP::Request' object. The ClientConn object also provide methods to send back various responses. %prep %setup -q -n %{cpan_name}-%{version} find . -type f ! -path "*/t/*" ! -name "*.pl" ! -path "*/bin/*" ! -path "*/script/*" ! -name "configure" -print0 | xargs -0 chmod 644 %build perl Build.PL --installdirs=vendor ./Build build --flags=%{?_smp_mflags} %check ./Build test %install ./Build install --destdir=%{buildroot} --create_packlist=0 %perl_gen_filelist %files -f %{name}.files %defattr(-,root,root,755) %doc Changes CONTRIBUTING README %license LICENCE %changelog * Fri Jun 5 2020 Tina Müller - updated to 6.12 see /usr/share/doc/packages/perl-HTTP-Daemon/Changes 6.12 2020-06-04 16:01:31Z - No changes since TRIAL release 6.11 6.11 2020-06-03 14:47:21Z (TRIAL RELEASE) - An IPv6 zone separator must be URI-quoted (GH#47) (Petr Pisar and Olaf Alders) * Wed May 27 2020 Tina Müller 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) * Fri Aug 30 2019 - updated to 6.06 see /usr/share/doc/packages/perl-HTTP-Daemon/Changes 6.06 2019-08-29 14:23:17Z - Delimit IPv6 numeric address with brackets and URI-quote an IPv6 zone separator in url() method output (GH#32) (Petr Pisar) - Handle undef and empty LocalAddr value in new() constructor as an unspecified address (GH#24, RT#123069) (Petr Pisar) - Use IO::Socket::IP for IPv6 support. (GH#31) (Chase Whitener) * Sat Jul 27 2019 Stephan Kulow - updated to 6.05 see /usr/share/doc/packages/perl-HTTP-Daemon/Changes 6.05 2019-07-26 20:41:05Z - Added the .perltidyrc from the libwww-perl distribution - Tidied the test suite with perltidy - Tidied Daemon.pm - Turned on EOL and tab tests - Removed obvious indirect object syntax in test suite - Added IPv6 support. (GH#24) Thanks, @ppisar and @intrigeri - Added IO::Socket::IP as a prerequisite rather than IO::Socket::INET * Wed Apr 3 2019 Stephan Kulow - updated to 6.04 see /usr/share/doc/packages/perl-HTTP-Daemon/Changes 6.04 2019-04-02 13:09:45Z - Remove circular dependency on LWP::RobotUA introduced in 6.02 (GH#29) (Olaf Alders) * Tue Apr 2 2019 Stephan Kulow - updated to 6.03 see /usr/share/doc/packages/perl-HTTP-Daemon/Changes * Mon Feb 20 2012 coolo@suse.com - updated to 6.01 If you bind localhost, don't trust gethostbyaddr() to resolve the address. [RT#67247] Restore perl-5.8.1 compatiblity. * Mon Mar 14 2011 vcizek@novell.com - initial package 6.00 * created by cpanspec 1.78.03