Import
This commit is contained in:
parent
e693f29d20
commit
b6d4506a56
1
.gitignore
vendored
1
.gitignore
vendored
@ -0,0 +1 @@
|
||||
/HTTP-Daemon-6.00.tar.gz
|
73
perl-HTTP-Daemon.spec
Normal file
73
perl-HTTP-Daemon.spec
Normal file
@ -0,0 +1,73 @@
|
||||
Name: perl-HTTP-Daemon
|
||||
Version: 6.00
|
||||
Release: 1%{?dist}
|
||||
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
|
||||
* 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
|
Loading…
Reference in New Issue
Block a user