[perl-ExtUtils-Command] Import

Petr Pisar ppisar at fedoraproject.org
Wed Nov 12 15:54:18 UTC 2014


commit 0260574cd9b1715f9f9ec976e5caf4be1d8b00b2
Author: Petr Písař <ppisar at redhat.com>
Date:   Wed Nov 12 16:36:31 2014 +0100

    Import

 .gitignore                 |    1 +
 perl-ExtUtils-Command.spec |   58 ++++++++++++++++++++++++++++++++++++++++++++
 sources                    |    1 +
 3 files changed, 60 insertions(+), 0 deletions(-)
---
diff --git a/.gitignore b/.gitignore
index e69de29..9f663ab 100644
--- a/.gitignore
+++ b/.gitignore
@@ -0,0 +1 @@
+/ExtUtils-Command-1.18.tar.gz
diff --git a/perl-ExtUtils-Command.spec b/perl-ExtUtils-Command.spec
new file mode 100644
index 0000000..ce3bc61
--- /dev/null
+++ b/perl-ExtUtils-Command.spec
@@ -0,0 +1,58 @@
+Name:           perl-ExtUtils-Command
+Version:        1.18
+Release:        240%{?dist}
+Summary:        Perl routines to replace common UNIX commands in Makefiles
+License:        GPL+ or Artistic
+Group:          Development/Libraries
+URL:            http://search.cpan.org/dist/ExtUtils-Command/
+Source0:        http://www.cpan.org/authors/id/F/FL/FLORA/ExtUtils-Command-%{version}.tar.gz
+BuildArch:      noarch
+BuildRequires:  perl
+BuildRequires:  perl(ExtUtils::MakeMaker) >= 6.30
+BuildRequires:  perl(strict)
+BuildRequires:  perl(warnings)
+# Run-time:
+BuildRequires:  perl(Carp)
+BuildRequires:  perl(Exporter)
+BuildRequires:  perl(File::Basename)
+BuildRequires:  perl(File::Compare)
+BuildRequires:  perl(File::Copy)
+BuildRequires:  perl(File::Find)
+BuildRequires:  perl(File::Path)
+BuildRequires:  perl(vars)
+# VMS::Feature not used on Linux
+# Tests:
+BuildRequires:  perl(File::Spec)
+BuildRequires:  perl(Test::More)
+# Test::Pod 1.41 not used
+Requires:       perl(:MODULE_COMPAT_%(eval "`perl -V:version`"; echo $version))
+Requires:       perl(File::Find)
+
+%description
+This Perl module is used to replace common UNIX commands. In all cases the
+functions work from @ARGV rather than taking arguments. This makes them
+easier to deal with in Makefiles.
+
+%prep
+%setup -q -n ExtUtils-Command-%{version}
+
+%build
+perl Makefile.PL INSTALLDIRS=vendor
+make %{?_smp_mflags}
+
+%install
+make pure_install DESTDIR=$RPM_BUILD_ROOT
+find $RPM_BUILD_ROOT -type f -name .packlist -exec rm -f {} \;
+%{_fixperms} $RPM_BUILD_ROOT/*
+
+%check
+make test
+
+%files
+%doc Changes LICENSE README
+%{perl_vendorlib}/*
+%{_mandir}/man3/*
+
+%changelog
+* Wed Oct 29 2014 Petr Pisar <ppisar at redhat.com> 1.18-240
+- Specfile autogenerated by cpanspec 1.78.
diff --git a/sources b/sources
index e69de29..45e8daf 100644
--- a/sources
+++ b/sources
@@ -0,0 +1 @@
+212926e233620d09307566a14a1ce7e0  ExtUtils-Command-1.18.tar.gz


More information about the scm-commits mailing list