forked from pool/bison
Accepting request 617138 from home:AndreasStieger:branches:devel:tools:compiler
bison 3.0.5 OBS-URL: https://build.opensuse.org/request/show/617138 OBS-URL: https://build.opensuse.org/package/show/devel:tools:compiler/bison?expand=0&rev=50
This commit is contained in:
parent
6916ff5c53
commit
e097fbca20
@ -1,3 +0,0 @@
|
|||||||
version https://git-lfs.github.com/spec/v1
|
|
||||||
oid sha256:a72428c7917bdf9fa93cb8181c971b6e22834125848cf1d03ce10b1bb0716fe1
|
|
||||||
size 1973796
|
|
@ -1,7 +0,0 @@
|
|||||||
-----BEGIN PGP SIGNATURE-----
|
|
||||||
Version: GnuPG v1
|
|
||||||
|
|
||||||
iEYEABECAAYFAlTCU3gACgkQDdyqMnjVJk4b9gCfVqLxw16p7bcjQ2dIaXo/iz9/
|
|
||||||
yRMAnRm8fwB9rwbjvtnjib6L3Pe8owMC
|
|
||||||
=nPY9
|
|
||||||
-----END PGP SIGNATURE-----
|
|
3
bison-3.0.5.tar.xz
Normal file
3
bison-3.0.5.tar.xz
Normal file
@ -0,0 +1,3 @@
|
|||||||
|
version https://git-lfs.github.com/spec/v1
|
||||||
|
oid sha256:075cef2e814642e30e10e8155e93022e4a91ca38a65aa1d5467d4e969f97f338
|
||||||
|
size 1954868
|
6
bison-3.0.5.tar.xz.sig
Normal file
6
bison-3.0.5.tar.xz.sig
Normal file
@ -0,0 +1,6 @@
|
|||||||
|
-----BEGIN PGP SIGNATURE-----
|
||||||
|
|
||||||
|
iEYEABECAAYFAlsLkJUACgkQDdyqMnjVJk7xLQCfRdoDCePYtQoUB2A45c9N/EQU
|
||||||
|
tYoAnA2HjG7NiF2qyLrZZbKO6Li8mplU
|
||||||
|
=LR2v
|
||||||
|
-----END PGP SIGNATURE-----
|
@ -1,3 +1,14 @@
|
|||||||
|
-------------------------------------------------------------------
|
||||||
|
Fri Jun 15 19:11:25 UTC 2018 - astieger@suse.com
|
||||||
|
|
||||||
|
- bison 3.0.5:
|
||||||
|
* C++: Fix support of 'syntax_error'
|
||||||
|
* Fix various C++ warnings
|
||||||
|
* Fix issues with C++ parsers where out-of-bounds errors could
|
||||||
|
happen when a rule with an empty ride-hand side raises a
|
||||||
|
syntax error
|
||||||
|
- drop gcc7-fix.patch, no longer required
|
||||||
|
|
||||||
-------------------------------------------------------------------
|
-------------------------------------------------------------------
|
||||||
Fri Dec 16 09:45:23 UTC 2016 - mliska@suse.cz
|
Fri Dec 16 09:45:23 UTC 2016 - mliska@suse.cz
|
||||||
|
|
||||||
|
21
bison.spec
21
bison.spec
@ -1,7 +1,7 @@
|
|||||||
#
|
#
|
||||||
# spec file for package bison
|
# spec file for package bison
|
||||||
#
|
#
|
||||||
# Copyright (c) 2017 SUSE LINUX GmbH, Nuernberg, Germany.
|
# Copyright (c) 2018 SUSE LINUX GmbH, Nuernberg, Germany.
|
||||||
#
|
#
|
||||||
# All modifications and additions to the file contributed by third parties
|
# All modifications and additions to the file contributed by third parties
|
||||||
# remain the property of their copyright owners, unless otherwise agreed
|
# remain the property of their copyright owners, unless otherwise agreed
|
||||||
@ -17,26 +17,24 @@
|
|||||||
|
|
||||||
|
|
||||||
Name: bison
|
Name: bison
|
||||||
Version: 3.0.4
|
Version: 3.0.5
|
||||||
Release: 0
|
Release: 0
|
||||||
Summary: The GNU Parser Generator
|
Summary: The GNU Parser Generator
|
||||||
License: GPL-3.0+
|
License: GPL-3.0-or-later
|
||||||
Group: Development/Languages/C and C++
|
Group: Development/Languages/C and C++
|
||||||
Url: http://www.gnu.org/software/bison/bison.html
|
URL: http://www.gnu.org/software/bison/bison.html
|
||||||
Source0: http://ftp.gnu.org/gnu/%{name}/%{name}-%{version}.tar.xz
|
Source0: http://ftp.gnu.org/gnu/%{name}/%{name}-%{version}.tar.xz
|
||||||
Source1: http://ftp.gnu.org/gnu/%{name}/%{name}-%{version}.tar.xz.sig
|
Source1: http://ftp.gnu.org/gnu/%{name}/%{name}-%{version}.tar.xz.sig
|
||||||
Source2: %{name}.keyring
|
Source2: %{name}.keyring
|
||||||
Source3: baselibs.conf
|
Source3: baselibs.conf
|
||||||
Patch1: gcc7-fix.patch
|
|
||||||
BuildRequires: autoconf
|
BuildRequires: autoconf
|
||||||
BuildRequires: flex
|
BuildRequires: flex
|
||||||
BuildRequires: gcc-c++
|
BuildRequires: gcc-c++
|
||||||
BuildRequires: xz
|
BuildRequires: xz
|
||||||
Requires: m4
|
Requires: m4
|
||||||
Requires(post): %{install_info_prereq}
|
Requires(post): %{install_info_prereq}
|
||||||
Requires(preun): %{install_info_prereq}
|
Requires(preun): %{install_info_prereq}
|
||||||
Recommends: %{name}-lang
|
Recommends: %{name}-lang
|
||||||
BuildRoot: %{_tmppath}/%{name}-%{version}-build
|
|
||||||
|
|
||||||
%description
|
%description
|
||||||
Bison is a parser generator similar to yacc(1).
|
Bison is a parser generator similar to yacc(1).
|
||||||
@ -45,7 +43,6 @@ Bison is a parser generator similar to yacc(1).
|
|||||||
|
|
||||||
%prep
|
%prep
|
||||||
%setup -q
|
%setup -q
|
||||||
%patch1
|
|
||||||
|
|
||||||
%build
|
%build
|
||||||
%configure --disable-silent-rules \
|
%configure --disable-silent-rules \
|
||||||
@ -59,11 +56,10 @@ make %{?_smp_mflags}
|
|||||||
make %{?_smp_mflags} check
|
make %{?_smp_mflags} check
|
||||||
|
|
||||||
%install
|
%install
|
||||||
make DESTDIR=%{buildroot} install %{?_smp_mflags}
|
%make_install
|
||||||
%find_lang %{name} --all-name
|
%find_lang %{name} --all-name
|
||||||
|
|
||||||
%files
|
%files
|
||||||
%defattr(-,root,root)
|
|
||||||
%{_docdir}/%{name}
|
%{_docdir}/%{name}
|
||||||
%dir %{_datadir}/aclocal
|
%dir %{_datadir}/aclocal
|
||||||
%{_bindir}/bison
|
%{_bindir}/bison
|
||||||
@ -73,11 +69,10 @@ make DESTDIR=%{buildroot} install %{?_smp_mflags}
|
|||||||
%dir %{_datadir}/aclocal
|
%dir %{_datadir}/aclocal
|
||||||
%{_datadir}/aclocal/bison-i18n.m4
|
%{_datadir}/aclocal/bison-i18n.m4
|
||||||
%{_infodir}/bison.info*.gz
|
%{_infodir}/bison.info*.gz
|
||||||
%{_mandir}/man1/bison.1.gz
|
%{_mandir}/man1/bison.1%{?ext_man}
|
||||||
%{_mandir}/man1/yacc.1.gz
|
%{_mandir}/man1/yacc.1%{?ext_man}
|
||||||
|
|
||||||
%files lang -f %{name}.lang
|
%files lang -f %{name}.lang
|
||||||
%defattr(-,root,root)
|
|
||||||
|
|
||||||
%post
|
%post
|
||||||
%install_info --info-dir=%{_infodir} %{_infodir}/%{name}.info.gz
|
%install_info --info-dir=%{_infodir} %{_infodir}/%{name}.info.gz
|
||||||
|
@ -1,13 +0,0 @@
|
|||||||
--- /home/marxin/Programming/bison-3.0.4/tests/c++.at 2015-01-20 20:39:51.000000000 +0100
|
|
||||||
+++ tests/c++.at 2016-12-14 10:58:00.046437207 +0100
|
|
||||||
@@ -197,6 +197,10 @@
|
|
||||||
#include <list>
|
|
||||||
#include <string>
|
|
||||||
typedef std::list<std::string> strings_type;
|
|
||||||
+namespace std
|
|
||||||
+{
|
|
||||||
+ std::ostream& operator<<(std::ostream& o, const strings_type& s);
|
|
||||||
+}
|
|
||||||
}
|
|
||||||
|
|
||||||
%code // code for the .cc file
|
|
Loading…
Reference in New Issue
Block a user