Compare commits
50 commits
| Author | SHA1 | Date | |
|---|---|---|---|
|
|
2f8a39f3a3 | ||
|
|
a69b4dca78 | ||
|
|
f46f692488 | ||
|
|
094048bef7 | ||
|
|
d4f84b2edf | ||
|
|
4fe2be8d06 | ||
|
|
c93ab27908 | ||
|
|
1c5566002d | ||
|
|
08f53ed8b9 | ||
|
|
dd98084648 | ||
|
|
f625dfc396 | ||
|
|
c9a03a13b3 | ||
|
|
762fe5e625 | ||
|
|
42de208631 | ||
|
|
6cd4350090 | ||
|
|
0989175bb0 | ||
|
|
35c232b7cf | ||
|
|
961e0e4ad3 | ||
|
|
9d810272a8 | ||
|
|
b120829b40 | ||
|
|
8c022fb172 | ||
|
|
b271c607c6 | ||
|
|
e10f618426 | ||
|
|
9416cd2848 | ||
|
|
4b10575d97 | ||
|
|
9a7afa7940 | ||
|
|
716f17c828 | ||
|
|
feedcd16fd | ||
|
|
ecbbb51782 | ||
|
|
bd81444b3e | ||
|
|
1194019eb1 | ||
|
|
e9b2eb9f7b | ||
|
|
49c82cd3d0 | ||
|
|
3c8cbc82a4 | ||
|
|
a57c8e2278 | ||
|
|
a22fb91576 | ||
|
|
28cd4dc252 | ||
|
|
cf048812e7 | ||
|
|
dc7dd9ed12 |
||
|
|
b9434cd0ba | ||
|
|
05b9b0186f |
||
|
|
1466f3e045 | ||
|
|
3161148949 | ||
|
|
85e34b53e3 | ||
|
|
3ccdce90ef | ||
|
|
d77f98933f | ||
|
|
624e59d1c7 | ||
|
|
e149123301 | ||
|
|
7d664c3768 | ||
|
|
626b51eb00 |
10 changed files with 336 additions and 31 deletions
1
.fmf/version
Normal file
1
.fmf/version
Normal file
|
|
@ -0,0 +1 @@
|
|||
1
|
||||
23
.gitignore
vendored
23
.gitignore
vendored
|
|
@ -1,17 +1,8 @@
|
|||
byacc-20070509.tar.gz
|
||||
byacc-20070509.tgz
|
||||
byacc-20100216.tgz
|
||||
/byacc-20100610.tgz
|
||||
byacc-20*/
|
||||
/byacc-20101127.tgz
|
||||
/byacc-20101229.tgz
|
||||
# Release tarballs.
|
||||
byacc-20*.t*gz
|
||||
# Signatures.
|
||||
byacc-20*.t*gz.asc
|
||||
# Generated (source) RPMs.
|
||||
*.rpm
|
||||
.*.log
|
||||
/byacc-20110908.tgz
|
||||
/byacc-20111219.tgz
|
||||
/byacc-20120115.tgz
|
||||
/byacc-20130304.tgz
|
||||
/byacc-20130925.tgz
|
||||
/byacc-20141128.tgz
|
||||
/byacc-20150711.tgz
|
||||
/byacc-20160324.tgz
|
||||
# Expanded source trees.
|
||||
byacc-20*/
|
||||
|
|
|
|||
159
byacc.spec
159
byacc.spec
|
|
@ -1,14 +1,23 @@
|
|||
%define byaccdate 20160324
|
||||
%define byaccdate 20241231
|
||||
|
||||
Summary: Berkeley Yacc, a parser generator
|
||||
Name: byacc
|
||||
Version: 1.9.%{byaccdate}
|
||||
Version: 2.0.%{byaccdate}
|
||||
Release: 1%{?dist}
|
||||
License: Public Domain
|
||||
Group: Development/Tools
|
||||
|
||||
# An SPDX license string check done against byacc-20230521 using fossology
|
||||
# found strings corresponding to the licenses noted below across the byacc
|
||||
# source tree. byacc is in the public domain, and the "public domain
|
||||
# declaration" was documented in fedora-license-data as per Fedora policy
|
||||
# via the following commit:
|
||||
# https://gitlab.com/fedora/legal/fedora-license-data/-/commit/04ec53689413bb
|
||||
License: LicenseRef-Fedora-Public-Domain AND GPL-3.0-or-later WITH Autoconf-exception-generic-3.0 AND X11 AND X11-distribute-modifications-variant AND FSFUL
|
||||
|
||||
URL: http://invisible-island.net/byacc/byacc.html
|
||||
Source: ftp://invisible-island.net/byacc/byacc-%{byaccdate}.tgz
|
||||
BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root-%(%{__id_u} -n)
|
||||
|
||||
BuildRequires: gcc
|
||||
BuildRequires: make
|
||||
|
||||
%description
|
||||
This package provides a parser generator utility that reads a grammar
|
||||
|
|
@ -30,31 +39,153 @@ find . -type f -name \*.c -print0 |
|
|||
|
||||
%build
|
||||
%configure --disable-dependency-tracking
|
||||
make %{?_smp_mflags}
|
||||
%make_build
|
||||
|
||||
%install
|
||||
rm -rf $RPM_BUILD_ROOT
|
||||
make DESTDIR=$RPM_BUILD_ROOT install
|
||||
ln -s yacc $RPM_BUILD_ROOT/%{_bindir}/byacc
|
||||
ln -s yacc.1 $RPM_BUILD_ROOT/%{_mandir}/man1/byacc.1
|
||||
%make_install
|
||||
ln -s yacc %{buildroot}%{_bindir}/byacc
|
||||
ln -s yacc.1 %{buildroot}%{_mandir}/man1/byacc.1
|
||||
|
||||
%check
|
||||
echo ====================TESTING=========================
|
||||
make check
|
||||
echo ====================TESTING END=====================
|
||||
|
||||
%clean
|
||||
rm -rf $RPM_BUILD_ROOT
|
||||
|
||||
%files
|
||||
%doc ACKNOWLEDGEMENTS CHANGES NEW_FEATURES NOTES NO_WARRANTY README
|
||||
%defattr(-,root,root,-)
|
||||
%{_bindir}/yacc
|
||||
%{_bindir}/byacc
|
||||
%{_mandir}/man1/yacc.1*
|
||||
%{_mandir}/man1/byacc.1*
|
||||
|
||||
%changelog
|
||||
* Tue Sep 16 2025 Arjun Shankar <arjun@redhat.com> - 2.0.20241231-1
|
||||
- Rebase to byacc-2.0.20241231 (#2335136)
|
||||
|
||||
* Wed Jul 23 2025 Fedora Release Engineering <releng@fedoraproject.org> - 2.0.20240109-4
|
||||
- Rebuilt for https://fedoraproject.org/wiki/Fedora_43_Mass_Rebuild
|
||||
|
||||
* Thu Jan 16 2025 Fedora Release Engineering <releng@fedoraproject.org> - 2.0.20240109-3
|
||||
- Rebuilt for https://fedoraproject.org/wiki/Fedora_42_Mass_Rebuild
|
||||
|
||||
* Wed Jul 17 2024 Fedora Release Engineering <releng@fedoraproject.org> - 2.0.20240109-2
|
||||
- Rebuilt for https://fedoraproject.org/wiki/Fedora_41_Mass_Rebuild
|
||||
|
||||
* Fri Mar 01 2024 Arjun Shankar <arjun@redhat.com> - 2.0.20240109-1
|
||||
- Rebase to byacc-2.0.20240109 (#2257541)
|
||||
|
||||
* Tue Jan 23 2024 Fedora Release Engineering <releng@fedoraproject.org> - 2.0.20230521-5
|
||||
- Rebuilt for https://fedoraproject.org/wiki/Fedora_40_Mass_Rebuild
|
||||
|
||||
* Fri Jan 19 2024 Fedora Release Engineering <releng@fedoraproject.org> - 2.0.20230521-4
|
||||
- Rebuilt for https://fedoraproject.org/wiki/Fedora_40_Mass_Rebuild
|
||||
|
||||
* Wed Nov 08 2023 Arjun Shankar <arjun@redhat.com> - 2.0.20230521-3
|
||||
- Rebuilt to re-trigger automated bodhi (Fedora Updates System) tests
|
||||
|
||||
* Thu Oct 26 2023 Arjun Shankar <arjun@redhat.com> - 2.0.20230521-2
|
||||
- Analyse byacc sources for license information
|
||||
- Migrate License field to SPDX identifiers for
|
||||
https://fedoraproject.org/wiki/Changes/SPDX_Licenses_Phase_2
|
||||
(#2222081)
|
||||
|
||||
* Thu Jun 29 2023 Arjun Shankar <arjun@redhat.com> - 2.0.20230521-1
|
||||
- Rebase to byacc-2.0.20230521 (#2208910)
|
||||
|
||||
* Thu Feb 23 2023 Arjun Shankar <arjun@redhat.com> - 2.0.20230219-1
|
||||
- Rebase to byacc-2.0.20230219 (#2156901)
|
||||
|
||||
* Wed Jan 18 2023 Fedora Release Engineering <releng@fedoraproject.org> - 2.0.20221106-2
|
||||
- Rebuilt for https://fedoraproject.org/wiki/Fedora_38_Mass_Rebuild
|
||||
|
||||
* Tue Nov 29 2022 Arjun Shankar <arjun@redhat.com> - 2.0.20221106-1
|
||||
- Rebase to byacc-2.0-20221106 (#2141488)
|
||||
|
||||
* Wed Jul 20 2022 Fedora Release Engineering <releng@fedoraproject.org> - 2.0.20220128-2
|
||||
- Rebuilt for https://fedoraproject.org/wiki/Fedora_37_Mass_Rebuild
|
||||
|
||||
* Tue Feb 15 2022 Arjun Shankar <arjun@redhat.com> - 2.0-20220128-1
|
||||
- Rebase to byacc-2.0-20220128 (#2035590)
|
||||
|
||||
* Wed Jan 19 2022 Fedora Release Engineering <releng@fedoraproject.org> - 2.0.20210808-3
|
||||
- Rebuilt for https://fedoraproject.org/wiki/Fedora_36_Mass_Rebuild
|
||||
|
||||
* Mon Dec 13 2021 Arjun Shankar <arjun@redhat.com> - 2.0-20210808-2
|
||||
- Rebuild (#1962986)
|
||||
|
||||
* Mon Aug 30 2021 Arjun Shankar <arjun@redhat.com> - 2.0-20210808-1
|
||||
- Rebase to byacc-2.0-20210808 (#1962986)
|
||||
|
||||
* Wed Jul 21 2021 Fedora Release Engineering <releng@fedoraproject.org> - 2.0.20210328-2
|
||||
- Rebuilt for https://fedoraproject.org/wiki/Fedora_35_Mass_Rebuild
|
||||
|
||||
* Mon Apr 12 2021 Arjun Shankar <arjun@redhat.com> - 2.0-20210328-1
|
||||
- Rebase to byacc-2.0-20210328 (#1943961)
|
||||
|
||||
* Tue Jan 26 2021 Fedora Release Engineering <releng@fedoraproject.org> - 2.0.20210109-2
|
||||
- Rebuilt for https://fedoraproject.org/wiki/Fedora_34_Mass_Rebuild
|
||||
|
||||
* Tue Jan 12 2021 Arjun Shankar <arjun@redhat.com> - 2.0-20210109-1
|
||||
- Rebase to byacc-2.0-20210109 (#1914591)
|
||||
|
||||
* Tue Nov 10 2020 Arjun Shankar <arjun@redhat.com> - 2.0-20200910-1
|
||||
- Rebase to byacc-2.0-20200910 (#1877980)
|
||||
|
||||
* Sat Aug 01 2020 Fedora Release Engineering <releng@fedoraproject.org> - 1.9.20200330-3
|
||||
- Second attempt - Rebuilt for
|
||||
https://fedoraproject.org/wiki/Fedora_33_Mass_Rebuild
|
||||
|
||||
* Mon Jul 27 2020 Fedora Release Engineering <releng@fedoraproject.org> - 1.9.20200330-2
|
||||
- Rebuilt for https://fedoraproject.org/wiki/Fedora_33_Mass_Rebuild
|
||||
|
||||
* Wed Jul 8 2020 Arjun Shankar <arjun@redhat.com> - 1.9.20200330-1
|
||||
- Rebase to 20200330 (#1819022)
|
||||
|
||||
* Tue Jan 28 2020 Fedora Release Engineering <releng@fedoraproject.org> - 1.9.20191125-2
|
||||
- Rebuilt for https://fedoraproject.org/wiki/Fedora_32_Mass_Rebuild
|
||||
|
||||
* Wed Jan 8 2020 Arjun Shankar <arjun@redhat.com> - 1.9.20191125-1
|
||||
- Rebase to 20191125 (#1768314)
|
||||
|
||||
* Wed Jul 24 2019 Fedora Release Engineering <releng@fedoraproject.org> - 1.9.20190617-2
|
||||
- Rebuilt for https://fedoraproject.org/wiki/Fedora_31_Mass_Rebuild
|
||||
|
||||
* Wed Jun 26 2019 Arjun Shankar <arjun@redhat.com> - 1.9.20190617-1
|
||||
- Rebase to 20190617
|
||||
|
||||
* Thu Jan 31 2019 Fedora Release Engineering <releng@fedoraproject.org> - 1.9.20170709-7
|
||||
- Rebuilt for https://fedoraproject.org/wiki/Fedora_30_Mass_Rebuild
|
||||
|
||||
* Tue Jul 31 2018 Florian Weimer <fweimer@redhat.com> - 1.9.20170709-6
|
||||
- Rebuild with fixed binutils
|
||||
|
||||
* Thu Jul 12 2018 Fedora Release Engineering <releng@fedoraproject.org> - 1.9.20170709-5
|
||||
- Rebuilt for https://fedoraproject.org/wiki/Fedora_29_Mass_Rebuild
|
||||
|
||||
* Wed Feb 07 2018 Fedora Release Engineering <releng@fedoraproject.org> - 1.9.20170709-4
|
||||
- Rebuilt for https://fedoraproject.org/wiki/Fedora_28_Mass_Rebuild
|
||||
|
||||
* Wed Aug 02 2017 Fedora Release Engineering <releng@fedoraproject.org> - 1.9.20170709-3
|
||||
- Rebuilt for https://fedoraproject.org/wiki/Fedora_27_Binutils_Mass_Rebuild
|
||||
|
||||
* Wed Jul 26 2017 Fedora Release Engineering <releng@fedoraproject.org> - 1.9.20170709-2
|
||||
- Rebuilt for https://fedoraproject.org/wiki/Fedora_27_Mass_Rebuild
|
||||
|
||||
* Wed Jul 12 2017 Patsy Franklin <pfrankli@redhat.com> - 1.9.20170709-1
|
||||
- Rebase to 20170709
|
||||
|
||||
* Mon Feb 13 2017 Patsy Franklin <pfrankli@redhat.com> - 1.9.20170201-1
|
||||
- Rebase to 20170201
|
||||
|
||||
* Fri Feb 10 2017 Fedora Release Engineering <releng@fedoraproject.org> - 1.9.20161202-2
|
||||
- Rebuilt for https://fedoraproject.org/wiki/Fedora_26_Mass_Rebuild
|
||||
|
||||
* Fri Dec 09 2016 Patsy Franklin <pfrankli@redhat.com> - 1.9.20161202-1
|
||||
- Rebase to 20161202
|
||||
|
||||
* Mon Aug 01 2016 Patsy Franklin <pfrankli@redhat.com> - 1.9.20160606-1
|
||||
- Rebase to 20160606
|
||||
|
||||
* Fri May 20 2016 Patsy Franklin <pfrankli@redhat.com> - 1.9.20160324-1
|
||||
- Rebase to 20160324
|
||||
|
||||
|
|
|
|||
19
gating.yaml
Normal file
19
gating.yaml
Normal file
|
|
@ -0,0 +1,19 @@
|
|||
--- !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}
|
||||
--- !Policy
|
||||
product_versions:
|
||||
- rhel-8
|
||||
decision_context: osci_compose_gate
|
||||
rules:
|
||||
- !PassingTestCaseRule {test_case_name: baseos-ci.brew-build.tier1.functional}
|
||||
--- !Policy
|
||||
product_versions:
|
||||
- rhel-9
|
||||
decision_context: osci_compose_gate
|
||||
rules:
|
||||
- !PassingTestCaseRule {test_case_name: baseos-ci.brew-build.tier1.functional}
|
||||
5
plans/ci.fmf
Normal file
5
plans/ci.fmf
Normal file
|
|
@ -0,0 +1,5 @@
|
|||
summary: CI Gating Plan
|
||||
discover:
|
||||
how: fmf
|
||||
execute:
|
||||
how: tmt
|
||||
2
sources
2
sources
|
|
@ -1 +1 @@
|
|||
bde0463c6c03f059b1e6e9c5579cbe49 byacc-20160324.tgz
|
||||
SHA512 (byacc-20241231.tgz) = e4a9f50f1c9024bec697d2956f5fb431bef15a644a714adba8fa8fb2a5abd7aea6efb5d1b3fe5e775ec8cf6dae834da5533251fc77fb5c3f4e5b52ba60216498
|
||||
|
|
|
|||
63
tests/Regression/upstream-testsuite/Makefile
Normal file
63
tests/Regression/upstream-testsuite/Makefile
Normal file
|
|
@ -0,0 +1,63 @@
|
|||
# ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
|
||||
#
|
||||
# Makefile of /tools/byacc/Regression/upstream-testsuite
|
||||
# Description: Runs the upstream byacc testsuite.
|
||||
# Author: Arjun Shankar <ashankar@redhat.com>
|
||||
#
|
||||
# ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
|
||||
#
|
||||
# Copyright (c) 2016 Red Hat, Inc.
|
||||
#
|
||||
# This program is free software: you can redistribute it and/or
|
||||
# modify it under the terms of the GNU General Public License as
|
||||
# published by the Free Software Foundation, either version 2 of
|
||||
# the License, or (at your option) any later version.
|
||||
#
|
||||
# This program is distributed in the hope that it will be
|
||||
# useful, but WITHOUT ANY WARRANTY; without even the implied
|
||||
# warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR
|
||||
# PURPOSE. See the GNU General Public License for more details.
|
||||
#
|
||||
# You should have received a copy of the GNU General Public License
|
||||
# along with this program. If not, see http://www.gnu.org/licenses/.
|
||||
#
|
||||
# ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
|
||||
|
||||
export TEST=/tools/byacc/Regression/upstream-testsuite
|
||||
export TESTVERSION=1.0
|
||||
|
||||
BUILT_FILES=
|
||||
|
||||
FILES=$(METADATA) runtest.sh Makefile PURPOSE
|
||||
|
||||
.PHONY: all install download clean
|
||||
|
||||
run: $(FILES) build
|
||||
./runtest.sh
|
||||
|
||||
build: $(BUILT_FILES)
|
||||
test -x runtest.sh || chmod a+x runtest.sh
|
||||
|
||||
clean:
|
||||
rm -f *~ $(BUILT_FILES)
|
||||
|
||||
|
||||
include /usr/share/rhts/lib/rhts-make.include
|
||||
|
||||
$(METADATA): Makefile
|
||||
@echo "Owner: Arjun Shankar <ashankar@redhat.com>" > $(METADATA)
|
||||
@echo "Name: $(TEST)" >> $(METADATA)
|
||||
@echo "TestVersion: $(TESTVERSION)" >> $(METADATA)
|
||||
@echo "Path: $(TEST_DIR)" >> $(METADATA)
|
||||
@echo "Description: Runs the upstream byacc testsuite." >> $(METADATA)
|
||||
@echo "Type: Regression" >> $(METADATA)
|
||||
@echo "TestTime: 30m" >> $(METADATA)
|
||||
@echo "RunFor: byacc" >> $(METADATA)
|
||||
@echo "Requires: byacc gcc glibc-devel glibc-headers make sed rpm-build yum-utils" >> $(METADATA)
|
||||
@echo "Priority: Normal" >> $(METADATA)
|
||||
@echo "License: GPLv2+" >> $(METADATA)
|
||||
@echo "Confidential: no" >> $(METADATA)
|
||||
@echo "Destructive: no" >> $(METADATA)
|
||||
@echo "Releases: -RHEL4 -RHELClient5 -RHELServer5" >> $(METADATA)
|
||||
|
||||
rhts-lint $(METADATA)
|
||||
3
tests/Regression/upstream-testsuite/PURPOSE
Normal file
3
tests/Regression/upstream-testsuite/PURPOSE
Normal file
|
|
@ -0,0 +1,3 @@
|
|||
PURPOSE of /tools/byacc/Regression/upstream-testsuite
|
||||
Description: Runs the upstream byacc testsuite.
|
||||
Author: Arjun Shankar <ashankar@redhat.com>
|
||||
19
tests/Regression/upstream-testsuite/main.fmf
Normal file
19
tests/Regression/upstream-testsuite/main.fmf
Normal file
|
|
@ -0,0 +1,19 @@
|
|||
summary: Runs the upstream byacc testsuite.
|
||||
description: ''
|
||||
contact: Arjun Shankar <ashankar@redhat.com>
|
||||
component:
|
||||
- byacc
|
||||
test: ./runtest.sh
|
||||
framework: beakerlib
|
||||
recommend:
|
||||
- byacc
|
||||
- gcc
|
||||
- glibc-devel
|
||||
- glibc-headers
|
||||
- make
|
||||
- sed
|
||||
- rpm-build
|
||||
- yum-utils
|
||||
duration: 30m
|
||||
extra-summary: /tools/byacc/Regression/upstream-testsuite
|
||||
extra-task: /tools/byacc/Regression/upstream-testsuite
|
||||
73
tests/Regression/upstream-testsuite/runtest.sh
Executable file
73
tests/Regression/upstream-testsuite/runtest.sh
Executable file
|
|
@ -0,0 +1,73 @@
|
|||
#!/bin/bash
|
||||
# vim: dict+=/usr/share/beakerlib/dictionary.vim cpt=.,w,b,u,t,i,k
|
||||
# ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
|
||||
#
|
||||
# runtest.sh of /tools/byacc/Regression/upstream-testsuite
|
||||
# Description: Runs the upstream byacc testsuite.
|
||||
# Author: Arjun Shankar <ashankar@redhat.com>
|
||||
#
|
||||
# ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
|
||||
#
|
||||
# Copyright (c) 2016 Red Hat, Inc.
|
||||
#
|
||||
# This program is free software: you can redistribute it and/or
|
||||
# modify it under the terms of the GNU General Public License as
|
||||
# published by the Free Software Foundation, either version 2 of
|
||||
# the License, or (at your option) any later version.
|
||||
#
|
||||
# This program is distributed in the hope that it will be
|
||||
# useful, but WITHOUT ANY WARRANTY; without even the implied
|
||||
# warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR
|
||||
# PURPOSE. See the GNU General Public License for more details.
|
||||
#
|
||||
# You should have received a copy of the GNU General Public License
|
||||
# along with this program. If not, see http://www.gnu.org/licenses/.
|
||||
#
|
||||
# ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
|
||||
|
||||
# Include Beaker environment
|
||||
. /usr/share/beakerlib/beakerlib.sh || exit 1
|
||||
|
||||
PACKAGE="byacc"
|
||||
REQUIRES="byacc gcc glibc-devel make sed rpm-build"
|
||||
MY_USER="byacctestuser"
|
||||
DOTEST=$(mktemp)
|
||||
|
||||
cat > $DOTEST <<-EOF
|
||||
#!/bin/bash
|
||||
set -xe
|
||||
_BASEDIR=\$1
|
||||
_TMP=\$(mktemp -d)
|
||||
rpm --define="_topdir \$_TMP" -Uvh \$_BASEDIR/byacc*.src.rpm
|
||||
rpmbuild --define="_topdir \$_TMP" -bc \$_TMP/SPECS/byacc.spec
|
||||
pushd \$(find \$_TMP/BUILD/ -name yacc -type f -exec dirname {} \;)
|
||||
# In case the test fails, the existcode of make check is non-zero.
|
||||
# In such case this script fails too because of set -e above.
|
||||
make check
|
||||
popd
|
||||
set -xe
|
||||
EOF
|
||||
|
||||
rlJournalStart
|
||||
rlPhaseStartSetup
|
||||
rlRun "useradd $MY_USER" 0,9
|
||||
rlRun "chown $MY_USER:$MY_USER $DOTEST"
|
||||
rlAssertRpm --all
|
||||
rlRun "TMP=\$(mktemp -d)"
|
||||
rlRun "chmod a+rx $TMP"
|
||||
rlRun "pushd $TMP"
|
||||
rlFetchSrcForInstalled $PACKAGE
|
||||
rlRun "chmod a+r byacc*.src.rpm"
|
||||
rlPhaseEnd
|
||||
|
||||
rlPhaseStartTest
|
||||
rlRun "su - $MY_USER -c 'bash $DOTEST $(pwd)'"
|
||||
rlPhaseEnd
|
||||
|
||||
rlPhaseStartCleanup
|
||||
rlRun "popd"
|
||||
rlRun "rm -rf $TMP $DOTEST"
|
||||
rlRun "userdel -f $MY_USER"
|
||||
rlPhaseEnd
|
||||
rlJournalPrintText
|
||||
rlJournalEnd
|
||||
Loading…
Add table
Add a link
Reference in a new issue