* [PATCH] bison: update to 3.0.4
@ 2016-02-23 7:49 Marcel Lorenz
0 siblings, 0 replies; 3+ messages in thread
From: Marcel Lorenz @ 2016-02-23 7:49 UTC (permalink / raw)
To: development
[-- Attachment #1: Type: text/plain, Size: 3222 bytes --]
Update bison to the last version from Linux from Scratch.
Signed-off-by: Marcel Lorenz <marcel.lorenz(a)ipfire.org>
---
config/rootfiles/common/bison | 21 +++++++++++++++++++++
lfs/bison | 12 +++++-------
2 files changed, 26 insertions(+), 7 deletions(-)
diff --git a/config/rootfiles/common/bison b/config/rootfiles/common/bison
index ca8d5ee..2304eca 100644
--- a/config/rootfiles/common/bison
+++ b/config/rootfiles/common/bison
@@ -8,6 +8,7 @@
#usr/share/bison/bison.m4
#usr/share/bison/c++-skel.m4
#usr/share/bison/c++.m4
+#usr/share/bison/c-like.m4
#usr/share/bison/c-skel.m4
#usr/share/bison/c.m4
#usr/share/bison/glr.c
@@ -21,12 +22,32 @@
#usr/share/bison/m4sugar/foreach.m4
#usr/share/bison/m4sugar/m4sugar.m4
#usr/share/bison/stack.hh
+#usr/share/bison/variant.hh
#usr/share/bison/xslt
#usr/share/bison/xslt/bison.xsl
#usr/share/bison/xslt/xml2dot.xsl
#usr/share/bison/xslt/xml2text.xsl
#usr/share/bison/xslt/xml2xhtml.xsl
#usr/share/bison/yacc.c
+#usr/share/doc/bison-3.0.4
+#usr/share/doc/bison-3.0.4/AUTHORS
+#usr/share/doc/bison-3.0.4/COPYING
+#usr/share/doc/bison-3.0.4/NEWS
+#usr/share/doc/bison-3.0.4/README
+#usr/share/doc/bison-3.0.4/THANKS
+#usr/share/doc/bison-3.0.4/TODO
+#usr/share/doc/bison-3.0.4/examples
+#usr/share/doc/bison-3.0.4/examples/calc++
+#usr/share/doc/bison-3.0.4/examples/calc++/calc++-driver.cc
+#usr/share/doc/bison-3.0.4/examples/calc++/calc++-driver.hh
+#usr/share/doc/bison-3.0.4/examples/calc++/calc++-parser.yy
+#usr/share/doc/bison-3.0.4/examples/calc++/calc++-scanner.ll
+#usr/share/doc/bison-3.0.4/examples/calc++/calc++.cc
+#usr/share/doc/bison-3.0.4/examples/mfcalc
+#usr/share/doc/bison-3.0.4/examples/mfcalc/calc.h
+#usr/share/doc/bison-3.0.4/examples/mfcalc/mfcalc.y
+#usr/share/doc/bison-3.0.4/examples/rpcalc
+#usr/share/doc/bison-3.0.4/examples/rpcalc/rpcalc.y
#usr/share/info/bison.info
#usr/share/man/man1/bison.1
#usr/share/man/man1/yacc.1
diff --git a/lfs/bison b/lfs/bison
index 6b84f41..322dd26 100644
--- a/lfs/bison
+++ b/lfs/bison
@@ -24,10 +24,10 @@
include Config
-VER = 2.5.1
+VER = 3.0.4
THISAPP = bison-$(VER)
-DL_FILE = $(THISAPP).tar.gz
+DL_FILE = $(THISAPP).tar.xz
DL_FROM = $(URL_IPFIRE)
DIR_APP = $(DIR_SRC)/$(THISAPP)
TARGET = $(DIR_INFO)/$(THISAPP)
@@ -40,7 +40,7 @@ objects =$(DL_FILE)
$(DL_FILE) = $(DL_FROM)/$(DL_FILE)
-$(DL_FILE)_MD5 = 8fedf916f1aa2c4a31441d8f8bbc603c
+$(DL_FILE)_MD5 = c342201de104cc9ce0a21e0ad10d4021
install : $(TARGET)
@@ -69,10 +69,8 @@ $(subst %,%_MD5,$(objects)) :
$(TARGET) : $(patsubst %,$(DIR_DL)/%,$(objects))
@$(PREBUILD)
- @rm -rf $(DIR_APP) && cd $(DIR_SRC) && tar zxf $(DIR_DL)/$(DL_FILE)
- cd $(DIR_APP) && ./configure --prefix=/usr --disable-nls
- # Disable NLS
- #cd $(DIR_APP) && echo '#define YYENABLE_NLS 1' >> config.h
+ @rm -rf $(DIR_APP) && cd $(DIR_SRC) && tar axf $(DIR_DL)/$(DL_FILE)
+ cd $(DIR_APP) && ./configure --prefix=/usr --disable-nls --docdir=/usr/share/doc/$(THISAPP)
cd $(DIR_APP) && make $(MAKETUNING)
cd $(DIR_APP) && make $(EXTRA_INSTALL) install
@rm -rf $(DIR_APP)
--
1.9.1
^ permalink raw reply [flat|nested] 3+ messages in thread
* [PATCH] bison: Update to 3.0.4.
@ 2015-10-17 23:51 Stefan Schantl
2015-10-18 17:48 ` Michael Tremer
0 siblings, 1 reply; 3+ messages in thread
From: Stefan Schantl @ 2015-10-17 23:51 UTC (permalink / raw)
To: development
[-- Attachment #1: Type: text/plain, Size: 2086 bytes --]
This is a major update to the latest stable version of bison.
A short excerpt of the changelog:
Several deprecated features were removed, such as support for YYFAIL, yystype,
yyltype, YYLEX_PARAM, and YYPARSE_PARAM. The user epilogue is no longer affected
by internal #defines. The recently-introduced dependency on stdio.h when
locations are enabled was removed. Caret errors, as introduced in 2.7, are now
activated by default. The "-Werror" option was enhanced, and categorization of
warnings and errors was modified. Many other changes and various bugfixes were
made.
I also added flex as a build dependency to prevent from errors when running
the testsuite.
Fixes #10403.
Signed-off-by: Stefan Schantl <stefan.schantl(a)ipfire.org>
---
bison/bison.nm | 10 ++++++----
1 file changed, 6 insertions(+), 4 deletions(-)
diff --git a/bison/bison.nm b/bison/bison.nm
index 8b1a1a9..0a2af3d 100644
--- a/bison/bison.nm
+++ b/bison/bison.nm
@@ -4,7 +4,7 @@
###############################################################################
name = bison
-version = 2.7.1
+version = 3.0.4
release = 1
groups = Development/Tools
@@ -13,14 +13,16 @@ license = GPLv2+
summary = GNU Bison is a parser generator.
description
- Bison is a general-purpose parser generator that converts an annotated \
+ Bison is a general-purpose parser generator that converts an annotated
context-free grammar into an LALR(1) or GLR parser for that grammar.
end
source_dl = http://ftp.gnu.org/gnu/bison/
+sources = %{thisapp}.tar.xz
build
requires
+ flex >= 2.5.37
m4 >= 1.4.16
perl
end
@@ -43,8 +45,8 @@ build
mkdir -pv %{BUILDROOT}%{libdir}
cd lib
install -v liby.so.%{version} %{BUILDROOT}%{libdir}/liby.so.%{version}
- ln -vsf liby.so.%{version} %{BUILDROOT}%{libdir}/liby.so.2
- ln -vsf liby.so.2 %{BUILDROOT}%{libdir}/liby.so
+ ln -vsf liby.so.%{version} %{BUILDROOT}%{libdir}/liby.so.3
+ ln -vsf liby.so.3 %{BUILDROOT}%{libdir}/liby.so
end
end
--
2.4.3
^ permalink raw reply [flat|nested] 3+ messages in thread
* Re: [PATCH] bison: Update to 3.0.4.
2015-10-17 23:51 [PATCH] bison: Update " Stefan Schantl
@ 2015-10-18 17:48 ` Michael Tremer
0 siblings, 0 replies; 3+ messages in thread
From: Michael Tremer @ 2015-10-18 17:48 UTC (permalink / raw)
To: development
[-- Attachment #1: Type: text/plain, Size: 2299 bytes --]
Merged. Let's hope that this won't crash too many other packages.
-Michael
On Sun, 2015-10-18 at 01:51 +0200, Stefan Schantl wrote:
> This is a major update to the latest stable version of bison.
>
> A short excerpt of the changelog:
>
> Several deprecated features were removed, such as support for YYFAIL,
> yystype,
> yyltype, YYLEX_PARAM, and YYPARSE_PARAM. The user epilogue is no
> longer affected
> by internal #defines. The recently-introduced dependency on stdio.h
> when
> locations are enabled was removed. Caret errors, as introduced in
> 2.7, are now
> activated by default. The "-Werror" option was enhanced, and
> categorization of
> warnings and errors was modified. Many other changes and various
> bugfixes were
> made.
>
> I also added flex as a build dependency to prevent from errors when
> running
> the testsuite.
>
> Fixes #10403.
>
> Signed-off-by: Stefan Schantl <stefan.schantl(a)ipfire.org>
> ---
> bison/bison.nm | 10 ++++++----
> 1 file changed, 6 insertions(+), 4 deletions(-)
>
> diff --git a/bison/bison.nm b/bison/bison.nm
> index 8b1a1a9..0a2af3d 100644
> --- a/bison/bison.nm
> +++ b/bison/bison.nm
> @@ -4,7 +4,7 @@
> ####################################################################
> ###########
>
> name = bison
> -version = 2.7.1
> +version = 3.0.4
> release = 1
>
> groups = Development/Tools
> @@ -13,14 +13,16 @@ license = GPLv2+
> summary = GNU Bison is a parser generator.
>
> description
> - Bison is a general-purpose parser generator that converts an
> annotated \
> + Bison is a general-purpose parser generator that converts an
> annotated
> context-free grammar into an LALR(1) or GLR parser for that
> grammar.
> end
>
> source_dl = http://ftp.gnu.org/gnu/bison/
> +sources = %{thisapp}.tar.xz
>
> build
> requires
> + flex >= 2.5.37
> m4 >= 1.4.16
> perl
> end
> @@ -43,8 +45,8 @@ build
> mkdir -pv %{BUILDROOT}%{libdir}
> cd lib
> install -v liby.so.%{version}
> %{BUILDROOT}%{libdir}/liby.so.%{version}
> - ln -vsf liby.so.%{version}
> %{BUILDROOT}%{libdir}/liby.so.2
> - ln -vsf liby.so.2 %{BUILDROOT}%{libdir}/liby.so
> + ln -vsf liby.so.%{version}
> %{BUILDROOT}%{libdir}/liby.so.3
> + ln -vsf liby.so.3 %{BUILDROOT}%{libdir}/liby.so
> end
> end
>
[-- Attachment #2: signature.asc --]
[-- Type: application/pgp-signature, Size: 819 bytes --]
^ permalink raw reply [flat|nested] 3+ messages in thread
end of thread, other threads:[~2016-02-23 7:49 UTC | newest]
Thread overview: 3+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2016-02-23 7:49 [PATCH] bison: update to 3.0.4 Marcel Lorenz
-- strict thread matches above, loose matches on Subject: below --
2015-10-17 23:51 [PATCH] bison: Update " Stefan Schantl
2015-10-18 17:48 ` Michael Tremer
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox