2011-03-21 17:21:48 +00:00
|
|
|
Name: perl-HTTP-Daemon
|
|
|
|
Version: 6.00
|
2011-06-21 11:41:11 +00:00
|
|
|
Release: 2%{?dist}
|
2011-03-21 17:21:48 +00:00
|
|
|
Summary: Simple HTTP server class
|
|
|
|
License: GPL+ or Artistic
|
|
|
|
Group: Development/Libraries
|
|
|
|
URL: http://search.cpan.org/dist/HTTP-Daemon/
|
|
|
|
Source0: http://www.cpan.org/authors/id/G/GA/GAAS/HTTP-Daemon-%{version}.tar.gz
|
|
|
|
BuildArch: noarch
|
|
|
|
BuildRequires: perl(ExtUtils::MakeMaker)
|
|
|
|
BuildRequires: perl(HTTP::Date) >= 6
|
|
|
|
BuildRequires: perl(HTTP::Request) >= 6
|
|
|
|
BuildRequires: perl(HTTP::Response) >= 6
|
|
|
|
BuildRequires: perl(HTTP::Status) >= 6
|
|
|
|
BuildRequires: perl(IO::Socket)
|
|
|
|
BuildRequires: perl(LWP::MediaTypes) >= 6
|
|
|
|
BuildRequires: perl(Sys::Hostname)
|
|
|
|
# Tests only:
|
|
|
|
BuildRequires: perl(Config)
|
|
|
|
# Do not depend on perl(LWP::UserAgent), perl(LWP::RobotUA) to break
|
|
|
|
# circural dependency, then only t/chunked.t is executed.
|
|
|
|
BuildRequires: perl(Test::More)
|
|
|
|
BuildRequires: perl(Socket)
|
|
|
|
BuildRequires: perl(IO::Socket::INET)
|
|
|
|
Requires: perl(:MODULE_COMPAT_%(eval "`%{__perl} -V:version`"; echo $version))
|
|
|
|
Requires: perl(HTTP::Date) >= 6
|
|
|
|
Requires: perl(HTTP::Request) >= 6
|
|
|
|
Requires: perl(HTTP::Response) >= 6
|
|
|
|
Requires: perl(HTTP::Status) >= 6
|
|
|
|
Requires: perl(LWP::MediaTypes) >= 6
|
|
|
|
Requires: perl(Sys::Hostname)
|
|
|
|
Conflicts: perl-libwww-perl < 6
|
|
|
|
|
|
|
|
# Remove underspecified dependencies
|
|
|
|
%filter_from_requires /^perl(HTTP::Date)\s*$/d;
|
|
|
|
%filter_from_requires /^perl(HTTP::Request)\s*$/d;
|
|
|
|
%filter_from_requires /^perl(HTTP::Response)\s*$/d;
|
|
|
|
%filter_from_requires /^perl(HTTP::Status)\s*$/d;
|
|
|
|
%filter_from_requires /^perl(LWP::MediaTypes)\s*$/d;
|
|
|
|
%filter_setup
|
|
|
|
|
|
|
|
%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::INET, so you can perform socket operations directly on it too.
|
|
|
|
|
|
|
|
%prep
|
|
|
|
%setup -q -n HTTP-Daemon-%{version}
|
|
|
|
|
|
|
|
%build
|
|
|
|
%{__perl} Makefile.PL INSTALLDIRS=vendor
|
|
|
|
make %{?_smp_mflags}
|
|
|
|
|
|
|
|
%install
|
|
|
|
make pure_install PERL_INSTALL_ROOT=$RPM_BUILD_ROOT
|
|
|
|
find $RPM_BUILD_ROOT -type f -name .packlist -exec rm -f {} \;
|
|
|
|
find $RPM_BUILD_ROOT -depth -type d -exec rmdir {} 2>/dev/null \;
|
|
|
|
%{_fixperms} $RPM_BUILD_ROOT/*
|
|
|
|
|
|
|
|
%check
|
|
|
|
make test
|
|
|
|
|
|
|
|
%files
|
|
|
|
%defattr(-,root,root,-)
|
|
|
|
%doc Changes README
|
|
|
|
%{perl_vendorlib}/*
|
|
|
|
%{_mandir}/man3/*
|
|
|
|
|
|
|
|
%changelog
|
2011-06-21 11:41:11 +00:00
|
|
|
* Tue Jun 21 2011 Marcela Mašláňová <mmaslano@redhat.com> - 6.00-2
|
|
|
|
- Perl mass rebuild
|
|
|
|
|
2011-03-21 17:21:48 +00:00
|
|
|
* Thu Mar 17 2011 Petr Pisar <ppisar@redhat.com> 6.00-1
|
|
|
|
- Specfile autogenerated by cpanspec 1.78.
|
|
|
|
- Remove BuildRoot stuff
|
|
|
|
- Conflicts with perl-libwww-perl-5* and older
|