[perl-HTTP-Daemon] Import

Petr Pisar ppisar at fedoraproject.org
Mon Mar 21 17:22:04 UTC 2011


commit b6d4506a5620c3e9c9f4d06c326702d20fbd153e
Author: Petr Písař <ppisar at redhat.com>
Date:   Mon Mar 21 18:21:48 2011 +0100

    Import

 .gitignore            |    1 +
 perl-HTTP-Daemon.spec |   73 +++++++++++++++++++++++++++++++++++++++++++++++++
 sources               |    1 +
 3 files changed, 75 insertions(+), 0 deletions(-)
---
diff --git a/.gitignore b/.gitignore
index e69de29..5feb09d 100644
--- a/.gitignore
+++ b/.gitignore
@@ -0,0 +1 @@
+/HTTP-Daemon-6.00.tar.gz
diff --git a/perl-HTTP-Daemon.spec b/perl-HTTP-Daemon.spec
new file mode 100644
index 0000000..985d9da
--- /dev/null
+++ b/perl-HTTP-Daemon.spec
@@ -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 at redhat.com> 6.00-1
+- Specfile autogenerated by cpanspec 1.78.
+- Remove BuildRoot stuff
+- Conflicts with perl-libwww-perl-5* and older
diff --git a/sources b/sources
index e69de29..8db4857 100644
--- a/sources
+++ b/sources
@@ -0,0 +1 @@
+36c8048775b8b53a6fb7c9d781658926  HTTP-Daemon-6.00.tar.gz



More information about the perl-devel mailing list