[perl-Test-FailWarnings/f18] Initial import.

Emmanuel Seyman eseyman at fedoraproject.org
Mon May 6 20:21:25 UTC 2013


commit 4f8074a9caa3300300e71e2e16de2159193b4b5e
Author: Emmanuel Seyman <emmanuel at seyman.fr>
Date:   Mon May 6 22:21:19 2013 +0200

    Initial import.

 .gitignore                  |    1 +
 perl-Test-FailWarnings.spec |   63 +++++++++++++++++++++++++++++++++++++++++++
 sources                     |    1 +
 3 files changed, 65 insertions(+), 0 deletions(-)
---
diff --git a/.gitignore b/.gitignore
index e69de29..9d07648 100644
--- a/.gitignore
+++ b/.gitignore
@@ -0,0 +1 @@
+/Test-FailWarnings-0.003.tar.gz
diff --git a/perl-Test-FailWarnings.spec b/perl-Test-FailWarnings.spec
new file mode 100644
index 0000000..e21656c
--- /dev/null
+++ b/perl-Test-FailWarnings.spec
@@ -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 at seyman.fr> - 0.003-2
+- Take into account review comments (#957466)
+
+* Sun Apr 28 2013 Emmanuel Seyman <emmanuel at seyman.fr> 0.003-1
+- Specfile autogenerated by cpanspec 1.78.
diff --git a/sources b/sources
index e69de29..775c409 100644
--- a/sources
+++ b/sources
@@ -0,0 +1 @@
+bbed4b467d8934f285b8a0cffc9fe200  Test-FailWarnings-0.003.tar.gz



More information about the perl-devel mailing list