79 lines
2.1 KiB
RPMSpec
79 lines
2.1 KiB
RPMSpec
Name: perl-Test-FailWarnings
|
|
Version: 0.007
|
|
Release: 1%{?dist}
|
|
Summary: Add test failures if warnings are caught
|
|
License: ASL 2.0
|
|
|
|
URL: http://search.cpan.org/dist/Test-FailWarnings/
|
|
Source0: http://www.cpan.org/authors/id/D/DA/DAGOLDEN/Test-FailWarnings-%{version}.tar.gz
|
|
|
|
BuildArch: noarch
|
|
BuildRequires: perl
|
|
BuildRequires: perl(Capture::Tiny)
|
|
BuildRequires: perl(Carp)
|
|
BuildRequires: perl(constant)
|
|
BuildRequires: perl(ExtUtils::MakeMaker)
|
|
BuildRequires: perl(File::Find)
|
|
BuildRequires: perl(File::Spec::Functions)
|
|
BuildRequires: perl(List::Util)
|
|
BuildRequires: perl(strict)
|
|
BuildRequires: perl(Test::More)
|
|
BuildRequires: perl(warnings)
|
|
|
|
# tests
|
|
BuildRequires: perl(File::Temp)
|
|
BuildRequires: perl(Test::Script)
|
|
|
|
Requires: perl(:MODULE_COMPAT_%(eval "`%{__perl} -V:version`"; echo $version))
|
|
|
|
%{?perl_default_filter}
|
|
|
|
%description
|
|
This module hooks $SIG{__WARN__} and converts warnings to Test::More's
|
|
fail() calls. It is designed to be used with done_testing, when you don't
|
|
need to know the test count in advance.
|
|
|
|
%prep
|
|
%setup -q -n Test-FailWarnings-%{version}
|
|
|
|
%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
|
|
%doc Changes CONTRIBUTING LICENSE README
|
|
%{perl_vendorlib}/*
|
|
%{_mandir}/man3/*
|
|
|
|
%changelog
|
|
* Sun Sep 01 2013 Emmanuel Seyman <emmanuel@seyman.fr> - 0.007-1
|
|
- Update to 0.007
|
|
|
|
* Sun Aug 25 2013 Emmanuel Seyman <emmanuel@seyman.fr> - 0.006-1
|
|
- Update to 0.006
|
|
|
|
* Sun Aug 04 2013 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 0.005-3
|
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_20_Mass_Rebuild
|
|
|
|
* Tue Jul 23 2013 Petr Pisar <ppisar@redhat.com> - 0.005-2
|
|
- Perl 5.18 rebuild
|
|
|
|
* Wed May 08 2013 Emmanuel Seyman <emmanuel@seyman.fr> - 0.005-1
|
|
- Update to 0.005
|
|
|
|
* Fri May 03 2013 Emmanuel Seyman <emmanuel@seyman.fr> - 0.003-2
|
|
- Take into account review comments (#957466)
|
|
|
|
* Sun Apr 28 2013 Emmanuel Seyman <emmanuel@seyman.fr> 0.003-1
|
|
- Specfile autogenerated by cpanspec 1.78.
|