Update to 0.113
- New upstream release 0.113 - Fix a compile error (!!) in RegexpOnly - Fix some documentation typos - Add license to META file
This commit is contained in:
parent
c7d711a78f
commit
2537582c3f
@ -1,28 +1,36 @@
|
||||
Name: perl-Test-Deep
|
||||
Version: 0.112
|
||||
Release: 3%{?dist}
|
||||
Version: 0.113
|
||||
Release: 1%{?dist}
|
||||
Summary: Extremely flexible deep comparison
|
||||
License: GPL+ or Artistic
|
||||
Group: Development/Libraries
|
||||
URL: http://search.cpan.org/dist/Test-Deep/
|
||||
Source0: http://www.cpan.org/authors/id/R/RJ/RJBS/Test-Deep-%{version}.tar.gz
|
||||
Source0: http://search.cpan.org/CPAN/authors/id/R/RJ/RJBS/Test-Deep-%{version}.tar.gz
|
||||
BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root-%(id -nu)
|
||||
BuildArch: noarch
|
||||
# Module Build
|
||||
BuildRequires: perl
|
||||
BuildRequires: perl(ExtUtils::MakeMaker)
|
||||
# Run-time
|
||||
# Module Runtime
|
||||
BuildRequires: perl(base)
|
||||
BuildRequires: perl(Carp)
|
||||
BuildRequires: perl(Exporter)
|
||||
BuildRequires: perl(overload)
|
||||
BuildRequires: perl(Scalar::Util) >= 1.09
|
||||
# Tests
|
||||
BuildRequires: perl(strict)
|
||||
BuildRequires: perl(Test::Builder)
|
||||
BuildRequires: perl(warnings)
|
||||
# Test Suite
|
||||
BuildRequires: perl(Test::More)
|
||||
BuildRequires: perl(Test::NoWarnings) >= 0.02
|
||||
BuildRequires: perl(Test::Tester) >= 0.04
|
||||
# Runtime
|
||||
Requires: perl(:MODULE_COMPAT_%(eval "`perl -V:version`"; echo $version))
|
||||
Requires: perl(Test::Builder)
|
||||
|
||||
%description
|
||||
Test::Deep gives you very flexible ways to check that the result you
|
||||
got is the result you were expecting. At it's simplest it compares two
|
||||
got is the result you were expecting. At its simplest it compares two
|
||||
structures by going through each level, ensuring that the values
|
||||
match, that arrays and hashes have the same elements and that
|
||||
references are blessed into the correct class. It also handles
|
||||
@ -36,24 +44,30 @@ perl Makefile.PL INSTALLDIRS=vendor
|
||||
make %{?_smp_mflags}
|
||||
|
||||
%install
|
||||
rm -rf $RPM_BUILD_ROOT
|
||||
make pure_install DESTDIR=$RPM_BUILD_ROOT
|
||||
find $RPM_BUILD_ROOT -type f -name .packlist -exec rm -f {} \;
|
||||
%{_fixperms} $RPM_BUILD_ROOT
|
||||
rm -rf %{buildroot}
|
||||
make pure_install DESTDIR=%{buildroot}
|
||||
find %{buildroot} -type f -name .packlist -exec rm -f {} \;
|
||||
%{_fixperms} %{buildroot}
|
||||
|
||||
%check
|
||||
make test
|
||||
|
||||
%clean
|
||||
rm -rf $RPM_BUILD_ROOT
|
||||
rm -rf %{buildroot}
|
||||
|
||||
%files
|
||||
%doc Changes README TODO
|
||||
%{perl_vendorlib}/Test/
|
||||
%{_mandir}/man3/Test::Deep.3pm*
|
||||
%{_mandir}/man3/Test::Deep::NoTest.3pm*
|
||||
%{_mandir}/man3/Test::Deep.3*
|
||||
%{_mandir}/man3/Test::Deep::NoTest.3*
|
||||
|
||||
%changelog
|
||||
* Thu Nov 13 2014 Paul Howarth <paul@city-fan.org> - 0.113-1
|
||||
- Update to 0.113
|
||||
- Fix a compile error (!!) in RegexpOnly
|
||||
- Fix some documentation typos
|
||||
- Add license to META file
|
||||
|
||||
* Wed Aug 27 2014 Jitka Plesnikova <jplesnik@redhat.com> - 0.112-3
|
||||
- Perl 5.20 rebuild
|
||||
|
||||
|
||||
Loading…
Reference in New Issue
Block a user