#2 Package tests and update license to SPDX format
Merged a year ago by mspacek. Opened a year ago by mspacek.
rpms/ mspacek/perl-B-Debug rawhide  into  rawhide

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

+ 1

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}

@@ -0,0 +1,2 @@ 

+ from Config import *

+ addFilter("-tests\.noarch: W: no-documentation");

file modified
+34 -3
@@ -12,9 +12,9 @@ 

  

  Name:           perl-B-Debug

  Version:        1.26

- Release:        435%{?dist}

+ Release:        436%{?dist}

  Summary:        Walk Perl syntax tree, print debug information about op-codes

- License:        GPL+ or Artistic

+ License:        GPL-1.0-or-later OR Artistic-1.0-Perl

  URL:            https://metacpan.org/release/B-Debug

  Source0:        https://cpan.metacpan.org/authors/id/R/RU/RURBAN/B-Debug-%{version}.tar.gz

  BuildArch:      noarch
@@ -45,8 +45,22 @@ 

  Walk Perl syntax tree and print debug information about op-codes. See

  B::Concise and B::Terse for other details.

  

+ %package tests

+ Summary:        Tests for %{name}

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

+ Requires:       perl-Test-Harness

+ 

+ %description tests

+ Tests from %{name}. Execute them

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

+ 

  %prep

  %setup -q -n B-Debug-%{version}

+ # Help generators to recognize Perl scripts

+ for F in t/*.t; do

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

+     chmod +x "$F"

+ done

  

  %build

  perl Makefile.PL INSTALLDIRS=vendor NO_PACKLIST=1 NO_PERLLOCAL=1
@@ -54,7 +68,16 @@ 

  

  %install

  %{make_install}

- %{_fixperms} $RPM_BUILD_ROOT/*

+ # Install tests

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

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

+ rm -f %{buildroot}%{_libexecdir}/%{name}/t/pod*

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

+ #!/bin/sh

+ cd %{_libexecdir}/%{name} && exec prove -I . -j "$(getconf _NPROCESSORS_ONLN)"

+ EOF

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

+ %{_fixperms} %{buildroot}/*

  

  %check

  make test
@@ -65,7 +88,15 @@ 

  %{perl_vendorlib}/*

  %{_mandir}/man3/*

  

+ %files tests

+ %{_libexecdir}/%{name}

+ 

  %changelog

+ * Tue Dec 20 2022 Michal Josef Špaček <mspacek@redhat.com> - 1.26-436

+ - Package tests

+ - Update license to SPDX format

+ - Use %{buildroot} macro

+ 

  * Fri Jul 22 2022 Fedora Release Engineering <releng@fedoraproject.org> - 1.26-435

  - Rebuilt for https://fedoraproject.org/wiki/Fedora_37_Mass_Rebuild

  

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

+ summary: Sanity tests

+ discover:

+     how: fmf

+ execute:

+     how: tmt

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

+ summary: Upstream tests

+ component: perl-B-Debug

+ require: perl-B-Debug-tests

+ test: /usr/libexec/perl-B-Debug/test