From 68a91523b9e58ee8a9f86723d616e82c0645b64a Mon Sep 17 00:00:00 2001 From: Ophestra Date: Thu, 21 May 2026 23:06:34 +0900 Subject: internal/rosa/package: migrate bison This is the final remaining trivial legacy artifact. Signed-off-by: Ophestra --- internal/rosa/package/bison.az | 30 ++++++++++++++++++++++++++++++ 1 file changed, 30 insertions(+) create mode 100644 internal/rosa/package/bison.az (limited to 'internal/rosa/package') diff --git a/internal/rosa/package/bison.az b/internal/rosa/package/bison.az new file mode 100644 index 00000000..39a0eb3d --- /dev/null +++ b/internal/rosa/package/bison.az @@ -0,0 +1,30 @@ +package bison { + description = "a general-purpose parser generator"; + website = "https://www.gnu.org/software/bison"; + anitya = 193; + + version* = "3.8.2"; + source = remoteTar { + url = "https://ftpmirror.gnu.org/gnu/bison/bison-"+version+".tar.gz"; + checksum = "BhRM6K7URj1LNOkIDCFDctSErLS-Xo5d9ba9seg10o6ACrgC1uNhED7CQPgIY29Y"; + compress = gzip; + }; + + exec = make { + check = [ + "TESTSUITEFLAGS=" + jobsFlagE + "' " + skipGNUTests { + tests = [ + // clang miscompiles (SIGILL) + 764, + ]; + } + "'", + "check", + ]; + }; + + inputs = [ + m4, + diffutils, + sed, + ]; +} -- cgit v1.3.1