Files
perl-Test-Distribution/perl-Test-Distribution.spec

99 lines
3.5 KiB
RPMSpec
Raw Permalink Normal View History

#
# spec file for package perl-Test-Distribution
#
# 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 Test-Distribution
Name: perl-Test-Distribution
Version: 2.0.0
Release: 0
# 2.00 -> normalize -> 2.0.0
%define cpan_version 2.00
License: Artistic-1.0 OR GPL-1.0-or-later
Summary: Perform tests on all modules of a distribution
URL: https://metacpan.org/release/%{cpan_name}
Source0: https://cpan.metacpan.org/authors/id/S/SR/SRSHAH/%{cpan_name}-%{cpan_version}.tar.gz
2025-08-12 18:17:41 +02:00
Source100: README.md
BuildArch: noarch
BuildRequires: perl
BuildRequires: perl-macros
BuildRequires: perl(File::Find::Rule) >= 0.03
BuildRequires: perl(Module::Build)
BuildRequires: perl(Module::CoreList) >= 1.93
BuildRequires: perl(Pod::Coverage) >= 0.17
BuildRequires: perl(Test::Pod) >= 0.95
BuildRequires: perl(Test::Pod::Coverage)
Requires: perl(File::Find::Rule) >= 0.03
Requires: perl(Module::CoreList) >= 1.93
Requires: perl(Pod::Coverage) >= 0.17
Requires: perl(Test::Pod) >= 0.95
Requires: perl(Test::Pod::Coverage)
Provides: perl(Test::Distribution) = %{version}
Provides: perl(Test::Distribution::base)
Provides: perl(Test::Distribution::description)
Provides: perl(Test::Distribution::exports)
Provides: perl(Test::Distribution::manifest)
Provides: perl(Test::Distribution::pod)
Provides: perl(Test::Distribution::podcover)
Provides: perl(Test::Distribution::prereq)
Provides: perl(Test::Distribution::sig)
Provides: perl(Test::Distribution::use)
Provides: perl(Test::Distribution::versions)
%undefine __perllib_provides
%{perl_requires}
%description
When using this module in a test script, it goes through all the modules in
your distribution, checks their POD, checks that they compile ok and checks
that they all define a $VERSION.
This module also performs a numer of test on the distribution itself. It
checks that your files match your SIGNATURE file if you have one. It checks
that your distribution isn't missing certain 'core' description files. It
checks to see you havent' missed out listing any pre-requisites in
Makefile.PL.
It defines its own testing plan, so you usually don't use it in conjunction
with other 'Test::*' modules in the same file. It's recommended that you
just create a one-line test script as shown in the SYNOPSIS above. However,
there are options...
*NOTE* If you do not specify any options Test::Distribution will run all
test types *except* signature testing which must always be explicitly
switched on.
In the future I may change the default to run no tests at all as this
sounds safer. Mail me if you disagree.
%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 README
%changelog