Files
perl-Log-Any-Adapter-TAP/perl-Log-Any-Adapter-TAP.spec
2025-08-12 18:15:07 +02:00

83 lines
2.5 KiB
RPMSpec

#
# spec file for package perl-Log-Any-Adapter-TAP
#
# Copyright (c) 2024 SUSE LLC
#
# All modifications and additions to the file contributed by third parties
# remain the property of their copyright owners, unless otherwise agreed
# upon. The license for this file, and modifications and additions to the
# file, is the same license as for the pristine package itself (unless the
# license for the pristine package is not an Open Source License, in which
# case the license is the MIT License). An "Open Source License" is a
# license that conforms to the Open Source Definition (Version 1.9)
# published by the Open Source Initiative.
# Please submit bugfixes or comments via https://bugs.opensuse.org/
#
%define cpan_name Log-Any-Adapter-TAP
Name: perl-Log-Any-Adapter-TAP
Version: 0.3.3
Release: 0
%define cpan_version 0.003003
License: Artistic-1.0 OR GPL-1.0-or-later
Summary: Logger suitable for use with TAP test files
URL: https://metacpan.org/release/%{cpan_name}
Source0: https://cpan.metacpan.org/authors/id/N/NE/NERDVANA/%{cpan_name}-%{cpan_version}.tar.gz
Source100: README.md
BuildArch: noarch
BuildRequires: perl
BuildRequires: perl-macros
BuildRequires: perl(Log::Any)
BuildRequires: perl(Log::Any::Adapter)
BuildRequires: perl(Log::Any::Adapter::Base)
BuildRequires: perl(Log::Any::Proxy)
BuildRequires: perl(Try::Tiny)
BuildRequires: perl(parent)
Requires: perl(Log::Any)
Requires: perl(Log::Any::Adapter::Base)
Requires: perl(Log::Any::Proxy)
Requires: perl(Try::Tiny)
Requires: perl(parent)
Provides: perl(Log::Any::Adapter::TAP) = %{version}
%undefine __perllib_provides
%{perl_requires}
%description
When running testcases, you probably want to see some of your logging
output. One sensible approach is to have all 'warn' and more serious
messages emitted as 'diag' output on STDERR, and less serious messages
emitted as 'note' comments on STDOUT.
So, thats what this logging adapter does. Simply say
use Log::Any::Adapter 'TAP';
at the start of your testcase, and now you have your logging output as part
of your TAP stream.
By default, 'debug' and 'trace' are suppressed, but you can enable them
with TAP_LOG_FILTER or the filter attribute. See below.
%prep
%autosetup -n %{cpan_name}-%{cpan_version}
%build
perl Makefile.PL INSTALLDIRS=vendor
%make_build
%check
make test
%install
%perl_make_install
%perl_process_packlist
%perl_gen_filelist
%files -f %{name}.files
%doc Changes README
%license LICENSE
%changelog