aboutsummaryrefslogtreecommitdiffhomepage
path: root/internal/rosa/package/bison.az
diff options
context:
space:
mode:
authorOphestra <cat@gensokyo.uk>2026-05-21 23:06:34 +0900
committerOphestra <cat@gensokyo.uk>2026-05-21 23:06:34 +0900
commit68a91523b9e58ee8a9f86723d616e82c0645b64a (patch)
treea16f116b6b606d50bd2e887a173b981552ca0eb0 /internal/rosa/package/bison.az
parent564732162223e76a307bb06e132e9f0351f239bf (diff)
internal/rosa/package: migrate bison
This is the final remaining trivial legacy artifact. Signed-off-by: Ophestra <cat@gensokyo.uk>
Diffstat (limited to 'internal/rosa/package/bison.az')
-rw-r--r--internal/rosa/package/bison.az30
1 files changed, 30 insertions, 0 deletions
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,
+ ];
+}