2015-01-23 11:36:49 +01:00
|
|
|
-------------------------------------------------------------------
|
|
|
|
Thu Jan 22 20:06:50 UTC 2015 - p.drouand@gmail.com
|
|
|
|
|
|
|
|
- Update to version 3.0.3
|
|
|
|
Bug fixes
|
|
|
|
* C++ with Variants (lalr1.cc)
|
|
|
|
Problems with %destructor and '%define parse.assert' have been fixed.
|
|
|
|
* Named %union support (yacc.c, glr.c)
|
|
|
|
Bison 3.0 introduced a regression on named %union such as
|
|
|
|
%union foo { int ival; };
|
|
|
|
The possibility to use a name was introduced "for Yacc compatibility".
|
|
|
|
It is however not required by POSIX Yacc, and its usefulness is not clear.
|
|
|
|
* %define api.value.type union with %defines (yacc.c, glr.c)
|
|
|
|
The C parsers were broken when %defines was used together with "%define
|
|
|
|
api.value.type union".
|
|
|
|
* Redeclarations are reported in proper order
|
|
|
|
Documentation
|
|
|
|
* Bison now installs various files in its docdir (which defaults to
|
|
|
|
'/usr/local/share/doc/bison'), including the three fully blown examples
|
|
|
|
extracted from the documentation:
|
|
|
|
- rpcalc
|
|
|
|
Reverse polish calculator, a simple introductory example.
|
|
|
|
- mfcalc
|
|
|
|
Multi-function Calc, a calculator with memory and functions and located
|
|
|
|
error messages.
|
|
|
|
- calc++
|
|
|
|
a calculator in C++ using variant support and token constructors.
|
|
|
|
- Split out translation files
|
|
|
|
- Pass "--docdir=%{_docdir}/%{name}" and do not perform %doc anymore
|
|
|
|
|
|
|
|
|
2013-09-28 10:18:17 +02:00
|
|
|
-------------------------------------------------------------------
|
2015-01-01 14:05:03 +01:00
|
|
|
Wed Dec 24 11:39:10 UTC 2014 - p.drouand@gmail.com
|
|
|
|
|
|
|
|
- Update to version 3.0.2
|
|
|
|
+ Generated source files when errors are reported
|
|
|
|
+ %empty is used in reports
|
|
|
|
+ When C++ variant support is enabled, an error triggered via YYERROR,
|
|
|
|
but not caught via error recovery, resulted in a double deletion.
|
|
|
|
- Remove location-eof-check.patch; merged on upstream release
|
|
|
|
|
|
|
|
-------------------------------------------------------------------
|
2013-09-28 10:18:17 +02:00
|
|
|
Fri Sep 27 20:13:38 UTC 2013 - schwab@linux-m68k.org
|
|
|
|
|
|
|
|
- location-eof-check.patch: Fix broken EOF check
|
|
|
|
|
2013-09-05 13:03:51 +02:00
|
|
|
-------------------------------------------------------------------
|
|
|
|
Sat Aug 3 02:24:50 UTC 2013 - crrodriguez@opensuse.org
|
|
|
|
|
|
|
|
- Update to bision 3.0
|
|
|
|
* deep overhaul/improvements of the diagnostics
|
|
|
|
* more versatile means to describe semantic value types,
|
|
|
|
including the ability to store genuine C++ objects in C++ parsers
|
|
|
|
* push-parser interface extended to Java
|
|
|
|
* parse-time semantic predicates for GLR parsers.
|
|
|
|
* This is a major update, please see https://lwn.net/Articles/561990/
|
|
|
|
for all details and backward incompatible changes.
|
|
|
|
|
2013-07-09 15:13:15 +02:00
|
|
|
-------------------------------------------------------------------
|
|
|
|
Tue Jul 9 07:53:58 UTC 2013 - schwab@suse.de
|
|
|
|
|
|
|
|
- Override broken configure checks
|
|
|
|
|
2013-03-21 10:21:22 +01:00
|
|
|
-------------------------------------------------------------------
|
|
|
|
Thu Mar 21 07:52:06 UTC 2013 - mmeister@suse.com
|
|
|
|
|
|
|
|
- Added url as source.
|
|
|
|
Please see http://en.opensuse.org/SourceUrls
|
|
|
|
|
2013-02-21 22:20:46 +01:00
|
|
|
-------------------------------------------------------------------
|
|
|
|
Wed Feb 6 06:11:30 UTC 2013 - adrian@suse.com
|
|
|
|
|
|
|
|
- bison update to 2.7
|
|
|
|
* Changes in the format of error messages
|
|
|
|
* New format for error reports: carets
|
|
|
|
* New value for %define variable: api.pure full
|
|
|
|
* New %define variable: api.location.type (glr.cc, lalr1.cc, lalr1.java)
|
|
|
|
* Exception safety (lalr1.cc)
|
|
|
|
* Graph improvements in DOT and XSLT
|
|
|
|
* %language is no longer an experimental feature.
|
|
|
|
|
2012-11-15 13:16:24 +01:00
|
|
|
-------------------------------------------------------------------
|
|
|
|
Mon Nov 12 16:23:50 UTC 2012 - crrodriguez@opensuse.org
|
|
|
|
|
|
|
|
- bison 2.6.5
|
|
|
|
* Incorrect definitions of YY_, issued by yacc.c when no parser header is
|
|
|
|
generated, are removed.
|
|
|
|
* Fix compiler warnings in the generated parser (yacc.c, glr.c)
|
|
|
|
* Warnings about uninitialized yylval and/or yylloc for push parsers with a
|
|
|
|
pure interface have been fixed for GCC 4.0 up to 4.8, and Clang 2.9 to
|
|
|
|
3.2.
|
|
|
|
|
2012-10-10 21:43:22 +02:00
|
|
|
-------------------------------------------------------------------
|
|
|
|
Sun Sep 23 17:27:27 UTC 2012 - nmo.marques@gmail.com
|
|
|
|
|
|
|
|
- Update to version 2.6.2:
|
|
|
|
+ Buffer overruns, complaints from Flex, and portability issues
|
|
|
|
in the test suite have been fixed.
|
|
|
|
+ Changelist too long to fit here, see NEWS
|
|
|
|
- Source format is now .xz
|
|
|
|
- Remove bison-stdio.in.patch: seems upstreamed
|
|
|
|
- Add 'xz' to BuildRequires
|
|
|
|
|
2012-08-02 13:30:16 +02:00
|
|
|
-------------------------------------------------------------------
|
|
|
|
Tue Jul 17 18:55:21 UTC 2012 - aj@suse.de
|
|
|
|
|
|
|
|
- Fix build with missing gets declaration (glibc 2.16)
|
|
|
|
|
2012-01-09 11:01:56 +01:00
|
|
|
-------------------------------------------------------------------
|
|
|
|
Mon Jan 9 09:54:18 UTC 2012 - aj@suse.de
|
|
|
|
|
|
|
|
- Own /usr/share/aclocal
|
|
|
|
|
2011-09-17 23:18:15 +02:00
|
|
|
-------------------------------------------------------------------
|
|
|
|
Sat Sep 17 19:52:28 UTC 2011 - jengelh@medozas.de
|
|
|
|
|
|
|
|
- Remove redundant tags/sections from specfile
|
|
|
|
|
2010-02-11 19:13:12 +01:00
|
|
|
-------------------------------------------------------------------
|
2011-06-16 17:21:24 +02:00
|
|
|
Tue Jun 7 03:06:12 UTC 2011 - crrodriguez@opensuse.org
|
|
|
|
|
|
|
|
- Update to version 2.5
|
|
|
|
- Fixes GCC 4.6 warnings
|
|
|
|
- Changelist too long to fit here, see NEWS.
|
|
|
|
|
|
|
|
-------------------------------------------------------------------
|
2010-02-11 19:13:12 +01:00
|
|
|
Wed Feb 10 16:57:10 CET 2010 - rguenther@suse.de
|
|
|
|
|
|
|
|
- Update to version 2.4.1.
|
|
|
|
- Apply fix for GCC 4.5 compliance.
|
|
|
|
- Apply fix for unsupported output file names.
|
|
|
|
|
|
|
|
-------------------------------------------------------------------
|
|
|
|
Mon Feb 8 10:59:57 UTC 2010 - coolo@novell.com
|
|
|
|
|
|
|
|
- package yacc.1 too
|
|
|
|
|
|
|
|
-------------------------------------------------------------------
|
|
|
|
Fri Jan 29 12:42:41 UTC 2010 - coolo@novell.com
|
|
|
|
|
|
|
|
- fix patch name
|
|
|
|
|
|
|
|
-------------------------------------------------------------------
|
|
|
|
Tue Jan 26 11:53:49 CET 2010 - mmarek@suse.cz
|
|
|
|
|
|
|
|
- updated to 2.4
|
|
|
|
* new experimental %language directive to select the used
|
|
|
|
skeleton and output file name
|
|
|
|
* experimantal Java parser support
|
|
|
|
* support for push parsers
|
|
|
|
* bison now removes unreachable states (this might require
|
|
|
|
updates to %expect and %expect-rr directives)
|
|
|
|
* support for per-type and default %destructor's and %printer's
|
|
|
|
* except for LALR(1) parsers in C with POSIX Yacc emulation enabled
|
|
|
|
(with `-y', `--yacc', or `%yacc'), Bison no longer generates
|
|
|
|
#define statements for associating token numbers with token
|
|
|
|
names
|
|
|
|
* For a detailed list of fixes and new features, see
|
|
|
|
/usr/share/doc/packages/bison/NEWS
|
|
|
|
|
|
|
|
-------------------------------------------------------------------
|
|
|
|
Sat Dec 12 20:36:01 CET 2009 - jengelh@medozas.de
|
|
|
|
|
|
|
|
- enable parallel building
|
|
|
|
- add baselibs.conf as a source
|
|
|
|
|
2008-12-15 12:19:37 +01:00
|
|
|
-------------------------------------------------------------------
|
|
|
|
Wed Dec 10 12:34:56 CET 2008 - olh@suse.de
|
|
|
|
|
|
|
|
- use Obsoletes: -XXbit only for ppc64 to help solver during distupgrade
|
|
|
|
(bnc#437293)
|
|
|
|
|
2008-11-02 15:34:45 +01:00
|
|
|
-------------------------------------------------------------------
|
|
|
|
Thu Oct 30 12:34:56 CET 2008 - olh@suse.de
|
|
|
|
|
|
|
|
- obsolete old -XXbit packages (bnc#437293)
|
|
|
|
|
2007-01-26 17:44:16 +01:00
|
|
|
-------------------------------------------------------------------
|
2008-04-10 13:08:53 +02:00
|
|
|
Thu Apr 10 12:54:45 CEST 2008 - ro@suse.de
|
|
|
|
|
|
|
|
- added baselibs.conf file to build xxbit packages
|
|
|
|
for multilib support
|
|
|
|
|
|
|
|
-------------------------------------------------------------------
|
2007-01-26 17:44:16 +01:00
|
|
|
Wed Jan 24 13:31:57 CET 2007 - mmarek@suse.cz
|
|
|
|
|
|
|
|
- use more $RPM_OPT_FLAGS
|
|
|
|
|
2006-12-19 00:15:24 +01:00
|
|
|
-------------------------------------------------------------------
|
|
|
|
Mon Jun 26 15:21:48 CEST 2006 - mmarek@suse.cz
|
|
|
|
|
|
|
|
- updated to 2.3
|
|
|
|
* all generated scanners can be used in non-free programs
|
|
|
|
(previously, only LALR(1) scanners in C had the exception)
|
|
|
|
* multiple %union declarations can be used, they will be
|
|
|
|
concatenated
|
|
|
|
* unused values with a %destructor are warned about
|
|
|
|
* %destructors are not run for values in the action that called
|
|
|
|
YYABORT/YYACCEPT/YYERROR
|
|
|
|
* unsatisfied number of %expect/%expect-rr conflicts is an error,
|
|
|
|
not warning
|
|
|
|
* ability to depend on a minimal bison version via
|
|
|
|
%require "VERSION"
|
|
|
|
* no global YYSTYPE and YYLTYPE macros and token names in C++
|
|
|
|
scanners -- yy::parser::semantic_type, yy::parser::location_type
|
|
|
|
and yy::parser::token::<token> should be used instead
|
|
|
|
(can be reverted by '%define "global_tokens_and_yystype" "1"')
|
|
|
|
|
|
|
|
-------------------------------------------------------------------
|
|
|
|
Wed Jan 25 21:30:01 CET 2006 - mls@suse.de
|
|
|
|
|
|
|
|
- converted neededforbuild to BuildRequires
|
|
|
|
|
|
|
|
-------------------------------------------------------------------
|
|
|
|
Wed Dec 21 14:09:04 CET 2005 - mmarek@suse.cz
|
|
|
|
|
|
|
|
- push the 2.1 update into factory
|
|
|
|
|
|
|
|
-------------------------------------------------------------------
|
|
|
|
Thu Dec 15 10:18:23 CET 2005 - mmarek@suse.cz
|
|
|
|
|
|
|
|
- update to 2.1
|
|
|
|
|
|
|
|
-------------------------------------------------------------------
|
|
|
|
Fri Nov 05 13:44:55 CET 2004 - tcrhak@suse.cz
|
|
|
|
|
|
|
|
- fixed wrong variable name (bug #47961, patch output)
|
|
|
|
|
|
|
|
-------------------------------------------------------------------
|
|
|
|
Mon Jan 26 14:17:04 CET 2004 - kukuk@suse.de
|
|
|
|
|
|
|
|
- Readd m4 requirement
|
|
|
|
|
|
|
|
-------------------------------------------------------------------
|
|
|
|
Sun Jan 11 09:54:44 CET 2004 - adrian@suse.de
|
|
|
|
|
|
|
|
- build as user
|
|
|
|
|
|
|
|
-------------------------------------------------------------------
|
|
|
|
Tue Jan 06 11:37:15 CET 2004 - tcrhak@suse.cz
|
|
|
|
|
|
|
|
- update to version 1.875
|
|
|
|
- use %{_libdir}
|
|
|
|
- run the testsuite
|
|
|
|
- applied Michael Matz's patch
|
|
|
|
- GCC does not support attributes on label in C++
|
|
|
|
|
|
|
|
-------------------------------------------------------------------
|
|
|
|
Fri Sep 12 19:11:55 CEST 2003 - tcrhak@suse.cz
|
|
|
|
|
|
|
|
- require m4, issue an error message and return a non-zero
|
|
|
|
exit code if m4 binary is not found [bug #30653], patch readpipe
|
|
|
|
|
|
|
|
-------------------------------------------------------------------
|
|
|
|
Thu Apr 24 12:20:23 CEST 2003 - ro@suse.de
|
|
|
|
|
|
|
|
- fix install_info --delete call and move from preun to postun
|
|
|
|
|
|
|
|
-------------------------------------------------------------------
|
|
|
|
Fri Mar 07 16:47:08 CET 2003 - tcrhak@suse.cz
|
|
|
|
|
|
|
|
- Improved fix for the scaner: treat @ and initial comments
|
|
|
|
the right way
|
|
|
|
|
|
|
|
-------------------------------------------------------------------
|
|
|
|
Fri Feb 7 01:16:20 CET 2003 - ro@suse.de
|
|
|
|
|
|
|
|
- added install_info macros
|
|
|
|
|
|
|
|
-------------------------------------------------------------------
|
|
|
|
Sat Nov 9 19:38:34 CET 2002 - aj@suse.de
|
|
|
|
|
|
|
|
- Fix one more problem encountered in building gcc with $
|
|
|
|
(all work done by jh@suse.cz).
|
|
|
|
|
|
|
|
-------------------------------------------------------------------
|
|
|
|
Sat Nov 9 18:16:35 CET 2002 - aj@suse.de
|
|
|
|
|
|
|
|
- Fix last patch to handle $ in comments correctly.
|
|
|
|
|
|
|
|
-------------------------------------------------------------------
|
|
|
|
Sat Nov 9 14:53:50 CET 2002 - aj@suse.de
|
|
|
|
|
|
|
|
- Fix handling of $ in scan-gram.
|
|
|
|
|
|
|
|
-------------------------------------------------------------------
|
|
|
|
Wed Nov 06 15:36:22 CET 2002 - tcrhak@suse.cz
|
|
|
|
|
|
|
|
- update to version 1.75
|
|
|
|
- removed YYPARSE_RETURN_TYPE: no package uses this and yyparse()
|
|
|
|
relies on having its return type compatible with int
|
|
|
|
- do not use C++ kludges fix with the new version
|
|
|
|
|
|
|
|
-------------------------------------------------------------------
|
|
|
|
Tue Sep 17 17:34:28 CEST 2002 - ro@suse.de
|
|
|
|
|
|
|
|
- removed bogus self-provides
|
|
|
|
|
|
|
|
-------------------------------------------------------------------
|
|
|
|
Tue Jul 23 18:33:57 CEST 2002 - tcrhak@suse.cz
|
|
|
|
|
|
|
|
- a stack overflow fix for `C++ kludges': do extend stack
|
|
|
|
even if location tracking is not enabled
|
|
|
|
|
|
|
|
-------------------------------------------------------------------
|
|
|
|
Wed Jun 26 17:23:22 CEST 2002 - tcrhak@suse.cz
|
|
|
|
|
|
|
|
- update to 1.35
|
|
|
|
|
|
|
|
-------------------------------------------------------------------
|
|
|
|
Wed Feb 13 13:50:05 CET 2002 - schwab@suse.de
|
|
|
|
|
|
|
|
- Don't use NULL when it may not be defined.
|
|
|
|
|
|
|
|
-------------------------------------------------------------------
|
|
|
|
Fri Feb 8 10:51:48 CET 2002 - tcrhak@suse.cz
|
|
|
|
|
|
|
|
- update to version 1.33
|
|
|
|
|
|
|
|
-------------------------------------------------------------------
|
|
|
|
Fri Jan 25 20:05:16 CET 2002 - tcrhak@suse.cz
|
|
|
|
|
|
|
|
- update to version 1.32
|
|
|
|
|
|
|
|
-------------------------------------------------------------------
|
|
|
|
Tue Dec 11 16:32:58 CET 2001 - schwab@suse.de
|
|
|
|
|
|
|
|
- Fix double free.
|
|
|
|
|
|
|
|
-------------------------------------------------------------------
|
|
|
|
Fri Nov 30 17:14:00 CET 2001 - schwab@suse.de
|
|
|
|
|
|
|
|
- Fix use of YYSTACK_USE_ALLOCA in parser skeleton.
|
|
|
|
|
|
|
|
-------------------------------------------------------------------
|
|
|
|
Fri Nov 30 13:55:50 CEST 2001 - tcrhak@suse.cz
|
|
|
|
|
|
|
|
- update to 1.30
|
|
|
|
|
|
|
|
-------------------------------------------------------------------
|
|
|
|
Sun Dec 3 16:19:47 CET 2000 - schwab@suse.de
|
|
|
|
|
|
|
|
- Fix line numbers in bison.simple.
|
|
|
|
|
|
|
|
-------------------------------------------------------------------
|
|
|
|
Thu Aug 24 14:03:49 CEST 2000 - nadvornik@suse.cz
|
|
|
|
|
|
|
|
- update to 1.28
|
|
|
|
|
|
|
|
-------------------------------------------------------------------
|
|
|
|
Fri Jan 28 11:26:45 CET 2000 - schwab@suse.de
|
|
|
|
|
|
|
|
- Fix missing declaration
|
|
|
|
- Specfile cleanup, get rid of Makefile.Linux
|
|
|
|
- /usr/{info,man} -> /usr/share/{info,man}
|
|
|
|
|
|
|
|
-------------------------------------------------------------------
|
|
|
|
Mon Sep 13 17:23:57 CEST 1999 - bs@suse.de
|
|
|
|
|
|
|
|
- ran old prepare_spec on spec file to switch to new prepare_spec.
|
|
|
|
|
|
|
|
------------------------------------------------------------------------------
|
|
|
|
Fri Jun 13 11:28:39 CEST 1997 - rj@suse.de
|
|
|
|
|
|
|
|
- yacc emulation removed, because of existing mid-age technology
|
|
|
|
|
|
|
|
------------------------------------------------------------------------------
|
|
|
|
Fri May 16 14:47:52 CEST 1997 - rj@suse.de
|
|
|
|
|
|
|
|
- version 1.25
|
|
|
|
- yacc-functionality emulated thru script
|