Update to 1.000022
- New upstream release 1.000022 - New is_indexable() object method (CPAN RT#84357) - Eliminated dependency on IO::File (and by virtue, XS) - Removed cruft in test infrastructure left behind from separation from Module::Build - Repository moved to https://github.com/Perl-Toolchain-Gang/Module-Metadata - .pm file is now wholly ascii, for nicer fatpacking (CPAN RT#95086) - Some code micro-optimizations (https://github.com/Perl-Toolchain-Gang/Module-Metadata/pull/4) - Fixed all out of date prereq declarations - Work around change in comparison behaviour in Test::More 0.95_01 by being more explicit with our tests - now explicitly checking the string form of the extracted version, rather than the entire version object - Ensure the extracted version is returned as a version object in all cases (CPAN RT#87782) - Drop redundant Group: tag
This commit is contained in:
parent
95b169bd4b
commit
2cd5b595c4
@ -1,34 +1,32 @@
|
|||||||
Name: perl-Module-Metadata
|
Name: perl-Module-Metadata
|
||||||
Version: 1.000019
|
Version: 1.000022
|
||||||
Release: 1%{?dist}
|
Release: 1%{?dist}
|
||||||
Summary: Gather package and POD information from perl module files
|
Summary: Gather package and POD information from perl module files
|
||||||
License: GPL+ or Artistic
|
License: GPL+ or Artistic
|
||||||
Group: Development/Libraries
|
|
||||||
URL: http://search.cpan.org/dist/Module-Metadata/
|
URL: http://search.cpan.org/dist/Module-Metadata/
|
||||||
Source0: http://search.cpan.org/CPAN/authors/id/E/ET/ETHER/Module-Metadata-%{version}.tar.gz
|
Source0: http://search.cpan.org/CPAN/authors/id/E/ET/ETHER/Module-Metadata-%{version}.tar.gz
|
||||||
BuildArch: noarch
|
BuildArch: noarch
|
||||||
# Build
|
# Build
|
||||||
|
BuildRequires: perl
|
||||||
BuildRequires: perl(ExtUtils::MakeMaker)
|
BuildRequires: perl(ExtUtils::MakeMaker)
|
||||||
# Module
|
# Module
|
||||||
BuildRequires: perl(Carp)
|
BuildRequires: perl(Carp)
|
||||||
|
BuildRequires: perl(Fcntl)
|
||||||
BuildRequires: perl(File::Find)
|
BuildRequires: perl(File::Find)
|
||||||
BuildRequires: perl(File::Spec)
|
BuildRequires: perl(File::Spec)
|
||||||
BuildRequires: perl(IO::File)
|
|
||||||
BuildRequires: perl(strict)
|
BuildRequires: perl(strict)
|
||||||
BuildRequires: perl(vars)
|
|
||||||
BuildRequires: perl(version) >= 0.87
|
BuildRequires: perl(version) >= 0.87
|
||||||
BuildRequires: perl(warnings)
|
BuildRequires: perl(warnings)
|
||||||
# Regular test suite
|
# Regular test suite
|
||||||
BuildRequires: perl(Config)
|
|
||||||
BuildRequires: perl(Cwd)
|
BuildRequires: perl(Cwd)
|
||||||
BuildRequires: perl(Data::Dumper)
|
BuildRequires: perl(Data::Dumper)
|
||||||
BuildRequires: perl(Exporter)
|
|
||||||
BuildRequires: perl(File::Basename)
|
BuildRequires: perl(File::Basename)
|
||||||
BuildRequires: perl(File::Path)
|
BuildRequires: perl(File::Path)
|
||||||
BuildRequires: perl(File::Temp)
|
BuildRequires: perl(File::Temp)
|
||||||
BuildRequires: perl(IO::File)
|
BuildRequires: perl(IO::File)
|
||||||
BuildRequires: perl(lib)
|
BuildRequires: perl(lib)
|
||||||
BuildRequires: perl(Test::More)
|
BuildRequires: perl(Test::More) >= 0.90
|
||||||
|
BuildRequires: perl(vars)
|
||||||
# Release tests
|
# Release tests
|
||||||
%if !%{defined perl_bootstrap}
|
%if !%{defined perl_bootstrap}
|
||||||
BuildRequires: perl(Test::Pod)
|
BuildRequires: perl(Test::Pod)
|
||||||
@ -36,6 +34,7 @@ BuildRequires: perl(Test::Pod::Coverage)
|
|||||||
%endif
|
%endif
|
||||||
# Runtime
|
# Runtime
|
||||||
Requires: perl(:MODULE_COMPAT_%(eval "`perl -V:version`"; echo $version))
|
Requires: perl(:MODULE_COMPAT_%(eval "`perl -V:version`"; echo $version))
|
||||||
|
Requires: perl(Fcntl)
|
||||||
|
|
||||||
%description
|
%description
|
||||||
This module provides a standard way to gather metadata about a .pm file
|
This module provides a standard way to gather metadata about a .pm file
|
||||||
@ -65,6 +64,24 @@ make test TEST_FILES="xt/*.t"
|
|||||||
%{_mandir}/man3/Module::Metadata.3pm*
|
%{_mandir}/man3/Module::Metadata.3pm*
|
||||||
|
|
||||||
%changelog
|
%changelog
|
||||||
|
* Wed Apr 30 2014 Paul Howarth <paul@city-fan.org> - 1.000022-1
|
||||||
|
- Update to 1.000022
|
||||||
|
- New is_indexable() object method (CPAN RT#84357)
|
||||||
|
- Eliminated dependency on IO::File (and by virtue, XS)
|
||||||
|
- Removed cruft in test infrastructure left behind from separation from
|
||||||
|
Module::Build
|
||||||
|
- Repository moved to https://github.com/Perl-Toolchain-Gang/Module-Metadata
|
||||||
|
- .pm file is now wholly ascii, for nicer fatpacking (CPAN RT#95086)
|
||||||
|
- Some code micro-optimizations
|
||||||
|
(https://github.com/Perl-Toolchain-Gang/Module-Metadata/pull/4)
|
||||||
|
- Fixed all out of date prereq declarations
|
||||||
|
- Work around change in comparison behaviour in Test::More 0.95_01 by being
|
||||||
|
more explicit with our tests - now explicitly checking the string form of
|
||||||
|
the extracted version, rather than the entire version object
|
||||||
|
- Ensure the extracted version is returned as a version object in all cases
|
||||||
|
(CPAN RT#87782)
|
||||||
|
- Drop redundant Group: tag
|
||||||
|
|
||||||
* Sun Oct 6 2013 Paul Howarth <paul@city-fan.org> - 1.000019-1
|
* Sun Oct 6 2013 Paul Howarth <paul@city-fan.org> - 1.000019-1
|
||||||
- Update to 1.000019
|
- Update to 1.000019
|
||||||
- Warnings now disabled inside during the evaluation of generated version sub
|
- Warnings now disabled inside during the evaluation of generated version sub
|
||||||
|
Loading…
Reference in New Issue
Block a user