diff options
| author | Michael Forney <mforney@mforney.org> | 2019-10-26 21:48:17 -0700 |
|---|---|---|
| committer | Michael Forney <mforney@mforney.org> | 2019-10-26 21:48:17 -0700 |
| commit | 4154ce4dd0a88c9096ded3aaa78be8f468c6324a (patch) | |
| tree | 6ff7055fc849f3498e8fb3677a6c97c809be40e5 | |
| parent | 3b073f5ad77a94468344c4d8d06f7e31ce1e9b4f (diff) | |
openbsd: Remove yacc in favor of byacc
| -rw-r--r-- | README.md | 3 | ||||
| -rw-r--r-- | pkg/openbsd/gen.lua | 8 | ||||
| -rw-r--r-- | sets.lua | 1 |
3 files changed, 3 insertions, 9 deletions
@@ -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 index 8e6f77ef..ab9578f8 100644 --- 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' @@ -2,6 +2,7 @@ return { core={ 'awk', 'bc', + 'byacc', 'bzip2', 'curl', 'e2fsprogs', |
