# Detect the distribution in use %global __despace head -n 1 | tr -d '[:space:]' | sed -e 's/[(].*[)]//g' %global __lower4 cut -c 1-4 | tr '[:upper:]' '[:lower:]' %global __distfile %([ -f /etc/SuSE-release ] && echo /etc/SuSE-release || echo /etc/redhat-release) %global __distinit %(sed -e 's/ release .*//' -e 's/\\([A-Za-z]\\)[^ ]*/\\1/g' %{__distfile} | %{__despace} | %{__lower4}) %global __distvers %(sed -e 's/.* release \\([^. ]*\\).*/\\1/' %{__distfile} | %{__despace}) # Identify Alma, CentOS, CentOS Stream and Rocky Linux as rhel %if "%{__distinit}" == "a" || "%{__distinit}" == "c" || "%{__distinit}" == "cl" || "%{__distinit}" == "cs" || "%{__distinit}" == "rl" %global __distinit rhel %endif # Dist tag for Fedora is still "fc" %if "%{__distinit}" == "f" %global __distinit fc %endif Name: perl-Test-NoWarnings Version: 1.06 Release: 5.%{__distinit}%{__distvers} Summary: Make sure you didn't emit any warnings while testing License: LGPL-2.1-or-later URL: https://metacpan.org/release/Test-NoWarnings Source0: https://cpan.metacpan.org/modules/by-module/Test/Test-NoWarnings-%{version}.tar.gz BuildArch: noarch # Module Build BuildRequires: coreutils BuildRequires: findutils BuildRequires: make BuildRequires: perl-generators BuildRequires: perl-interpreter BuildRequires: perl(ExtUtils::MakeMaker) # Module Runtime BuildRequires: perl(Carp) BuildRequires: perl(Exporter) BuildRequires: perl(strict) BuildRequires: perl(Test::Builder) >= 0.86 BuildRequires: perl(warnings) # Optional Runtime BuildRequires: perl(Devel::StackTrace) # Test Suite BuildRequires: perl(Config) BuildRequires: perl(Test::More) >= 0.88 BuildRequires: perl(Test::Tester) >= 0.107 # Dependencies %if 0%{?fedora} < 38 && 0%{?rhel} < 10 Requires: perl(:MODULE_COMPAT_%(eval "`perl -V:version`"; echo $version)) %endif Requires: perl(Devel::StackTrace) %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 warnings, 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 it occurred. %prep %setup -q -n Test-NoWarnings-%{version} %build perl Makefile.PL INSTALLDIRS=vendor make %{?_smp_mflags} %install make pure_install DESTDIR=%{buildroot} find %{buildroot} -type f -name .packlist -delete %{_fixperms} -c %{buildroot} %check make test %files %license LICENSE %doc Changes README %{perl_vendorlib}/Test/ %{_mandir}/man3/Test::NoWarnings.3* %changelog * Wed Jul 12 2023 Paul Howarth - 1.06-5 - Use SPDX-format license tag * Wed Jul 28 2021 Paul Howarth - 1.06-1 - Update to 1.06 - Clarify docs around tests without a plan - Documentation cleanups and typo fixes - Minor code cleanups - use warnings in tests - Skip fork test if perl can't fork - Note conflicts with Carp::Always in documentation - Made had_no_warnings turn off the checking at END time for use with done_testing based tests with no test count; also added docs - Use %%license unconditionally - Distribution no longer includes Extra Tests - Fix dist tags for Alma and Rocky Linux * Mon Jun 3 2019 Paul Howarth - 1.04-19 - Perl 5.30 rebuild * Fri Apr 6 2018 Paul Howarth - 1.04-15 - BR: perl-generators unconditionally - BR: perl-interpreter rather than perl - Drop support for EOL distributions prior to F-13 - Drop BuildRoot: and Group: tags - Drop explicit buildroot cleaning in %%install section - Drop explicit %%clean section * Tue Oct 4 2016 Paul Howarth - 1.04-10 - Classify buildreqs by usage - Simplify find command using -delete * Mon Sep 1 2014 Paul Howarth - 1.04-6 - Drop %%defattr, redundant since rpm 4.4 - Use %%license where possible * Mon Jul 16 2012 Paul Howarth - 1.04-4 - Perl 5.16 post-bootstrap rebuild * Wed Jul 4 2012 Paul Howarth - 1.04-3 - BR: perl(Exporter) and perl(Test::Builder) - Don't need to remove empty directories from the buildroot - Drop support for old distributions prior to FC-3: - Don't need to define %%{perl_vendorlib} - Use DESTDIR rather than PERL_INSTALL_ROOT - Use %%{_fixperms} macro rather than our own chmod incantation * Tue Feb 7 2012 Paul Howarth - 1.04-2 - Don't BR: perl(Test::MinimumVersion) if we're bootstrapping * Thu Dec 1 2011 Paul Howarth - 1.04-1 - Update to 1.04 - Added the experimental :early debugging pragma to cause warnings to be emitted immediately (this should stay off otherwise) - BR: perl(Carp) * Tue Aug 2 2011 Paul Howarth - 1.03-1 - Update to 1.03 - Test::Builder and Test::Tester dependencies were the wrong way around (build vs. runtime) - Reinstate buildreqs from previous build and run release tests * Tue Jun 28 2011 Paul Howarth - 1.02-3 - Rebuild for perl 5.14.1 in Rawhide - Drop redundant buildreqs: - perl(Perl::MinimumVersion) - perl(Pod::Simple) - perl(Test::CPAN::Meta) - perl(Test::Pod) - Add buildreq perl(Test::More) - Add runtime dependency on perl(Devel::StackTrace) for enhanced functionality - Nobody else likes macros for commands - Fix dist tag for CentOS 6 and Scientific Linux * Thu Sep 9 2010 Paul Howarth - 1.02-1 - Update to 1.02 - Don't "use warnings" anywhere inside of Test::NoWarnings::* - Remove the need for a private variable when detecting Devel::StackTrace - Don't import unused functions from Carp or Test::Builder - Minor documentation tweaks - Correct the repository metadata in META.yml - Minor cleanups in the eumm-update generated code - Added a dedicated compile test * Wed Jun 23 2010 Paul Howarth - 1.01-3 - Rebuild for perl 5.12.1 in Rawhide * Wed May 12 2010 Paul Howarth - 1.01-2 - Fix dist tag for RHEL-6 Beta * Sat Jan 16 2010 Paul Howarth - 1.01-1 - Update to 1.01 (clarify license as LGPLv2+ - CPAN RT#53614) - LICENSE restored to upstream distribution * Tue Jan 12 2010 Paul Howarth - 1.00-1 - Update to 1.00 (general cleanup, no functional changes) - New upstream maintainer -> new source URL - Buildreq perl(Devel::StackTrace) for extra test coverage - Enable AUTOMATED_TESTING - Buildreq perl(Test::CPAN::Meta), perl(Pod::Simple), perl(Test::Pod), perl(Perl::MinimumVersion), perl(Test::MinimumVersion) - Dist tag for Rawhide no longer needs special-casing - License text not included in upstream distribution anymore (CPAN RT#53614) * Wed Sep 30 2009 Paul Howarth - 0.084-3 - Define RPM macros in global scope * Fri Nov 14 2008 Paul Howarth - 0.084-2 - Tweak dist tag macros to work on current Rawhide with three-part releasenum * Fri Nov 30 2007 Paul Howarth - 0.084-1 - Import from Fedora - Update to 0.084 - Clarify license as LGPL (any version) - Cosmetic changes and dist tag generation * Wed Apr 18 2007 Steven Pritchard - 0.083-2 - BR ExtUtils::MakeMaker * Tue Dec 26 2006 Steven Pritchard - 0.083-1 - Update to 0.083 - Use fixperms macro instead of our own chmod incantation * Sat Sep 16 2006 Steven Pritchard - 0.082-2 - Fix find option order * Sat Apr 08 2006 Steven Pritchard - 0.082-1 - Specfile autogenerated by cpanspec 1.64 - Fix License - Drop explicit dependency on perl(Test::Tester) (seems to be bogus)