[perl-IO-Pipely] Initial import (#1000028)

Petr Šabata psabata at fedoraproject.org
Thu Aug 22 15:34:10 UTC 2013


commit 49acf386dc1519c40c9664afd642222714a834f5
Author: Petr Šabata <contyk at redhat.com>
Date:   Thu Aug 22 17:33:45 2013 +0200

    Initial import (#1000028)

 .gitignore          |    1 +
 perl-IO-Pipely.spec |   63 +++++++++++++++++++++++++++++++++++++++++++++++++++
 sources             |    1 +
 3 files changed, 65 insertions(+), 0 deletions(-)
---
diff --git a/.gitignore b/.gitignore
index e69de29..73fdeea 100644
--- a/.gitignore
+++ b/.gitignore
@@ -0,0 +1 @@
+/IO-Pipely-0.005.tar.gz
diff --git a/perl-IO-Pipely.spec b/perl-IO-Pipely.spec
new file mode 100644
index 0000000..693d8d5
--- /dev/null
+++ b/perl-IO-Pipely.spec
@@ -0,0 +1,63 @@
+Name:           perl-IO-Pipely
+Version:        0.005
+Release:        1%{?dist}
+Summary:        Portably create pipe() or pipe-like handles, one way or another
+License:        GPL+ or Artistic
+Group:          Development/Libraries
+URL:            http://search.cpan.org/dist/IO-Pipely/
+Source0:        http://www.cpan.org/authors/id/R/RC/RCAPUTO/IO-Pipely-%{version}.tar.gz
+BuildArch:      noarch
+BuildRequires:  perl
+BuildRequires:  perl(base) >= 2.18
+BuildRequires:  perl(Carp) >= 1.26
+BuildRequires:  perl(Errno)
+BuildRequires:  perl(Exporter) >= 5.68
+BuildRequires:  perl(ExtUtils::MakeMaker)
+BuildRequires:  perl(Fcntl) >= 1.06
+BuildRequires:  perl(IO::Socket) >= 1.31
+BuildRequires:  perl(Scalar::Util) >= 1.29
+BuildRequires:  perl(strict)
+BuildRequires:  perl(Symbol) >= 1.06
+BuildRequires:  perl(Test::More) >= 0.98
+BuildRequires:  perl(warnings)
+Requires:       perl(:MODULE_COMPAT_%(eval "$(perl -V:version)"; echo $version))
+Requires:       perl(base) >= 2.18
+Requires:       perl(Exporter) >= 5.68
+Requires:       perl(Fcntl) >= 1.06
+Requires:       perl(IO::Socket) >= 1.31
+Requires:       perl(Symbol) >= 1.06
+
+%global __requires_exclude %{?__requires_exclude:__requires_exclude|}^perl\\(base\\)$
+%global __requires_exclude %__requires_exclude|^perl\\(Exporter\\)$
+%global __requires_exclude %__requires_exclude|^perl\\(Fcntl\\)$
+%global __requires_exclude %__requires_exclude|^perl\\(IO::Socket\\)$
+%global __requires_exclude %__requires_exclude|^perl\\(Symbol\\)$
+
+%description
+IO::Pipely provides a couple functions to portably create one- and two-way
+pipes and pipe-like socket pairs. It acknowledges and works around known
+platform issues so you don't have to.
+
+%prep
+%setup -q -n IO-Pipely-%{version}
+
+%build
+perl Makefile.PL INSTALLDIRS=vendor
+make %{?_smp_mflags}
+
+%install
+make pure_install DESTDIR=%{buildroot}
+find %{buildroot} -type f -name .packlist -exec rm -f {} +
+%{_fixperms} %{buildroot}/*
+
+%check
+make test
+
+%files
+%doc CHANGES LICENSE README
+%{perl_vendorlib}/*
+%{_mandir}/man3/*
+
+%changelog
+* Thu Aug 22 2013 Petr Šabata <contyk at redhat.com> 0.005-1
+- Initial package submitted for review
diff --git a/sources b/sources
index e69de29..929486d 100644
--- a/sources
+++ b/sources
@@ -0,0 +1 @@
+86781d3e2afe5f142f67ce1fed3b9ed9  IO-Pipely-0.005.tar.gz


More information about the scm-commits mailing list