Compare commits
No commits in common. "f62a2bcd5b64cbcb5359572626a2c60ad37870ae" and "574c184f7a1dab39d36f5e4f7b02d86e534aa7c9" have entirely different histories.
f62a2bcd5b
...
574c184f7a
1
.fmf/version
Normal file
1
.fmf/version
Normal file
@ -0,0 +1 @@
|
|||||||
|
1
|
1
.gitignore
vendored
1
.gitignore
vendored
@ -1 +1,2 @@
|
|||||||
SOURCES/Parse-Yapp-1.21.tar.gz
|
SOURCES/Parse-Yapp-1.21.tar.gz
|
||||||
|
/Parse-Yapp-1.21.tar.gz
|
||||||
|
@ -1 +0,0 @@
|
|||||||
dad25e0e73a4873ef021308b23d51bb2ccdc7ce4 SOURCES/Parse-Yapp-1.21.tar.gz
|
|
7
gating.yaml
Normal file
7
gating.yaml
Normal file
@ -0,0 +1,7 @@
|
|||||||
|
--- !Policy
|
||||||
|
product_versions:
|
||||||
|
- rhel-8
|
||||||
|
decision_context: osci_compose_gate
|
||||||
|
rules:
|
||||||
|
- !PassingTestCaseRule {test_case_name: osci.brew-build.tier0.functional}
|
||||||
|
- !PassingTestCaseRule {test_case_name: baseos-ci.brew-build.tier1.functional}
|
@ -3,7 +3,7 @@
|
|||||||
Name: perl-Parse-Yapp
|
Name: perl-Parse-Yapp
|
||||||
# Keep 2-digit version for history
|
# Keep 2-digit version for history
|
||||||
Version: %{cpan_version}
|
Version: %{cpan_version}
|
||||||
Release: 2%{?dist}
|
Release: 3%{?dist}
|
||||||
Summary: Perl extension for generating and using LALR parsers
|
Summary: Perl extension for generating and using LALR parsers
|
||||||
Group: Development/Libraries
|
Group: Development/Libraries
|
||||||
License: GPL+ or Artistic
|
License: GPL+ or Artistic
|
||||||
@ -14,12 +14,13 @@ BuildRequires: coreutils
|
|||||||
BuildRequires: make
|
BuildRequires: make
|
||||||
BuildRequires: perl-generators
|
BuildRequires: perl-generators
|
||||||
BuildRequires: perl-interpreter
|
BuildRequires: perl-interpreter
|
||||||
|
BuildRequires: perl(Config)
|
||||||
BuildRequires: perl(ExtUtils::MakeMaker) >= 6.76
|
BuildRequires: perl(ExtUtils::MakeMaker) >= 6.76
|
||||||
# Run-time:
|
# Run-time:
|
||||||
BuildRequires: perl(Carp)
|
BuildRequires: perl(Carp)
|
||||||
BuildRequires: perl(strict)
|
BuildRequires: perl(strict)
|
||||||
BuildRequires: perl(vars)
|
BuildRequires: perl(vars)
|
||||||
Requires: perl(:MODULE_COMPAT_%(eval "`perl -V:version`"; echo $version))
|
Requires: perl-libs
|
||||||
|
|
||||||
%description
|
%description
|
||||||
Parse::Yapp (Yet Another Perl Parser compiler) is a collection of modules that
|
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
|
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.
|
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
|
%prep
|
||||||
%setup -q -n Parse-Yapp-%{cpan_version}
|
%setup -q -n Parse-Yapp-%{cpan_version}
|
||||||
chmod 644 README lib/Parse/{*.pm,Yapp/*.pm}
|
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
|
%build
|
||||||
perl Makefile.PL INSTALLDIRS=vendor NO_PACKLIST=1
|
perl Makefile.PL INSTALLDIRS=vendor NO_PACKLIST=1
|
||||||
make %{?_smp_mflags}
|
make %{?_smp_mflags}
|
||||||
|
|
||||||
%install
|
%install
|
||||||
make pure_install DESTDIR=$RPM_BUILD_ROOT
|
make pure_install DESTDIR=%{buildroot}
|
||||||
chmod -R u+w $RPM_BUILD_ROOT/*
|
%{_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
|
%check
|
||||||
make test
|
make test
|
||||||
@ -49,8 +74,14 @@ make test
|
|||||||
%{_mandir}/man1/*.1*
|
%{_mandir}/man1/*.1*
|
||||||
%{_mandir}/man3/*.3*
|
%{_mandir}/man3/*.3*
|
||||||
|
|
||||||
|
%files tests
|
||||||
|
%{_libexecdir}/%{name}
|
||||||
|
|
||||||
%changelog
|
%changelog
|
||||||
|
* Wed Jul 19 2023 Jitka Plesnikova <jplesnik@redhat.com> - 1.21-3
|
||||||
|
- Replace versioned MODULE_COMPAT by non-versioned perl-libs
|
||||||
|
- Resolves: rhbz#2219504
|
||||||
|
|
||||||
* Fri Feb 09 2018 Fedora Release Engineering <releng@fedoraproject.org> - 1.21-2
|
* Fri Feb 09 2018 Fedora Release Engineering <releng@fedoraproject.org> - 1.21-2
|
||||||
- Rebuilt for https://fedoraproject.org/wiki/Fedora_28_Mass_Rebuild
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_28_Mass_Rebuild
|
||||||
|
|
5
plans/sanity.fmf
Normal file
5
plans/sanity.fmf
Normal file
@ -0,0 +1,5 @@
|
|||||||
|
summary: Sanity tests
|
||||||
|
discover:
|
||||||
|
how: fmf
|
||||||
|
execute:
|
||||||
|
how: tmt
|
1
sources
Normal file
1
sources
Normal file
@ -0,0 +1 @@
|
|||||||
|
SHA512 (Parse-Yapp-1.21.tar.gz) = dbf6182d4813ff7e355ea1713c748bfdf8290040a93f123acec645c7a1733fe457ab6e0ab51c4ec83cf82bc43d7fb35cbf89875df7b5c2ffc9635e85458cfeee
|
9
tests/bz_2219504-check.sh
Executable file
9
tests/bz_2219504-check.sh
Executable file
@ -0,0 +1,9 @@
|
|||||||
|
#!/bin/bash
|
||||||
|
|
||||||
|
OUTPUT=`rpm -qR perl-Parse-Yapp`
|
||||||
|
|
||||||
|
if ! echo "$OUTPUT" | grep -q "MODULE_COMPAT_"; then
|
||||||
|
exit 0
|
||||||
|
else
|
||||||
|
exit 1
|
||||||
|
fi
|
17
tests/bz_2219504.fmf
Normal file
17
tests/bz_2219504.fmf
Normal file
@ -0,0 +1,17 @@
|
|||||||
|
summary: Test for BZ 2219504
|
||||||
|
component:
|
||||||
|
- perl-Parse-Yapp
|
||||||
|
require:
|
||||||
|
- bash
|
||||||
|
- perl-Parse-Yapp
|
||||||
|
test: ./bz_2219504-check.sh
|
||||||
|
enabled: false
|
||||||
|
adjust:
|
||||||
|
- when: distro == centos-stream-8 or distro == rhel-8
|
||||||
|
enabled: true
|
||||||
|
tag:
|
||||||
|
- TestCaseCopy
|
||||||
|
- Tier1
|
||||||
|
tier: '1'
|
||||||
|
extra-nitrate: TC#0615608
|
||||||
|
id: 2b1bd777-55b6-450d-ba0a-ada64b948d5a
|
10
tests/upstream-tests.fmf
Normal file
10
tests/upstream-tests.fmf
Normal file
@ -0,0 +1,10 @@
|
|||||||
|
summary: Upstream tests
|
||||||
|
component: perl-Parse-Yapp
|
||||||
|
require: perl-Parse-Yapp-tests
|
||||||
|
test: /usr/libexec/perl-Parse-Yapp/test
|
||||||
|
tag:
|
||||||
|
- Tier1
|
||||||
|
- rhel-buildroot
|
||||||
|
tier: '1'
|
||||||
|
extra-nitrate: TC#0615609
|
||||||
|
id: 126682dc-42cf-4b34-a226-20e29d77667c
|
Loading…
Reference in New Issue
Block a user