From 471a7c2dac042b33617f9ec1421e5a79c67ed747 Mon Sep 17 00:00:00 2001 From: CentOS Sources Date: Oct 31 2019 09:58:08 +0000 Subject: import perl-Test-Harness-3.28-3.el7 --- diff --git a/.gitignore b/.gitignore new file mode 100644 index 0000000..6fc45c9 --- /dev/null +++ b/.gitignore @@ -0,0 +1 @@ +SOURCES/Test-Harness-3.28.tar.gz diff --git a/.perl-Test-Harness.metadata b/.perl-Test-Harness.metadata new file mode 100644 index 0000000..482bcd6 --- /dev/null +++ b/.perl-Test-Harness.metadata @@ -0,0 +1 @@ +b357aa5daab191e379a1114eda9d05b87c166f6c SOURCES/Test-Harness-3.28.tar.gz diff --git a/SOURCES/Test-Harness-3.28-Do-not-warn-on-tainted-test-without-PERL5LIB-envirom.patch b/SOURCES/Test-Harness-3.28-Do-not-warn-on-tainted-test-without-PERL5LIB-envirom.patch new file mode 100644 index 0000000..18e2090 --- /dev/null +++ b/SOURCES/Test-Harness-3.28-Do-not-warn-on-tainted-test-without-PERL5LIB-envirom.patch @@ -0,0 +1,40 @@ +From ce0f976bb88b5828373b1579cc2a0d95a8e9f664 Mon Sep 17 00:00:00 2001 +From: =?UTF-8?q?Petr=20P=C3=ADsa=C5=99?= +Date: Mon, 28 Apr 2014 11:05:41 +0200 +Subject: [PATCH] Do not warn on tainted test without PERL5LIB enviroment + variable +MIME-Version: 1.0 +Content-Type: text/plain; charset=UTF-8 +Content-Transfer-Encoding: 8bit + +This fix is ported from upstream commit: + +commit 0a9d31df86597d1480df81c97b688f90d4fe63ba +Author: Leon Timmermans +Date: Sun Jul 28 21:05:57 2013 +0200 + + Added use warnings to all modules + + + +Signed-off-by: Petr Písař +--- + lib/TAP/Parser/SourceHandler/Perl.pm | 2 +- + 1 file changed, 1 insertion(+), 1 deletion(-) + +diff --git a/lib/TAP/Parser/SourceHandler/Perl.pm b/lib/TAP/Parser/SourceHandler/Perl.pm +index 9257f6a..46ee1fc 100644 +--- a/lib/TAP/Parser/SourceHandler/Perl.pm ++++ b/lib/TAP/Parser/SourceHandler/Perl.pm +@@ -167,7 +167,7 @@ sub _mangle_switches { + # PERL5LIB as -I switches and place PERL5OPT on the command line + # in order that it be seen. + if ( $class->_has_taint_switch($switches) ) { +- my @perl5lib = split /$Config{path_sep}/, $ENV{PERL5LIB}; ++ my @perl5lib = defined $ENV{PERL5LIB} ? split /$Config{path_sep}/, $ENV{PERL5LIB} : (); + return ( + $libs, + [ @{$switches}, +-- +1.9.0 + diff --git a/SPECS/perl-Test-Harness.spec b/SPECS/perl-Test-Harness.spec new file mode 100644 index 0000000..a67f3e4 --- /dev/null +++ b/SPECS/perl-Test-Harness.spec @@ -0,0 +1,102 @@ +Name: perl-Test-Harness +Version: 3.28 +Release: 3%{?dist} +Summary: Run Perl standard test scripts with statistics +License: GPL+ or Artistic +Group: Development/Libraries +URL: http://search.cpan.org/dist/Test-Harness/ +Source0: http://www.cpan.org/authors/id/O/OV/OVID/Test-Harness-%{version}.tar.gz +# Do not warn on tainted test without PERL5LIB environment variable, +# bug #1091376, CPAN RT#85106, in 3.29 +Patch0: Test-Harness-3.28-Do-not-warn-on-tainted-test-without-PERL5LIB-envirom.patch +BuildArch: noarch +BuildRequires: perl +BuildRequires: perl(ExtUtils::MakeMaker) +BuildRequires: perl(strict) +# Run-time: +BuildRequires: perl(Benchmark) +BuildRequires: perl(Carp) +BuildRequires: perl(Config) +BuildRequires: perl(constant) +BuildRequires: perl(Exporter) +BuildRequires: perl(File::Basename) +BuildRequires: perl(File::Find) +BuildRequires: perl(File::Path) +BuildRequires: perl(File::Spec) +BuildRequires: perl(Getopt::Long) +BuildRequires: perl(IO::Handle) +BuildRequires: perl(IO::Select) +BuildRequires: perl(POSIX) +BuildRequires: perl(vars) +# Optional run-time: +BuildRequires: perl(Encode) +# Keep Pod::Usage 1.12 really optional +BuildRequires: perl(Term::ANSIColor) +BuildRequires: perl(Time::HiRes) +# Tests: +BuildRequires: perl(base) +BuildRequires: perl(Data::Dumper) +# Dev::Null bundled for bootstrap +BuildRequires: perl(File::Spec::Functions) +BuildRequires: perl(IO::File) +BuildRequires: perl(lib) +BuildRequires: perl(Symbol) +# Test::Builder bundled for bootstrap +# Test::Builder::Module bundled for bootstrap +BuildRequires: perl(Test::More) +# Optional tests: +BuildRequires: perl(File::Temp) +Requires: perl(:MODULE_COMPAT_%(eval "`perl -V:version`"; echo $version)) + +# Filter example dependencies +%global __requires_exclude_from %{?__requires_exclude_from:%__requires_exclude_from|}^%{_datadir}/doc +%global __provides_exclude_from %{?__provides_exclude_from:%__provides_exclude_from|}^%{_datadir}/doc + +%description +This package allows tests to be run and results automatically aggregated and +output to STDOUT. + +Although, for historical reasons, the Test-Harness distribution takes its name +from this module it now exists only to provide TAP::Harness with an interface +that is somewhat backwards compatible with Test::Harness 2.xx. If you're +writing new code consider using TAP::Harness directly instead. + +%prep +%setup -q -n Test-Harness-%{version} +%patch0 -p1 + +%build +perl Makefile.PL INSTALLDIRS=vendor +make %{?_smp_mflags} + +%install +make pure_install DESTDIR=$RPM_BUILD_ROOT +find $RPM_BUILD_ROOT -type f -name .packlist -exec rm -f {} \; +%{_fixperms} $RPM_BUILD_ROOT/* + +%check +make test + +%files +%doc Changes Changes-2.64 examples README +%{perl_vendorlib}/* +%{_bindir}/* +%{_mandir}/man1/* +%{_mandir}/man3/* + +%changelog +* Mon Apr 28 2014 Petr Pisar - 3.28-3 +- Do not warn on tainted test without PERL5LIB environment variable + (bug #1091376) + +* Fri Dec 27 2013 Daniel Mach - 3.28-2 +- Mass rebuild 2013-12-27 + +* Fri May 03 2013 Petr Pisar - 3.28-1 +- 3.28 bump + +* Thu May 02 2013 Petr Pisar - 3.27-1 +- 3.27 bump + +* Mon Mar 18 2013 Petr Pisar 3.26-1 +- Specfile autogenerated by cpanspec 1.78.