Pedro Monreal Gonzalez
6f56dd0078
automatic update OBS-URL: https://build.opensuse.org/request/show/719017 OBS-URL: https://build.opensuse.org/package/show/devel:languages:perl/perl-HTTP-Daemon?expand=0&rev=8
89 lines
3.1 KiB
RPMSpec
89 lines
3.1 KiB
RPMSpec
#
|
|
# spec file for package perl-HTTP-Daemon
|
|
#
|
|
# Copyright (c) 2019 SUSE LINUX GmbH, Nuernberg, Germany.
|
|
#
|
|
# 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.05
|
|
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}
|
|
Source0: https://cpan.metacpan.org/authors/id/E/ET/ETHER/%{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(IO::Socket::IP)
|
|
BuildRequires: perl(LWP::MediaTypes) >= 6
|
|
BuildRequires: perl(Module::Build::Tiny) >= 0.034
|
|
BuildRequires: perl(Module::Metadata)
|
|
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(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.
|
|
|
|
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.
|
|
|
|
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
|
|
|
|
%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
|