12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273 |
- Name: perl-Test-NoWarnings
- Version: 0.084
- Release: 1%{?_dist_release}
- Summary: Make sure you didn't emit any warnings while testing
- License: LGPL
- Group: Development/Libraries
- URL: http://search.cpan.org/dist/Test-NoWarnings/
- Source0: http://www.cpan.org/authors/id/F/FD/FDALY/Test-NoWarnings-%{version}.tar.gz
- BuildRoot: %{_tmppath}/%{name}-%{version}-root
- BuildArch: noarch
- BuildRequires: perl(ExtUtils::MakeMaker)
- BuildRequires: perl(Test::Tester) >= 0.103
- Requires: perl >= %(eval "`%{__perl} -V:version`"; echo $version)
- %description
- In general, your tests shouldn't produce warnings. This module causes any
- warnings to be captured and stored. It automatically adds an extra test
- that will run when your script ends to check that there were no warnings.
- If there were any warings, the test will give a "not ok" and diagnostics of
- where, when and what the warning was, including a stack trace of what was
- going on when the it occurred.
- %prep
- %setup -q -n Test-NoWarnings-%{version}
- %build
- %{__perl} Makefile.PL INSTALLDIRS=vendor
- make %{?_smp_mflags}
- %install
- rm -rf $RPM_BUILD_ROOT
- make pure_install PERL_INSTALL_ROOT=$RPM_BUILD_ROOT
- find $RPM_BUILD_ROOT -type f -name .packlist -exec rm -f {} \;
- find $RPM_BUILD_ROOT -depth -type d -exec rmdir {} 2>/dev/null \;
- %{_fixperms} $RPM_BUILD_ROOT/*
- %check
- make test
- %clean
- rm -rf $RPM_BUILD_ROOT
- %files
- %defattr(-,root,root,-)
- %doc CHANGES LGPL README
- %{perl_vendorlib}/*
- %{_mandir}/man3/*
- %changelog
- * Thu Nov 12 2009 Ryoichi INAGAKI <ryo1@bc.wakwak.com> 0.084-1
- - updated to 0.084
- - applied new versioning policy
- * Wed Sep 26 2007 Ryoichi INAGAKI <ryo1@bc.wakwak.com> 0.083-2vl1
- - initial build for Vine Linux
- * Wed Apr 18 2007 Steven Pritchard <steve@kspei.com> 0.083-2
- - BR ExtUtils::MakeMaker.
- * Tue Dec 26 2006 Steven Pritchard <steve@kspei.com> 0.083-1
- - Update to 0.083.
- - Use fixperms macro instead of our own chmod incantation.
- * Sat Sep 16 2006 Steven Pritchard <steve@kspei.com> 0.082-2
- - Fix find option order.
- * Sat Apr 08 2006 Steven Pritchard <steve@kspei.com> 0.082-1
- - Specfile autogenerated by cpanspec 1.64.
- - Fix License.
- - Drop explicit dependency on perl(Test::Tester). (Seems to be bogus.)
|