Update to 0.64
- New upstream release 0.64 - Resolve an edge-case with DEPRECATED (CPAN RT#101555) - Make %files list more explicit
This commit is contained in:
parent
63ba7a7e44
commit
b95de639b6
6
.gitignore
vendored
6
.gitignore
vendored
@ -1,5 +1 @@
|
|||||||
Module-Load-Conditional-0.24.tar.gz
|
/Module-Load-Conditional-[0-9.]*.tar.gz
|
||||||
/Module-Load-Conditional-0.54.tar.gz
|
|
||||||
/Module-Load-Conditional-0.58.tar.gz
|
|
||||||
/Module-Load-Conditional-0.60.tar.gz
|
|
||||||
/Module-Load-Conditional-0.62.tar.gz
|
|
||||||
|
|||||||
@ -1,15 +1,15 @@
|
|||||||
Name: perl-Module-Load-Conditional
|
Name: perl-Module-Load-Conditional
|
||||||
Version: 0.62
|
Version: 0.64
|
||||||
Release: 310%{?dist}
|
Release: 1%{?dist}
|
||||||
Summary: Looking up module information and loading at run-time
|
Summary: Looking up module information and loading at run-time
|
||||||
License: GPL+ or Artistic
|
License: GPL+ or Artistic
|
||||||
Group: Development/Libraries
|
Group: Development/Libraries
|
||||||
URL: http://search.cpan.org/dist/Module-Load-Conditional/
|
URL: http://search.cpan.org/dist/Module-Load-Conditional/
|
||||||
Source0: http://www.cpan.org/authors/id/B/BI/BINGOS/Module-Load-Conditional-%{version}.tar.gz
|
Source0: http://www.cpan.org/authors/id/B/BI/BINGOS/Module-Load-Conditional-%{version}.tar.gz
|
||||||
BuildArch: noarch
|
BuildArch: noarch
|
||||||
|
# Build:
|
||||||
BuildRequires: perl
|
BuildRequires: perl
|
||||||
BuildRequires: perl(ExtUtils::MakeMaker)
|
BuildRequires: perl(ExtUtils::MakeMaker)
|
||||||
BuildRequires: perl(strict)
|
|
||||||
# Run-time:
|
# Run-time:
|
||||||
BuildRequires: perl(Carp)
|
BuildRequires: perl(Carp)
|
||||||
BuildRequires: perl(Config)
|
BuildRequires: perl(Config)
|
||||||
@ -18,16 +18,18 @@ BuildRequires: perl(Exporter)
|
|||||||
BuildRequires: perl(File::Spec)
|
BuildRequires: perl(File::Spec)
|
||||||
BuildRequires: perl(FileHandle)
|
BuildRequires: perl(FileHandle)
|
||||||
BuildRequires: perl(Locale::Maketext::Simple)
|
BuildRequires: perl(Locale::Maketext::Simple)
|
||||||
# Module::CoreList 2.22 not needed when running tests
|
BuildRequires: perl(Module::CoreList) >= 2.22
|
||||||
BuildRequires: perl(Module::Load) >= 0.28
|
BuildRequires: perl(Module::Load) >= 0.28
|
||||||
BuildRequires: perl(Module::Metadata) >= 1.000005
|
BuildRequires: perl(Module::Metadata) >= 1.000005
|
||||||
BuildRequires: perl(Params::Check)
|
BuildRequires: perl(Params::Check)
|
||||||
|
BuildRequires: perl(strict)
|
||||||
BuildRequires: perl(vars)
|
BuildRequires: perl(vars)
|
||||||
BuildRequires: perl(version) >= 0.69
|
BuildRequires: perl(version) >= 0.69
|
||||||
# Tests:
|
# Tests:
|
||||||
BuildRequires: perl(FindBin)
|
BuildRequires: perl(FindBin)
|
||||||
BuildRequires: perl(lib)
|
BuildRequires: perl(lib)
|
||||||
BuildRequires: perl(Test::More)
|
BuildRequires: perl(Test::More)
|
||||||
|
BuildRequires: perl(warnings)
|
||||||
Requires: perl(:MODULE_COMPAT_%(eval "`perl -V:version`"; echo $version))
|
Requires: perl(:MODULE_COMPAT_%(eval "`perl -V:version`"; echo $version))
|
||||||
Requires: perl(Config)
|
Requires: perl(Config)
|
||||||
Requires: perl(Module::CoreList) >= 2.22
|
Requires: perl(Module::CoreList) >= 2.22
|
||||||
@ -52,17 +54,22 @@ make %{?_smp_mflags}
|
|||||||
%install
|
%install
|
||||||
make pure_install DESTDIR=$RPM_BUILD_ROOT
|
make pure_install DESTDIR=$RPM_BUILD_ROOT
|
||||||
find $RPM_BUILD_ROOT -type f -name .packlist -exec rm -f {} \;
|
find $RPM_BUILD_ROOT -type f -name .packlist -exec rm -f {} \;
|
||||||
%{_fixperms} $RPM_BUILD_ROOT/*
|
%{_fixperms} $RPM_BUILD_ROOT
|
||||||
|
|
||||||
%check
|
%check
|
||||||
make test
|
make test
|
||||||
|
|
||||||
%files
|
%files
|
||||||
%doc CHANGES README
|
%doc CHANGES README
|
||||||
%{perl_vendorlib}/*
|
%{perl_vendorlib}/Module/
|
||||||
%{_mandir}/man3/*
|
%{_mandir}/man3/Module::Load::Conditional.3*
|
||||||
|
|
||||||
%changelog
|
%changelog
|
||||||
|
* Mon Jan 19 2015 Paul Howarth <paul@city-fan.org> - 0.64-1
|
||||||
|
- Update to 0.64
|
||||||
|
- Resolve an edge-case with DEPRECATED (CPAN RT#101555)
|
||||||
|
- Make %%files list more explicit
|
||||||
|
|
||||||
* Wed Sep 03 2014 Jitka Plesnikova <jplesnik@redhat.com> - 0.62-310
|
* Wed Sep 03 2014 Jitka Plesnikova <jplesnik@redhat.com> - 0.62-310
|
||||||
- Increase release to favour standalone package
|
- Increase release to favour standalone package
|
||||||
|
|
||||||
|
|||||||
Loading…
Reference in New Issue
Block a user