Update to 0.011
- New upstream release 0.011 - Make EU::IP compatible with perl 5.6 - Declare dependency on File::Spec 0.83 for case_sensitive - Use %license where possible - Don't attempt to run the release tests on old EL versions prior to EL-7 as they require Test::Pod ≥ 1.41
This commit is contained in:
parent
24e9e699cb
commit
5d0baac76f
@ -1,6 +1,6 @@
|
|||||||
Name: perl-ExtUtils-InstallPaths
|
Name: perl-ExtUtils-InstallPaths
|
||||||
Version: 0.010
|
Version: 0.011
|
||||||
Release: 4%{?dist}
|
Release: 1%{?dist}
|
||||||
Summary: Build.PL install path logic made easy
|
Summary: Build.PL install path logic made easy
|
||||||
Group: Development/Libraries
|
Group: Development/Libraries
|
||||||
License: GPL+ or Artistic
|
License: GPL+ or Artistic
|
||||||
@ -9,24 +9,27 @@ Source0: http://cpan.metacpan.org/authors/id/L/LE/LEONT/ExtUtils-InstallPaths-%{
|
|||||||
BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root-%(id -nu)
|
BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root-%(id -nu)
|
||||||
BuildArch: noarch
|
BuildArch: noarch
|
||||||
# Build
|
# Build
|
||||||
BuildRequires: perl(ExtUtils::MakeMaker) >= 6.30
|
BuildRequires: perl
|
||||||
|
BuildRequires: perl(ExtUtils::MakeMaker)
|
||||||
# Module
|
# Module
|
||||||
BuildRequires: perl(Carp)
|
BuildRequires: perl(Carp)
|
||||||
BuildRequires: perl(ExtUtils::Config) >= 0.002
|
BuildRequires: perl(ExtUtils::Config) >= 0.002
|
||||||
BuildRequires: perl(File::Spec)
|
BuildRequires: perl(File::Spec)
|
||||||
|
BuildRequires: perl(strict)
|
||||||
|
BuildRequires: perl(warnings)
|
||||||
# Test Suite
|
# Test Suite
|
||||||
BuildRequires: perl(Config)
|
BuildRequires: perl(Config)
|
||||||
BuildRequires: perl(File::Spec::Functions)
|
BuildRequires: perl(File::Spec::Functions) >= 0.83
|
||||||
BuildRequires: perl(File::Temp)
|
BuildRequires: perl(File::Temp)
|
||||||
BuildRequires: perl(IO::Handle)
|
BuildRequires: perl(IO::Handle)
|
||||||
BuildRequires: perl(IPC::Open3)
|
BuildRequires: perl(IPC::Open3)
|
||||||
BuildRequires: perl(Test::More)
|
BuildRequires: perl(Test::More)
|
||||||
# Release Tests
|
# Release Tests
|
||||||
# perl-Pod-Coverage-TrustPod -> perl-Pod-Eventual -> perl-Mixin-Linewise ->
|
# perl-Pod-Coverage-TrustPod → perl-Pod-Eventual → perl-Mixin-Linewise →
|
||||||
# perl-YAML-Tiny -> perl-Module-Build-Tiny -> perl-ExtUtils-InstallPaths
|
# perl-YAML-Tiny → perl-Module-Build-Tiny → perl-ExtUtils-InstallPaths
|
||||||
%if 0%{!?perl_bootstrap:1}
|
%if 0%{!?perl_bootstrap:1} && ( 0%{?rhel} > 6 || 0%{?fedora} )
|
||||||
BuildRequires: perl(Pod::Coverage::TrustPod)
|
BuildRequires: perl(Pod::Coverage::TrustPod)
|
||||||
BuildRequires: perl(Test::Pod)
|
BuildRequires: perl(Test::Pod) >= 1.41
|
||||||
BuildRequires: perl(Test::Pod::Coverage) >= 1.08
|
BuildRequires: perl(Test::Pod::Coverage) >= 1.08
|
||||||
%endif
|
%endif
|
||||||
# Runtime
|
# Runtime
|
||||||
@ -58,17 +61,34 @@ find %{buildroot} -type f -name .packlist -exec rm -f {} ';'
|
|||||||
%{_fixperms} %{buildroot}
|
%{_fixperms} %{buildroot}
|
||||||
|
|
||||||
%check
|
%check
|
||||||
|
%if 0%{!?perl_bootstrap:1} && ( 0%{?rhel} > 6 || 0%{?fedora} )
|
||||||
make test RELEASE_TESTING=1
|
make test RELEASE_TESTING=1
|
||||||
|
%else
|
||||||
|
make test
|
||||||
|
%endif
|
||||||
|
|
||||||
%clean
|
%clean
|
||||||
rm -rf %{buildroot}
|
rm -rf %{buildroot}
|
||||||
|
|
||||||
%files
|
%files
|
||||||
%doc Changes LICENSE README
|
%if 0%{?_licensedir:1}
|
||||||
|
%license LICENSE
|
||||||
|
%else
|
||||||
|
%doc LICENSE
|
||||||
|
%endif
|
||||||
|
%doc Changes README
|
||||||
%{perl_vendorlib}/ExtUtils/
|
%{perl_vendorlib}/ExtUtils/
|
||||||
%{_mandir}/man3/ExtUtils::InstallPaths.3pm*
|
%{_mandir}/man3/ExtUtils::InstallPaths.3*
|
||||||
|
|
||||||
%changelog
|
%changelog
|
||||||
|
* Mon Feb 16 2015 Paul Howarth <paul@city-fan.org> - 0.011-1
|
||||||
|
- Update to 0.011
|
||||||
|
- Make EU::IP compatible with perl 5.6
|
||||||
|
- Declare dependency on File::Spec 0.83 for case_sensitive
|
||||||
|
- Use %%license where possible
|
||||||
|
- Don't attempt to run the release tests on old EL versions prior to EL-7 as
|
||||||
|
they require Test::Pod ≥ 1.41
|
||||||
|
|
||||||
* Sun Sep 07 2014 Jitka Plesnikova <jplesnik@redhat.com> - 0.010-4
|
* Sun Sep 07 2014 Jitka Plesnikova <jplesnik@redhat.com> - 0.010-4
|
||||||
- Perl 5.20 re-rebuild of bootstrapped packages
|
- Perl 5.20 re-rebuild of bootstrapped packages
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user