forked from pool/byacc
Accepting request 1090644 from devel:tools:compiler
OBS-URL: https://build.opensuse.org/request/show/1090644 OBS-URL: https://build.opensuse.org/package/show/openSUSE:Factory/byacc?expand=0&rev=34
This commit is contained in:
commit
a99cea0a13
@ -1,3 +0,0 @@
|
||||
version https://git-lfs.github.com/spec/v1
|
||||
oid sha256:36b972a6d4ae97584dd186925fbbc397d26cb20632a76c2f52ac7653cd081b58
|
||||
size 898360
|
@ -1,15 +0,0 @@
|
||||
-----BEGIN PGP SIGNATURE-----
|
||||
Comment: See https://invisible-island.net/public/public.html for info
|
||||
|
||||
iQGzBAABCgAdFiEEGYgtkt2kxADCLA1WzCr0RyFnvgMFAmPzaBcACgkQzCr0RyFn
|
||||
vgNgzAv/Sf9Y+keRvp6/vJBmzr5Q4tzs2k4CoitEgadl6FBpqMvr6JN8LaX2FDP9
|
||||
1IkxvZFt0N9/EDoykzITvX9BMLuDnglPCEZsYcG0N4NcaAPTCUU59yETCvpYd3/S
|
||||
swKmQqsFlzAaYUcJlL91ayCFzls7xmzfcHSRjAZdFmTh4b1UBdHHH+Ad2Cku5EIu
|
||||
YIY0jgEyxCln+CeC+FPKd7N7pdIisrhZrXaoSS5N4FkdDUN+knQbeiEF+gzQJ0Pj
|
||||
WIc8md4Rk/5JGjMqQSqW4R5Glij++7dg9jskYYFaeY2pZNCoLA3E8SLuyC32Coz/
|
||||
MxG53oAwQC3vAYHmOz+1/erhVJYUEE0aZXhLilVqvvpeOYVOOz/zetgXU90p3bxu
|
||||
aKtGPoeu79wW3DbewkZkcOkEuqTqB6ed+baJ2o2RMQwEdyHegM1NFo2NDLysVeWE
|
||||
7c8RC5CLPaP8QZeL69/EI9TOkXoX69PolrQ68DnWUqpYkD78NxnoHCkv2Tm433Ey
|
||||
GgudIs0m
|
||||
=k4/h
|
||||
-----END PGP SIGNATURE-----
|
3
byacc-20230521.tgz
Normal file
3
byacc-20230521.tgz
Normal file
@ -0,0 +1,3 @@
|
||||
version https://git-lfs.github.com/spec/v1
|
||||
oid sha256:5ad915a7d5833aa38a5e31bd077505666029c35e365dff8569fe4598eaa9fef2
|
||||
size 905214
|
15
byacc-20230521.tgz.asc
Normal file
15
byacc-20230521.tgz.asc
Normal file
@ -0,0 +1,15 @@
|
||||
-----BEGIN PGP SIGNATURE-----
|
||||
Comment: See https://invisible-island.net/public/public.html for info
|
||||
|
||||
iQGzBAABCgAdFiEEGYgtkt2kxADCLA1WzCr0RyFnvgMFAmRqfaYACgkQzCr0RyFn
|
||||
vgNZVAwAmo3/Rft321n9oo5fDziZ9qen3JoORJheaWYND0F79YHpXD8aWPXW88dh
|
||||
gPb4pNWOrnUj4x7rYbykt/hSP1hKCOEA6OrQkKX7DdcXLOdQMLpBbtWMEr/56PAA
|
||||
4wwzDl5uqkyJJW73RrABDL1FK0EpATniV08nSRNJ1MpmPXH0VvRPMoA7KPhdT825
|
||||
9eTpDg7kVAe1QHifkuMIDrWO/isj+pq1VlFMYPXD/TuV+blP7VzqVH8fJjjJmxDn
|
||||
ErRyimBXhX96Jlr7Ze8u/zSGQX5LflO3LgZNW9wxPgnr8Oe7d7UwWI7SC+p4JP0w
|
||||
7FY3zTWFM4L6QoKQ1YTBV/h8USgkHH4nO7XLC9EPZKxgwTazMeSXW4n4mucY3Ju3
|
||||
Z/+lZ1x43WVZ498uvEJh/HRNY6SACNY0Aw2emf76t64cb08iwCS6VTKU92tUBhCS
|
||||
1XAHtUlYhfW+2yjR6vbwfQMYQwBKruiOj9ZQYPLdZxutrbAn2m+5Lrmw22Mz/ZEs
|
||||
DZ2/jTAN
|
||||
=6w4F
|
||||
-----END PGP SIGNATURE-----
|
@ -1,3 +1,27 @@
|
||||
-------------------------------------------------------------------
|
||||
Fri Jun 2 20:59:36 UTC 2023 - Dirk Müller <dmueller@suse.com>
|
||||
|
||||
- update to 20230521:
|
||||
* error.c, defs.h, reader.c:
|
||||
allow @1 or $@ with a warning if no %locations was given
|
||||
* reader.c: clear pointer in end_ainfo() after freeing it.
|
||||
* reader.c: report errors in %define as "unexpected value"
|
||||
add/use macros begin_ainfo() and end_ainfo() to reduce clutter
|
||||
* defs.h, error.c: add function unexpected_value()
|
||||
* add %nterm as an alias for %type, since bison made that confusion.
|
||||
* reader.c:
|
||||
ensure that filler_buf and prefix_buf are initialized for the special case
|
||||
where they are empty (report by Martin Jansa, cf: 20230219)
|
||||
* output.c:
|
||||
make test-differences smaller when compiling with YY_NO_LEAKS by replacing
|
||||
a blank line with the generated #define rather than adding 3 lines.
|
||||
* reader.c:
|
||||
correct a use-after-free in more_curly, which could occur if a %lex-param
|
||||
or %parse-param was multi-line (Redhat #2183006).
|
||||
* main.c: rename no_space() to on_error()
|
||||
* error.c: rename no_space() to no_error(), handling any errno
|
||||
* defs.h: rename no_space() to on_error()
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Tue Mar 7 20:06:37 UTC 2023 - Dirk Müller <dmueller@suse.com>
|
||||
|
||||
|
@ -18,7 +18,7 @@
|
||||
|
||||
|
||||
Name: byacc
|
||||
Version: 20230219
|
||||
Version: 20230521
|
||||
Release: 0
|
||||
Summary: LALR(1) parser generator
|
||||
License: SUSE-Public-Domain
|
||||
|
Loading…
Reference in New Issue
Block a user