From b76022b540ebe256b2e48753496358dc46ebcf43 Mon Sep 17 00:00:00 2001 From: Jitka Plesnikova Date: Fri, 15 Sep 2023 09:59:41 +0200 Subject: [PATCH] Package tests; Modernize spec --- .fmf/version | 1 + gating.yaml | 7 ++++++ perl-XML-Catalog.spec | 48 +++++++++++++++++++++++++++++++--------- plans/sanity.fmf | 5 +++++ tests/upstream-tests.fmf | 4 ++++ 5 files changed, 55 insertions(+), 10 deletions(-) create mode 100644 .fmf/version create mode 100644 gating.yaml create mode 100644 plans/sanity.fmf create mode 100644 tests/upstream-tests.fmf diff --git a/.fmf/version b/.fmf/version new file mode 100644 index 0000000..d00491f --- /dev/null +++ b/.fmf/version @@ -0,0 +1 @@ +1 diff --git a/gating.yaml b/gating.yaml new file mode 100644 index 0000000..282e16b --- /dev/null +++ b/gating.yaml @@ -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} diff --git a/perl-XML-Catalog.spec b/perl-XML-Catalog.spec index 3f028f0..31bfda3 100644 --- a/perl-XML-Catalog.spec +++ b/perl-XML-Catalog.spec @@ -3,16 +3,17 @@ Name: perl-XML-Catalog Version: %(echo '%{cpan_version}' | tr -d 'v') -Release: 27%{?dist} +Release: 28%{?dist} Summary: Resolve public identifiers and remap system identifiers License: GPL-1.0-or-later OR Artistic-1.0-Perl URL: https://metacpan.org/release/XML-Catalog Source0: https://cpan.metacpan.org/authors/id/J/JF/JFEARN/XML-Catalog-%{cpan_version}.tar.gz BuildArch: noarch -BuildRequires: make -BuildRequires: perl-interpreter +BuildRequires: coreutils +BuildRequires: make BuildRequires: perl-generators -BuildRequires: perl(ExtUtils::MakeMaker) +BuildRequires: perl-interpreter +BuildRequires: perl(ExtUtils::MakeMaker) >= 6.76 # Run-time BuildRequires: perl(LWP::Simple) BuildRequires: perl(strict) @@ -32,21 +33,42 @@ known as XCatalog) see Catalogs may be written in either SOCAT or XML syntax. XML::Catalog will assume SOCAT syntax if the catalog is not in well-formed XML syntax. +%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 XML-Catalog-%{cpan_version} +# Help generators to recognize Perl scripts +for F in t/*.t; do + perl -i -MConfig -ple 'print $Config{startperl} if $. == 1 && !s{\A#!.*perl\b}{$Config{startperl}}' "$F" + chmod +x "$F" +done %build for i in Changes README; do - sed -i 's/\r//' $i + perl -pi -e 's/\r//' $i done -perl Makefile.PL INSTALLDIRS=vendor -make %{?_smp_mflags} +perl Makefile.PL INSTALLDIRS=vendor NO_PACKLIST=1 NO_PERLLOCAL=1 +%{make_build} %install -make pure_install DESTDIR=$RPM_BUILD_ROOT -find $RPM_BUILD_ROOT -type f -name .packlist -exec rm -f {} \; -%{_fixperms} $RPM_BUILD_ROOT/* +%{make_install} +%{_fixperms} %{buildroot} +# Install tests +mkdir -p %{buildroot}%{_libexecdir}/%{name} +cp -a t %{buildroot}%{_libexecdir}/%{name} +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 %check make test @@ -56,7 +78,13 @@ make test %{perl_vendorlib}/* %{_mandir}/man3/* +%files tests +%{_libexecdir}/%{name} + %changelog +* Fri Sep 15 2023 Jitka Plesnikova - 1.03-28 +- Package tests + * Fri Jul 21 2023 Fedora Release Engineering - 1.03-27 - Rebuilt for https://fedoraproject.org/wiki/Fedora_39_Mass_Rebuild diff --git a/plans/sanity.fmf b/plans/sanity.fmf new file mode 100644 index 0000000..a72ded4 --- /dev/null +++ b/plans/sanity.fmf @@ -0,0 +1,5 @@ +summary: Sanity tests +discover: + how: fmf +execute: + how: tmt diff --git a/tests/upstream-tests.fmf b/tests/upstream-tests.fmf new file mode 100644 index 0000000..1a97b1b --- /dev/null +++ b/tests/upstream-tests.fmf @@ -0,0 +1,4 @@ +summary: Upstream tests +component: perl-XML-Catalog +require: perl-XML-Catalog-tests +test: /usr/libexec/perl-XML-Catalog/test