forked from pool/bison
Accepting request 705886 from devel:tools:compiler
- Update to version 3.4.1 * Multiple changes, mostly bugfixes - see provided NEWS for details - Do not run any tests in parallel - this caused random failures OBS-URL: https://build.opensuse.org/request/show/705886 OBS-URL: https://build.opensuse.org/package/show/openSUSE:Factory/bison?expand=0&rev=43
This commit is contained in:
commit
b64d2535ee
@ -1,3 +0,0 @@
|
||||
version https://git-lfs.github.com/spec/v1
|
||||
oid sha256:039ee45b61d95e5003e7e8376f9080001b4066ff357bde271b7faace53b9d804
|
||||
size 2108612
|
@ -1,6 +0,0 @@
|
||||
-----BEGIN PGP SIGNATURE-----
|
||||
|
||||
iF0EABECAB0WIQR9+EN0se4fl2S74l0N3KoyeNUmTgUCXFbzWAAKCRAN3KoyeNUm
|
||||
Tj+LAJ9sUuql35x58+OAqKWSZfSnOuhDkgCfecGkOmwfVsR00X5IX68HCAdqeL0=
|
||||
=tE4b
|
||||
-----END PGP SIGNATURE-----
|
3
bison-3.4.1.tar.xz
Normal file
3
bison-3.4.1.tar.xz
Normal file
@ -0,0 +1,3 @@
|
||||
version https://git-lfs.github.com/spec/v1
|
||||
oid sha256:27159ac5ebf736dffd5636fd2cd625767c9e437de65baa63cb0de83570bd820d
|
||||
size 2198020
|
6
bison-3.4.1.tar.xz.sig
Normal file
6
bison-3.4.1.tar.xz.sig
Normal file
@ -0,0 +1,6 @@
|
||||
-----BEGIN PGP SIGNATURE-----
|
||||
|
||||
iF0EABECAB0WIQR9+EN0se4fl2S74l0N3KoyeNUmTgUCXOV/9gAKCRAN3KoyeNUm
|
||||
ToHjAJsEQNyVLvTpZamkFVz29PJfb5n/gwCfWbG6OM3AoxSORvikDXyxvZcChQ8=
|
||||
=wBJ7
|
||||
-----END PGP SIGNATURE-----
|
@ -1,3 +1,11 @@
|
||||
-------------------------------------------------------------------
|
||||
Tue May 28 08:43:17 UTC 2019 - Martin Pluskal <mpluskal@suse.com>
|
||||
|
||||
- Update to version 3.4.1
|
||||
* Multiple changes, mostly bugfixes - see provided NEWS for
|
||||
details
|
||||
- Do not run any tests in parallel - this caused random failures
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Sat Feb 16 06:45:57 UTC 2019 - Bernhard Wiedemann <bwiedemann@suse.com>
|
||||
|
||||
|
23
bison.spec
23
bison.spec
@ -17,7 +17,7 @@
|
||||
|
||||
|
||||
Name: bison
|
||||
Version: 3.3.2
|
||||
Version: 3.4.1
|
||||
Release: 0
|
||||
Summary: The GNU Parser Generator
|
||||
License: GPL-3.0-or-later
|
||||
@ -55,7 +55,7 @@ Bison is a parser generator similar to yacc(1).
|
||||
%if 0%{?do_profiling}
|
||||
make %{?_smp_mflags} CFLAGS="%{optflags} %{cflags_profile_generate}" V=1
|
||||
# non-parallel profiling for reproducible results https://bugzilla.opensuse.org/show_bug.cgi?id=1040589
|
||||
make CFLAGS="%{optflags}" check
|
||||
make --jobs=1 CFLAGS="%{optflags}" check
|
||||
make %{?_smp_mflags} clean
|
||||
make %{?_smp_mflags} CFLAGS="%{optflags} %{cflags_profile_feedback}" V=1
|
||||
%else
|
||||
@ -63,12 +63,21 @@ Bison is a parser generator similar to yacc(1).
|
||||
%endif
|
||||
|
||||
%check
|
||||
make %{?_smp_mflags} check
|
||||
# Tests dont work reliably in parallel
|
||||
make --jobs=1 check
|
||||
|
||||
%install
|
||||
%make_install
|
||||
%find_lang %{name} --all-name
|
||||
|
||||
%post
|
||||
%install_info --info-dir=%{_infodir} %{_infodir}/%{name}.info.gz
|
||||
|
||||
%preun
|
||||
%install_info_delete --info-dir=%{_infodir} %{_infodir}/%{name}.info.gz
|
||||
|
||||
%files lang -f %{name}.lang
|
||||
|
||||
%files
|
||||
%{_docdir}/%{name}
|
||||
%dir %{_datadir}/aclocal
|
||||
@ -82,12 +91,4 @@ make %{?_smp_mflags} check
|
||||
%{_mandir}/man1/bison.1%{?ext_man}
|
||||
%{_mandir}/man1/yacc.1%{?ext_man}
|
||||
|
||||
%files lang -f %{name}.lang
|
||||
|
||||
%post
|
||||
%install_info --info-dir=%{_infodir} %{_infodir}/%{name}.info.gz
|
||||
|
||||
%preun
|
||||
%install_info_delete --info-dir=%{_infodir} %{_infodir}/%{name}.info.gz
|
||||
|
||||
%changelog
|
||||
|
Loading…
Reference in New Issue
Block a user