Package tests; Modernize spec

This commit is contained in:
Jitka Plesnikova 2023-09-15 09:59:41 +02:00
parent 4e947a1f2c
commit b76022b540
5 changed files with 55 additions and 10 deletions

1
.fmf/version Normal file
View File

@ -0,0 +1 @@
1

7
gating.yaml Normal file
View File

@ -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}

View File

@ -3,16 +3,17 @@
Name: perl-XML-Catalog Name: perl-XML-Catalog
Version: %(echo '%{cpan_version}' | tr -d 'v') Version: %(echo '%{cpan_version}' | tr -d 'v')
Release: 27%{?dist} Release: 28%{?dist}
Summary: Resolve public identifiers and remap system identifiers Summary: Resolve public identifiers and remap system identifiers
License: GPL-1.0-or-later OR Artistic-1.0-Perl License: GPL-1.0-or-later OR Artistic-1.0-Perl
URL: https://metacpan.org/release/XML-Catalog URL: https://metacpan.org/release/XML-Catalog
Source0: https://cpan.metacpan.org/authors/id/J/JF/JFEARN/XML-Catalog-%{cpan_version}.tar.gz Source0: https://cpan.metacpan.org/authors/id/J/JF/JFEARN/XML-Catalog-%{cpan_version}.tar.gz
BuildArch: noarch BuildArch: noarch
BuildRequires: coreutils
BuildRequires: make BuildRequires: make
BuildRequires: perl-interpreter
BuildRequires: perl-generators BuildRequires: perl-generators
BuildRequires: perl(ExtUtils::MakeMaker) BuildRequires: perl-interpreter
BuildRequires: perl(ExtUtils::MakeMaker) >= 6.76
# Run-time # Run-time
BuildRequires: perl(LWP::Simple) BuildRequires: perl(LWP::Simple)
BuildRequires: perl(strict) BuildRequires: perl(strict)
@ -32,21 +33,42 @@ known as XCatalog) see
Catalogs may be written in either SOCAT or XML syntax. XML::Catalog will 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. 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 %prep
%setup -q -n XML-Catalog-%{cpan_version} %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 %build
for i in Changes README; do for i in Changes README; do
sed -i 's/\r//' $i perl -pi -e 's/\r//' $i
done done
perl Makefile.PL INSTALLDIRS=vendor perl Makefile.PL INSTALLDIRS=vendor NO_PACKLIST=1 NO_PERLLOCAL=1
make %{?_smp_mflags} %{make_build}
%install %install
make pure_install DESTDIR=$RPM_BUILD_ROOT %{make_install}
find $RPM_BUILD_ROOT -type f -name .packlist -exec rm -f {} \; %{_fixperms} %{buildroot}
%{_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
cd %{_libexecdir}/%{name} && exec prove -I . -j "$(getconf _NPROCESSORS_ONLN)"
EOF
chmod +x %{buildroot}%{_libexecdir}/%{name}/test
%check %check
make test make test
@ -56,7 +78,13 @@ make test
%{perl_vendorlib}/* %{perl_vendorlib}/*
%{_mandir}/man3/* %{_mandir}/man3/*
%files tests
%{_libexecdir}/%{name}
%changelog %changelog
* Fri Sep 15 2023 Jitka Plesnikova <jplesnik@redhat.com> - 1.03-28
- Package tests
* Fri Jul 21 2023 Fedora Release Engineering <releng@fedoraproject.org> - 1.03-27 * Fri Jul 21 2023 Fedora Release Engineering <releng@fedoraproject.org> - 1.03-27
- Rebuilt for https://fedoraproject.org/wiki/Fedora_39_Mass_Rebuild - Rebuilt for https://fedoraproject.org/wiki/Fedora_39_Mass_Rebuild

5
plans/sanity.fmf Normal file
View File

@ -0,0 +1,5 @@
summary: Sanity tests
discover:
how: fmf
execute:
how: tmt

4
tests/upstream-tests.fmf Normal file
View File

@ -0,0 +1,4 @@
summary: Upstream tests
component: perl-XML-Catalog
require: perl-XML-Catalog-tests
test: /usr/libexec/perl-XML-Catalog/test