Files
perl-TAP-Harness-Archive/perl-TAP-Harness-Archive.spec
2025-08-12 18:17:25 +02:00

74 lines
2.4 KiB
RPMSpec

#
# spec file for package perl-TAP-Harness-Archive
#
# 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 TAP-Harness-Archive
Name: perl-TAP-Harness-Archive
Version: 0.180.0
Release: 0
# 0.18 -> normalize -> 0.180.0
%define cpan_version 0.18
License: Artistic-1.0 OR GPL-1.0-or-later
Summary: Create an archive of TAP test results
URL: https://metacpan.org/release/%{cpan_name}
Source0: https://cpan.metacpan.org/authors/id/S/SC/SCHWIGON/%{cpan_name}-%{cpan_version}.tar.gz
Source1: cpanspec.yml
Source100: README.md
BuildArch: noarch
BuildRequires: perl
BuildRequires: perl-macros
BuildRequires: perl(Archive::Tar)
BuildRequires: perl(File::Temp) >= 0.19
BuildRequires: perl(Module::Build)
BuildRequires: perl(TAP::Harness) >= 3.05
BuildRequires: perl(YAML::Tiny)
BuildRequires: perl(base) >= 2.18
Requires: perl(Archive::Tar)
Requires: perl(File::Temp) >= 0.19
Requires: perl(TAP::Harness) >= 3.05
Requires: perl(YAML::Tiny)
Requires: perl(base) >= 2.18
Provides: perl(TAP::Harness::Archive) = %{version}
%undefine __perllib_provides
%{perl_requires}
%description
This module is a direct subclass of TAP::Harness and behaves in exactly the
same way except for one detail. In addition to outputting a running
progress of the tests and an ending summary it can also capture all of the
raw TAP from the individual test files or streams into an archive file
('.tar' or '.tar.gz').
%prep
%autosetup -n %{cpan_name}-%{cpan_version}
%build
perl Build.PL --installdirs=vendor
./Build build --flags=%{?_smp_mflags}
%check
./Build test
%install
./Build install --destdir=%{buildroot} --create_packlist=0
%perl_gen_filelist
%files -f %{name}.files
%doc Changes TODO
%changelog