[perl-Archive-Extract] Reincarnate already died package

Petr Pisar ppisar at fedoraproject.org
Wed Feb 13 14:24:51 UTC 2013


commit 106813f4882d1992383b7d7e1865510d7694998a
Author: Petr Písař <ppisar at redhat.com>
Date:   Wed Feb 13 15:23:31 2013 +0100

    Reincarnate already died package

 .gitignore                |    1 +
 dead.package              |    1 -
 perl-Archive-Extract.spec |   78 +++++++++++++++++++++++++++++++++++++++++++++
 sources                   |    1 +
 4 files changed, 80 insertions(+), 1 deletions(-)
---
diff --git a/.gitignore b/.gitignore
index a832f17..2bd1b2c 100644
--- a/.gitignore
+++ b/.gitignore
@@ -1 +1,2 @@
 Archive-Extract-0.26.tar.gz
+/Archive-Extract-0.66.tar.gz
diff --git a/perl-Archive-Extract.spec b/perl-Archive-Extract.spec
new file mode 100644
index 0000000..a8a6280
--- /dev/null
+++ b/perl-Archive-Extract.spec
@@ -0,0 +1,78 @@
+Name:           perl-Archive-Extract
+Version:        0.66
+Release:        1%{?dist}
+Summary:        Generic archive extracting mechanism
+License:        GPL+ or Artistic
+Group:          Development/Libraries
+URL:            http://search.cpan.org/dist/Archive-Extract/
+Source0:        http://www.cpan.org/authors/id/B/BI/BINGOS/Archive-Extract-%{version}.tar.gz
+BuildArch:      noarch
+BuildRequires:  perl
+BuildRequires:  perl(ExtUtils::MakeMaker)
+BuildRequires:  perl(strict)
+# Run-time:
+BuildRequires:  perl(Carp)
+BuildRequires:  perl(constant)
+BuildRequires:  perl(Cwd)
+%if 0%(perl -e 'print $] > 5.017')
+BuildRequires:  perl(deprecated)
+%endif
+BuildRequires:  perl(File::Basename)
+BuildRequires:  perl(File::Path)
+BuildRequires:  perl(File::Spec) >= 0.82
+BuildRequires:  perl(FileHandle)
+BuildRequires:  perl(if)
+BuildRequires:  perl(IPC::Cmd) >= 0.64
+BuildRequires:  perl(Locale::Maketext::Simple)
+BuildRequires:  perl(Module::Load::Conditional) >= 0.04
+BuildRequires:  perl(Params::Check) >= 0.07
+BuildRequires:  perl(vars)
+# Tests:
+BuildRequires:  perl(Data::Dumper)
+BuildRequires:  perl(File::Spec::Unix)
+BuildRequires:  perl(lib)
+BuildRequires:  perl(Test::More)
+# Do not require any decopressing module or executable by default. Let's user
+# install what he needs.
+Requires:       perl(:MODULE_COMPAT_%(eval "`perl -V:version`"; echo $version))
+%if 0%(perl -e 'print $] > 5.017')
+Requires:       perl(deprecated)
+%endif
+Requires:       perl(File::Spec) >= 0.82
+Requires:       perl(IPC::Cmd) >= 0.64
+Requires:       perl(Module::Load::Conditional) >= 0.04
+Requires:       perl(Params::Check) >= 0.07
+
+# Filter under-specified dependencies
+%global __requires_exclude %{?__requires_exclude:%__requires_exclude|}^perl\\((File::Spec|IPC::Cmd|Module::Load::Conditional|Params::Check)\\)$
+
+%description
+Archive::Extract is a generic archive extraction mechanism.  It allows you to
+extract any archive file of the type .tar, .tar.gz, .gz, .Z, tar.bz2, .tbz,
+.bz2, .zip, .xz,, .txz, .tar.xz, or .lzma without having to worry how it does
+so, or use different interfaces for each type by using either perl modules, or
+command-line tools on your system.
+
+%prep
+%setup -q -n Archive-Extract-%{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 README
+%{perl_vendorlib}/*
+%{_mandir}/man3/*
+
+%changelog
+* Mon Feb 11 2013 Petr Pisar <ppisar at redhat.com> 0.66-1
+- Specfile autogenerated by cpanspec 1.78.
diff --git a/sources b/sources
new file mode 100644
index 0000000..1b783d4
--- /dev/null
+++ b/sources
@@ -0,0 +1 @@
+917c7c5b0f5ff0b42c49edd25f643165  Archive-Extract-0.66.tar.gz



More information about the perl-devel mailing list