Initial import.
This commit is contained in:
parent
43225360ec
commit
7a861fe363
1
.gitignore
vendored
1
.gitignore
vendored
@ -0,0 +1 @@
|
||||
/Test-FailWarnings-0.003.tar.gz
|
63
perl-Test-FailWarnings.spec
Normal file
63
perl-Test-FailWarnings.spec
Normal file
@ -0,0 +1,63 @@
|
||||
Name: perl-Test-FailWarnings
|
||||
Version: 0.003
|
||||
Release: 2%{?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
|
||||
* 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.
|
Loading…
Reference in New Issue
Block a user