#1 Tests
Merged 2 years ago by jplesnik. Opened 2 years ago by jplesnik.
Unknown source rawhide  into  rawhide

file added
+1
@@ -0,0 +1,1 @@

+ 1

file modified
+1
@@ -13,3 +13,4 @@

  /Pod-Simple-3.40.tar.gz

  /Pod-Simple-3.41.tar.gz

  /Pod-Simple-3.42.tar.gz

+ /Pod-Simple-3.43.tar.gz

file added
+7
@@ -0,0 +1,7 @@

+ --- !Policy

+ product_versions:

+   - fedora-*

+ decision_context: bodhi_update_push_stable

+ subject_type: koji_build

+ rules:

+   - !PassingTestCaseRule {test_case_name: fedora-ci.koji-build.tier0.functional}

file modified
+46 -2
@@ -4,8 +4,8 @@

  Name:           perl-Pod-Simple

  # Epoch to compete with perl.spec

  Epoch:          1

- Version:        3.42

- Release:        478%{?dist}

+ Version:        3.43

+ Release:        1%{?dist}

  Summary:        Framework for parsing POD documentation

  License:        GPL+ or Artistic

  URL:            https://metacpan.org/release/Pod-Simple
@@ -54,14 +54,33 @@

  # Filter under-specified dependencies

  %global __requires_exclude %{?__requires_exclude:%__requires_exclude|}^perl\\(Text::Wrap\\)$

  

+ # Filter modules bundled for tests

+ %global __provides_exclude_from %{?__provides_exclude_from:%__provides_exclude_from|}^%{_libexecdir}

+ 

  %description

  Pod::Simple is a Perl library for parsing text in the POD (plain old

  documentation) markup language that is typically used for writing

  documentation for Perl and for Perl modules.

  

+ %package tests

+ Summary:        Tests for %{name}

+ Requires:       %{name} = %{?epoch:%{epoch}:}%{version}-%{release}

+ Requires:       perl-Test-Harness

+ Requires:       perl(FindBin)

+ 

+ %description tests

+ Tests from %{name}. Execute them

+ with "%{_libexecdir}/%{name}/test".

+ 

  %prep

  %setup -q -n Pod-Simple-%{version}

  

+ # Help generators to recognize Perl scripts

+ for F in t/*.t t/*.pl; do

+     perl -i -MConfig -ple 'print $Config{startperl} if $. == 1 && !s{\A#!.*perl\b}{$Config{startperl}}' "$F"

+     chmod +x "$F"

+ done

+ 

  %build

  perl Makefile.PL INSTALLDIRS=vendor NO_PACKLIST=1 NO_PERLLOCAL=1

  %{make_build}
@@ -70,8 +89,26 @@

  %{make_install}

  %{_fixperms} $RPM_BUILD_ROOT/*

  

+ # Install tests

+ mkdir -p %{buildroot}%{_libexecdir}/%{name}

+ cp -a t %{buildroot}%{_libexecdir}/%{name}

+ cat > %{buildroot}%{_libexecdir}/%{name}/test << 'EOF'

+ #!/bin/sh

+ set -e

+ # Some tests write into temporary files/directories. The easiest solution

+ # is to copy the tests into a writable directory and execute them from there.

+ DIR=$(mktemp -d)

+ pushd "$DIR"

+ cp -a %{_libexecdir}/%{name}/* ./

+ prove -I . -j "$(getconf _NPROCESSORS_ONLN)"

+ popd

+ rm -rf "$DIR"

+ EOF

+ chmod +x %{buildroot}%{_libexecdir}/%{name}/test

+ 

  %check

  unset PERL_CORE PERL_TEST_DIFF

+ export HARNESS_OPTIONS=j$(perl -e 'if ($ARGV[0] =~ /.*-j([0-9][0-9]*).*/) {print $1} else {print 1}' -- '%{?_smp_mflags}')

  make test

  

  %files
@@ -79,7 +116,14 @@

  %{perl_vendorlib}/*

  %{_mandir}/man3/*

  

+ %files tests

+ %{_libexecdir}/%{name}

+ 

  %changelog

+ * Tue Jun 29 2021 Jitka Plesnikova <jplesnik@redhat.com> - 1:3.43-1

+ - 3.43 bump

+ - Package tests

+ 

  * Mon May 24 2021 Jitka Plesnikova <jplesnik@redhat.com> - 1:3.42-478

  - Perl 5.34 re-rebuild of bootstrapped packages

  

file added
+5
@@ -0,0 +1,5 @@

+ summary: Sanity tests

+ discover:

+     how: fmf

+ execute:

+     how: tmt

file modified
+1 -1
@@ -1,1 +1,1 @@

- SHA512 (Pod-Simple-3.42.tar.gz) = 06568deea66ac80f648f97e69d3295d64e508c12079e3816978f2829c0091225fd47db1a7e2f35dfed7db56b772274e79a6c61aa8e319d894bdadc91ece0b45a

+ SHA512 (Pod-Simple-3.43.tar.gz) = f514f805f5be52379d8dcab1a61fea09a45b955917acbac647af3bcef77b8f1da168e37420b92701c268a5d304b99c519ba9c3d8df36955a32a41a441b9f0d80

@@ -0,0 +1,4 @@

+ summary: Upstream tests

+ component: perl-Pod-Simple

+ require: perl-Pod-Simple-tests

+ test: /usr/libexec/perl-Pod-Simple/test

no initial comment

1 new commit added

  • Add missing BR perl(FindBin)
2 years ago

Pull-Request has been merged by jplesnik

2 years ago