[perl-Net-HTTP] Import

Petr Pisar ppisar at fedoraproject.org
Mon Mar 21 17:33:09 UTC 2011


commit 479b47ef5d90efcb3800351f6e9a0f972d1fa57f
Author: Petr Písař <ppisar at redhat.com>
Date:   Mon Mar 21 18:32:46 2011 +0100

    Import

 .gitignore         |    1 +
 perl-Net-HTTP.spec |   61 ++++++++++++++++++++++++++++++++++++++++++++++++++++
 sources            |    1 +
 3 files changed, 63 insertions(+), 0 deletions(-)
---
diff --git a/.gitignore b/.gitignore
index e69de29..a957734 100644
--- a/.gitignore
+++ b/.gitignore
@@ -0,0 +1 @@
+/Net-HTTP-6.00.tar.gz
diff --git a/perl-Net-HTTP.spec b/perl-Net-HTTP.spec
new file mode 100644
index 0000000..8e7efa3
--- /dev/null
+++ b/perl-Net-HTTP.spec
@@ -0,0 +1,61 @@
+Name:           perl-Net-HTTP
+Version:        6.00
+Release:        1%{?dist}
+Summary:        Low-level HTTP connection (client)
+License:        GPL+ or Artistic
+Group:          Development/Libraries
+URL:            http://search.cpan.org/dist/Net-HTTP/
+Source0:        http://www.cpan.org/authors/id/G/GA/GAAS/Net-HTTP-%{version}.tar.gz
+BuildArch:      noarch
+BuildRequires:  perl(Compress::Raw::Zlib)
+BuildRequires:  perl(ExtUtils::MakeMaker)
+BuildRequires:  perl(IO::Compress::Gzip)
+BuildRequires:  perl(IO::Select)
+BuildRequires:  perl(IO::Socket::INET)
+BuildRequires:  perl(IO::Socket::SSL) >= 1.38
+BuildRequires:  perl(Symbol)
+# Tests only:
+BuildRequires:  perl(Test)
+Requires:       perl(:MODULE_COMPAT_%(eval "`%{__perl} -V:version`"; echo $version))
+Requires:       perl(Compress::Raw::Zlib)
+Requires:       perl(IO::Compress::Gzip)
+Requires:       perl(IO::Select)
+Requires:       perl(IO::Socket::INET)
+Requires:       perl(Symbol)
+# Recommended
+Requires:       perl(IO::Socket::SSL) >= 1.38
+Conflicts:      perl-libwww-perl < 6
+
+%description
+The Net::HTTP class is a low-level HTTP client. An instance of the
+Net::HTTP class represents a connection to an HTTP server. The HTTP
+protocol is described in RFC 2616. The Net::HTTP class supports HTTP/1.0
+and HTTP/1.1.
+
+%prep
+%setup -q -n Net-HTTP-%{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..ccb9f7c 100644
--- a/sources
+++ b/sources
@@ -0,0 +1 @@
+936891e74e8e4b26ade1a2db8b57d2c3  Net-HTTP-6.00.tar.gz



More information about the perl-devel mailing list