commit: 4154ce4dd0a88c9096ded3aaa78be8f468c6324a
parent 3b073f5ad77a94468344c4d8d06f7e31ce1e9b4f
Author: Michael Forney <mforney@mforney.org>
Date: Sat, 26 Oct 2019 21:48:17 -0700
openbsd: Remove yacc in favor of byacc
Diffstat:
3 files changed, 3 insertions(+), 9 deletions(-)
diff --git a/README.md b/README.md
@@ -53,10 +53,11 @@ up from the following:
* [suckless](http://core.suckless.org/)
- sbase, ubase, sinit, sdhcp
* [openbsd](http://openbsd.org/)
- - pax, yacc, fmt, diff, patch, doas
+ - pax, fmt, diff, patch, doas
* [plan9port](http://swtch.com/plan9port/)
- rc, sam
* [awk](http://github.com/onetrueawk/awk/)
+* [byacc](https://invisible-island.net/byacc/byacc.html)
* [bzip2](http://bzip.org/)
* [bc](https://github.com/gavinhoward/bc)
* [curl](https://curl.haxx.se/)
diff --git a/pkg/openbsd/gen.lua b/pkg/openbsd/gen.lua
@@ -109,12 +109,4 @@ sub('rsync.ninja', function()
man{'usr.bin/rsync/rsync.1', 'usr.bin/rsync/rsync.5', 'usr.bin/rsync/rsyncd.5'}
end)
--- yacc
-exe('yacc', [[usr.bin/yacc/(
- closure.c error.c lalr.c lr0.c main.c mkpar.c output.c reader.c
- skeleton.c symtab.c verbose.c warshall.c
-) libbsd.a]])
-file('bin/yacc', '755', '$outdir/yacc')
-man{'usr.bin/yacc/yacc.1'}
-
fetch 'local'
diff --git a/sets.lua b/sets.lua
@@ -2,6 +2,7 @@ return {
core={
'awk',
'bc',
+ 'byacc',
'bzip2',
'curl',
'e2fsprogs',