From 6c3e2263afc2daebda1a88783de8e65ed06ee4dc Mon Sep 17 00:00:00 2001 From: eabdullin Date: Fri, 31 May 2024 17:01:21 +0000 Subject: [PATCH] Import from AlmaLinux stable repository --- .perl-Parse-Yapp.metadata | 1 - SPECS/perl-Parse-Yapp.spec | 39 ++++++++++++++++++++++++++++++++++---- 2 files changed, 35 insertions(+), 5 deletions(-) delete mode 100644 .perl-Parse-Yapp.metadata diff --git a/.perl-Parse-Yapp.metadata b/.perl-Parse-Yapp.metadata deleted file mode 100644 index 05160b5..0000000 --- a/.perl-Parse-Yapp.metadata +++ /dev/null @@ -1 +0,0 @@ -dad25e0e73a4873ef021308b23d51bb2ccdc7ce4 SOURCES/Parse-Yapp-1.21.tar.gz diff --git a/SPECS/perl-Parse-Yapp.spec b/SPECS/perl-Parse-Yapp.spec index 962f04d..e3c07cf 100644 --- a/SPECS/perl-Parse-Yapp.spec +++ b/SPECS/perl-Parse-Yapp.spec @@ -3,7 +3,7 @@ Name: perl-Parse-Yapp # Keep 2-digit version for history Version: %{cpan_version} -Release: 2%{?dist} +Release: 3%{?dist} Summary: Perl extension for generating and using LALR parsers Group: Development/Libraries License: GPL+ or Artistic @@ -14,12 +14,13 @@ BuildRequires: coreutils BuildRequires: make BuildRequires: perl-generators BuildRequires: perl-interpreter +BuildRequires: perl(Config) BuildRequires: perl(ExtUtils::MakeMaker) >= 6.76 # Run-time: BuildRequires: perl(Carp) BuildRequires: perl(strict) BuildRequires: perl(vars) -Requires: perl(:MODULE_COMPAT_%(eval "`perl -V:version`"; echo $version)) +Requires: perl-libs %description Parse::Yapp (Yet Another Perl Parser compiler) is a collection of modules that @@ -27,17 +28,41 @@ let you generate and use yacc like thread safe (reentrant) parsers with perl object oriented interface. The script yapp is a front-end to the Parse::Yapp module and let you easily create a Perl OO parser from an input grammar file. +%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 Parse-Yapp-%{cpan_version} chmod 644 README lib/Parse/{*.pm,Yapp/*.pm} +# 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 perl Makefile.PL INSTALLDIRS=vendor NO_PACKLIST=1 make %{?_smp_mflags} %install -make pure_install DESTDIR=$RPM_BUILD_ROOT -chmod -R u+w $RPM_BUILD_ROOT/* +make pure_install DESTDIR=%{buildroot} +%{_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 @@ -49,8 +74,14 @@ make test %{_mandir}/man1/*.1* %{_mandir}/man3/*.3* +%files tests +%{_libexecdir}/%{name} %changelog +* Wed Jul 19 2023 Jitka Plesnikova - 1.21-3 +- Replace versioned MODULE_COMPAT by non-versioned perl-libs +- Resolves: rhbz#2219504 + * Fri Feb 09 2018 Fedora Release Engineering - 1.21-2 - Rebuilt for https://fedoraproject.org/wiki/Fedora_28_Mass_Rebuild