From d0261f45e5b4c033a628bbdcac4157e91cf82eb7 Mon Sep 17 00:00:00 2001 From: CentOS Buildsys Date: Mar 28 2013 13:14:16 +0000 Subject: import perl-autodie-2.16-1.el7.src.rpm --- diff --git a/.perl-autodie.metadata b/.perl-autodie.metadata new file mode 100644 index 0000000..8538418 --- /dev/null +++ b/.perl-autodie.metadata @@ -0,0 +1 @@ +da97ea281d0c5a5b569f8ed2a349575e26cc49d5 SOURCES/autodie-2.16.tar.gz diff --git a/README.md b/README.md deleted file mode 100644 index 0e7897f..0000000 --- a/README.md +++ /dev/null @@ -1,5 +0,0 @@ -The master branch has no content - -Look at the c7 branch if you are working with CentOS-7, or the c4/c5/c6 branch for CentOS-4, 5 or 6 - -If you find this file in a distro specific branch, it means that no content has been checked in yet diff --git a/SPECS/perl-autodie.spec b/SPECS/perl-autodie.spec new file mode 100644 index 0000000..2925ee5 --- /dev/null +++ b/SPECS/perl-autodie.spec @@ -0,0 +1,84 @@ +Name: perl-autodie +Version: 2.16 +Release: 1%{?dist} +Summary: Replace functions with ones that succeed or die +License: GPL+ or Artistic +Group: Development/Libraries +URL: http://search.cpan.org/dist/autodie/ +Source0: http://www.cpan.org/authors/id/P/PJ/PJF/autodie-%{version}.tar.gz +BuildArch: noarch +BuildRequires: perl +# Stick on bundled inc::Module::Install to allow boot-straping this core package +BuildRequires: perl(Config) +BuildRequires: perl(Cwd) +BuildRequires: perl(ExtUtils::MakeMaker) +BuildRequires: perl(ExtUtils::MM_Unix) +BuildRequires: perl(FindBin) +BuildRequires: perl(File::Find) +BuildRequires: perl(File::Path) +BuildRequires: perl(strict) +BuildRequires: perl(vars) +# Run-time: +BuildRequires: perl(B) +BuildRequires: perl(base) +BuildRequires: perl(Carp) +BuildRequires: perl(constant) +BuildRequires: perl(Exporter) +BuildRequires: perl(Fcntl) +BuildRequires: perl(if) +# Keep IPC::System::Simple 0.12 optional +BuildRequires: perl(overload) +BuildRequires: perl(POSIX) +BuildRequires: perl(Tie::RefHash) +# Sub::Identify is optional +BuildRequires: perl(warnings) +# Tests: +BuildRequires: perl(lib) +BuildRequires: perl(File::Copy) +BuildRequires: perl(File::Spec) +BuildRequires: perl(File::Temp) +BuildRequires: perl(IO::Handle) +BuildRequires: perl(open) +BuildRequires: perl(Socket) +BuildRequires: perl(Test::More) +Requires: perl(:MODULE_COMPAT_%(eval "`perl -V:version`"; echo $version)) +Requires: perl(B) +Requires: perl(Fcntl) +Requires: perl(overload) +Requires: perl(POSIX) + +%description +The "autodie" and "Fatal" pragma provides a convenient way to replace +functions that normally return false on failure with equivalents that throw an +exception on failure. + +However "Fatal" has been obsoleted by the new autodie pragma. Please use +autodie in preference to "Fatal". + +%prep +%setup -q -n autodie-%{version} +find -type f -exec chmod -x {} + + +%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 AUTHORS Changes LICENSE README +%{perl_vendorlib}/* +%{_mandir}/man3/* + +%changelog +* Wed Mar 06 2013 Petr Pisar - 2.16-1 +- 2.16 bump + +* Thu Feb 14 2013 Petr Pisar 2.13-1 +- Specfile autogenerated by cpanspec 1.78.