import perl-autodie-2.29-1001.module+el8.3.0+6718+7f269185
This commit is contained in:
commit
50d06b1803
1
.gitignore
vendored
Normal file
1
.gitignore
vendored
Normal file
@ -0,0 +1 @@
|
||||
SOURCES/autodie-2.29.tar.gz
|
1
.perl-autodie.metadata
Normal file
1
.perl-autodie.metadata
Normal file
@ -0,0 +1 @@
|
||||
64fb0ac063a3d2716beffa273b15d541ed5a58fd SOURCES/autodie-2.29.tar.gz
|
206
SPECS/perl-autodie.spec
Normal file
206
SPECS/perl-autodie.spec
Normal file
@ -0,0 +1,206 @@
|
||||
# Run optional test
|
||||
%bcond_without perl_autodie_enables_optional_test
|
||||
|
||||
Name: perl-autodie
|
||||
Version: 2.29
|
||||
Release: 1001%{?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: findutils
|
||||
BuildRequires: make
|
||||
BuildRequires: perl-interpreter
|
||||
BuildRequires: perl-generators
|
||||
BuildRequires: perl(ExtUtils::MakeMaker)
|
||||
BuildRequires: perl(strict)
|
||||
BuildRequires: perl(warnings)
|
||||
# Run-time:
|
||||
BuildRequires: perl(B)
|
||||
BuildRequires: perl(Carp)
|
||||
BuildRequires: perl(Config)
|
||||
BuildRequires: perl(constant)
|
||||
BuildRequires: perl(Exporter) >= 5.57
|
||||
BuildRequires: perl(Fcntl)
|
||||
%if !%{defined perl_bootstrap}
|
||||
BuildRequires: perl(IPC::System::Simple) >= 0.12
|
||||
%endif
|
||||
BuildRequires: perl(overload)
|
||||
BuildRequires: perl(parent)
|
||||
BuildRequires: perl(POSIX)
|
||||
BuildRequires: perl(Scalar::Util)
|
||||
# Sub::Identify is optional
|
||||
BuildRequires: perl(Tie::RefHash)
|
||||
# Tests:
|
||||
# English not used
|
||||
BuildRequires: perl(File::Copy)
|
||||
BuildRequires: perl(File::Spec)
|
||||
BuildRequires: perl(File::Temp)
|
||||
BuildRequires: perl(FindBin)
|
||||
BuildRequires: perl(if)
|
||||
BuildRequires: perl(IO::Handle)
|
||||
BuildRequires: perl(lib)
|
||||
BuildRequires: perl(open)
|
||||
# Pod::Coverage::TrustPod not used
|
||||
BuildRequires: perl(Socket)
|
||||
# Test::Kwalitee not used
|
||||
BuildRequires: perl(Test::More)
|
||||
# Test::Perl::Critic not used
|
||||
# Test::Pod 1.41 not used
|
||||
# Test::Pod::Coverage 1.08 not used
|
||||
# Optional tests:
|
||||
%if %{with perl_autodie_enables_optional_test} && !%{defined perl_bootstrap}
|
||||
BuildRequires: perl(BSD::Resource)
|
||||
BuildRequires: perl(Import::Into) >= 1.002004
|
||||
%endif
|
||||
Requires: perl(:MODULE_COMPAT_%(eval "`perl -V:version`"; echo $version))
|
||||
Requires: perl(B)
|
||||
Requires: perl(Fcntl)
|
||||
Requires: perl(POSIX)
|
||||
# Optional:
|
||||
%if !%{defined perl_bootstrap}
|
||||
# IPC::System::Simple dependency requested, bug #1183231
|
||||
Requires: perl(IPC::System::Simple) >= 0.12
|
||||
%endif
|
||||
|
||||
# Remove falsely detected perl(lib)
|
||||
%global __requires_exclude %{?__requires_exclude:%__requires_exclude|}^perl\\(lib\\)$
|
||||
|
||||
%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
|
||||
%license LICENSE
|
||||
%doc AUTHORS Changes README.md
|
||||
%{perl_vendorlib}/*
|
||||
%{_mandir}/man3/*
|
||||
|
||||
%changelog
|
||||
* Fri Mar 29 2019 Jitka Plesnikova <jplesnik@redhat.com> - 2.29-1001
|
||||
- Rebuild with enable hardening (bug #1636329)
|
||||
|
||||
* Thu Aug 23 2018 Petr Pisar <ppisar@redhat.com> - 2.29-1000
|
||||
- Increase release not to clash with perl-bootstrap:5.24 subpackages
|
||||
(bug #1620199)
|
||||
|
||||
* Fri Apr 27 2018 Petr Pisar <ppisar@redhat.com> - 2.29-398
|
||||
- Increase release not to clash with perl-bootstrap:5.24 subpackages
|
||||
|
||||
* Wed Mar 28 2018 Petr Pisar <ppisar@redhat.com> - 2.29-397
|
||||
- Increase release not to clash with perl-bootstrap:5.24 subpackages
|
||||
|
||||
* Fri Feb 09 2018 Fedora Release Engineering <releng@fedoraproject.org> - 2.29-396
|
||||
- Rebuilt for https://fedoraproject.org/wiki/Fedora_28_Mass_Rebuild
|
||||
|
||||
* Thu Jul 27 2017 Fedora Release Engineering <releng@fedoraproject.org> - 2.29-395
|
||||
- Rebuilt for https://fedoraproject.org/wiki/Fedora_27_Mass_Rebuild
|
||||
|
||||
* Wed Jun 07 2017 Jitka Plesnikova <jplesnik@redhat.com> - 2.29-394
|
||||
- Perl 5.26 re-rebuild of bootstrapped packages
|
||||
|
||||
* Sat Jun 03 2017 Jitka Plesnikova <jplesnik@redhat.com> - 2.29-393
|
||||
- Perl 5.26 rebuild
|
||||
|
||||
* Sat Feb 11 2017 Fedora Release Engineering <releng@fedoraproject.org> - 2.29-367
|
||||
- Rebuilt for https://fedoraproject.org/wiki/Fedora_26_Mass_Rebuild
|
||||
|
||||
* Wed May 18 2016 Jitka Plesnikova <jplesnik@redhat.com> - 2.29-366
|
||||
- Perl 5.24 re-rebuild of bootstrapped packages
|
||||
|
||||
* Sat May 14 2016 Jitka Plesnikova <jplesnik@redhat.com> - 2.29-365
|
||||
- Increase release to favour standalone package
|
||||
|
||||
* Thu Feb 04 2016 Fedora Release Engineering <releng@fedoraproject.org> - 2.29-2
|
||||
- Rebuilt for https://fedoraproject.org/wiki/Fedora_24_Mass_Rebuild
|
||||
|
||||
* Thu Jul 09 2015 Petr Pisar <ppisar@redhat.com> - 2.29-1
|
||||
- 2.29 bump
|
||||
|
||||
* Mon Jun 22 2015 Petr Pisar <ppisar@redhat.com> - 2.28-1
|
||||
- 2.28 bump
|
||||
|
||||
* Thu Jun 18 2015 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 2.27-3
|
||||
- Rebuilt for https://fedoraproject.org/wiki/Fedora_23_Mass_Rebuild
|
||||
|
||||
* Wed Jun 10 2015 Jitka Plesnikova <jplesnik@redhat.com> - 2.27-2
|
||||
- Perl 5.22 re-rebuild of bootstrapped packages
|
||||
|
||||
* Wed Jun 10 2015 Petr Pisar <ppisar@redhat.com> - 2.27-1
|
||||
- 2.27 bump
|
||||
|
||||
* Thu Jun 04 2015 Jitka Plesnikova <jplesnik@redhat.com> - 2.26-345
|
||||
- Increase release to favour standalone package
|
||||
|
||||
* Wed Jun 03 2015 Jitka Plesnikova <jplesnik@redhat.com> - 2.26-3
|
||||
- Perl 5.22 rebuild
|
||||
|
||||
* Mon Jan 19 2015 Petr Pisar <ppisar@redhat.com> - 2.26-2
|
||||
- Run-require IPC::System::Simple for fatalizing system() (bug #1183231)
|
||||
|
||||
* Mon Jan 05 2015 Petr Pisar <ppisar@redhat.com> - 2.26-1
|
||||
- 2.26 bump
|
||||
|
||||
* Sun Sep 07 2014 Jitka Plesnikova <jplesnik@redhat.com> - 2.25-4
|
||||
- Perl 5.20 re-rebuild of bootstrapped packages
|
||||
|
||||
* Tue Aug 26 2014 Jitka Plesnikova <jplesnik@redhat.com> - 2.25-3
|
||||
- Perl 5.20 rebuild
|
||||
|
||||
* Sat Jun 07 2014 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 2.25-2
|
||||
- Rebuilt for https://fedoraproject.org/wiki/Fedora_21_Mass_Rebuild
|
||||
|
||||
* Fri Apr 04 2014 Petr Pisar <ppisar@redhat.com> - 2.25-1
|
||||
- 2.25 bump
|
||||
|
||||
* Mon Mar 31 2014 Petr Pisar <ppisar@redhat.com> - 2.24-1
|
||||
- 2.24 bump
|
||||
|
||||
* Thu Jan 30 2014 Petr Pisar <ppisar@redhat.com> - 2.23-1
|
||||
- 2.23 bump
|
||||
|
||||
* Mon Sep 23 2013 Petr Pisar <ppisar@redhat.com> - 2.22-1
|
||||
- 2.22 bump
|
||||
|
||||
* Thu Sep 12 2013 Petr Pisar <ppisar@redhat.com> - 2.21-1
|
||||
- 2.21 bump
|
||||
|
||||
* Wed Aug 14 2013 Jitka Plesnikova <jplesnik@redhat.com> - 2.20-4
|
||||
- Perl 5.18 re-rebuild of bootstrapped packages
|
||||
|
||||
* Sun Aug 04 2013 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 2.20-3
|
||||
- Rebuilt for https://fedoraproject.org/wiki/Fedora_20_Mass_Rebuild
|
||||
|
||||
* Fri Jul 12 2013 Petr Pisar <ppisar@redhat.com> - 2.20-2
|
||||
- Perl 5.18 rebuild
|
||||
|
||||
* Mon Jul 01 2013 Petr Pisar <ppisar@redhat.com> - 2.20-1
|
||||
- 2.20 bump
|
||||
|
||||
* Wed Mar 06 2013 Petr Pisar <ppisar@redhat.com> - 2.16-1
|
||||
- 2.16 bump
|
||||
|
||||
* Thu Feb 14 2013 Petr Pisar <ppisar@redhat.com> 2.13-1
|
||||
- Specfile autogenerated by cpanspec 1.78.
|
Loading…
Reference in New Issue
Block a user