2011-04-21 10:41:00 +00:00
|
|
|
#
|
2024-08-02 20:56:39 +00:00
|
|
|
# spec file for package perl-Test-Distribution
|
2011-04-21 10:41:00 +00:00
|
|
|
#
|
2024-08-02 20:56:39 +00:00
|
|
|
# Copyright (c) 2024 SUSE LLC
|
2011-04-21 10:41:00 +00:00
|
|
|
#
|
|
|
|
# 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.
|
|
|
|
|
2024-08-02 20:56:39 +00:00
|
|
|
# Please submit bugfixes or comments via https://bugs.opensuse.org/
|
2011-04-21 10:41:00 +00:00
|
|
|
#
|
|
|
|
|
2024-08-02 20:56:39 +00:00
|
|
|
|
2011-04-21 10:41:00 +00:00
|
|
|
%define cpan_name Test-Distribution
|
2024-08-02 20:56:39 +00:00
|
|
|
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
|
2011-04-21 10:41:00 +00:00
|
|
|
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)
|
2024-08-02 20:56:39 +00:00
|
|
|
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
|
2011-04-21 10:41:00 +00:00
|
|
|
%{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
|
2024-08-02 20:56:39 +00:00
|
|
|
%autosetup -n %{cpan_name}-%{cpan_version}
|
2011-04-21 10:41:00 +00:00
|
|
|
|
|
|
|
%build
|
2024-08-02 20:56:39 +00:00
|
|
|
perl Build.PL --installdirs=vendor
|
|
|
|
./Build build --flags=%{?_smp_mflags}
|
2011-04-21 10:41:00 +00:00
|
|
|
|
|
|
|
%check
|
|
|
|
./Build test
|
|
|
|
|
|
|
|
%install
|
2024-08-02 20:56:39 +00:00
|
|
|
./Build install --destdir=%{buildroot} --create_packlist=0
|
2011-04-21 10:41:00 +00:00
|
|
|
%perl_gen_filelist
|
|
|
|
|
|
|
|
%files -f %{name}.files
|
|
|
|
%doc README
|
|
|
|
|
|
|
|
%changelog
|