refactor: switch off bbansi and atlas

This commit is contained in:
Daylin Morgan 2024-09-26 17:21:52 -05:00
parent 9c5c64e728
commit df98522b51
Signed by: daylin
GPG key ID: 950D13E9719334AD
7 changed files with 77 additions and 55 deletions

6
.gitignore vendored
View file

@ -1,6 +1,6 @@
/bin /bin
/dist /dist
# atlas nimbledeps
*.workspace nimble.develop
src/nim.cfg nimble.paths

24
config.nims Normal file
View file

@ -0,0 +1,24 @@
import std/[strformat, strutils]
task build, "build":
exec "nim c --outdir:bin src/forge.nim"
task release, "build release assets":
version = (gorgeEx "git describe --tags --always --match 'v*'").output
exec fmt"./bin/forge release -v {version} -V"
task bundle, "package build assets":
withDir "dist":
for dir in listDirs("."):
let cmd =
if "windows" in dir: fmt"7z a {dir}.zip {dir}"
else: fmt"tar czf {dir}.tar.gz {dir}"
cpFile("../README.md", fmt"{dir}/README.md")
exec cmd
# begin Nimble config (version 2)
--noNimblePath
when withDir(thisDir(), system.fileExists("nimble.paths")):
include "nimble.paths"
# end Nimble config

View file

@ -7,26 +7,8 @@ bin = @["forge", "forgecc"]
binDir = "bin" binDir = "bin"
requires "nim >= 2.0.0", requires "nim >= 2.0.0"
"cligen", requires "cligen"
"https://github.com/daylinmorgan/bbansi#head" requires "https://github.com/daylinmorgan/hwylterm#HEAD"
import strformat
task release, "build release assets":
version = (gorgeEx "git describe --tags --always --match 'v*'").output
exec &"forge release -v {version} -V"
task bundle, "package build assets":
withDir "dist":
for dir in listDirs("."):
let cmd = if "windows" in dir:
&"7z a {dir}.zip {dir}"
else:
&"tar czf {dir}.tar.gz {dir}"
cpFile("../README.md", &"{dir}/README.md")
exec cmd

26
nimble.lock Normal file
View file

@ -0,0 +1,26 @@
{
"version": 2,
"packages": {
"cligen": {
"version": "1.7.5",
"vcsRevision": "85daafd76b0104387f50ff3f75c829b4c2804412",
"url": "https://github.com/c-blake/cligen.git",
"downloadMethod": "git",
"dependencies": [],
"checksums": {
"sha1": "f3ffe7329c8db755677d3ca377d02ff176cec8b1"
}
},
"hwylterm": {
"version": "0.1.0",
"vcsRevision": "c2bcfd1f73dda97bd3e209c89e2abfe588f0977c",
"url": "https://github.com/daylinmorgan/hwylterm",
"downloadMethod": "git",
"dependencies": [],
"checksums": {
"sha1": "1932229840c893c39acca0b50def19913678f5f0"
}
}
},
"tasks": {}
}

View file

@ -1,5 +1,4 @@
import std/[os, osproc, sequtils, strformat, strutils, tables] import std/[os, osproc, sequtils, strformat, strutils, tables]
import forge/[config, utils, term, zig] import forge/[config, utils, term, zig]
proc genFlags(target: string, args: seq[string] = @[]): seq[string] = proc genFlags(target: string, args: seq[string] = @[]): seq[string] =
@ -26,6 +25,7 @@ proc targets() =
proc cc(target: string, dryrun: bool = false, nimble: bool = false, args: seq[string]) = proc cc(target: string, dryrun: bool = false, nimble: bool = false, args: seq[string]) =
## compile with zig cc ## compile with zig cc
zigExists()
if args.len == 0: if args.len == 0:
termErrQuit "expected additional arguments i.e. -- -d:release src/main.nim" termErrQuit "expected additional arguments i.e. -- -d:release src/main.nim"
@ -64,6 +64,7 @@ proc release(
## default: ${name}-v${verison}-${target} ## default: ${name}-v${verison}-${target}
## ##
## if name or version are not specified they will be inferred from the local .nimble file ## if name or version are not specified they will be inferred from the local .nimble file
zigExists()
let cfg = newConfig( let cfg = newConfig(
target, target,
@ -125,33 +126,23 @@ proc release(
when isMainModule: when isMainModule:
import cligen import cligen
zigExists() import hwylterm/cli
hwylCli(clCfg)
const let clUse* = $bb("$command $args\n${doc}[bold]Options[/]:\n$options")
customMulti = "Usage:\n $command {SUBCMD} [sub-command options & parameters]\n\nsubcommands:\n$subcmds" const vsn = staticExec "git describe --tags --always HEAD"
vsn = staticExec "git describe --tags --always HEAD"
if clCfg.useMulti == "": clCfg.useMulti = customMulti
if clCfg.helpAttr.len == 0:
clCfg.helpAttr = {"cmd": "\e[1;36m", "clDescrip": "", "clDflVal": "\e[33m",
"clOptKeys": "\e[32m", "clValType": "\e[31m", "args": "\e[3m"}.toTable
clCfg.helpAttrOff = {"cmd": "\e[m", "clDescrip": "\e[m", "clDflVal": "\e[m",
"clOptKeys": "\e[m", "clValType": "\e[m", "args": "\e[m"}.toTable
var vsnCfg = clCfg var vsnCfg = clCfg
vsnCfg.version = vsn vsnCfg.version = vsn
dispatchMulti( dispatchMulti(
["multi", cf = vsnCfg], ["multi", cf = vsnCfg],
[cc, help = { [cc, usage = clUse, help = {
"dryrun": "show command instead of executing", "dryrun": "show command instead of executing",
"nimble": "use nimble as base command for compiling" "nimble": "use nimble as base command for compiling"
}], }],
[targets], [targets, usage = clUse],
[release, [release, usage = clUse, help = {
help = {
"target": "set target, may be repeated", "target": "set target, may be repeated",
"bin": "set bin, may be repeated", "bin": "set bin, may be repeated",
"dryrun": "show command instead of executing", "dryrun": "show command instead of executing",
@ -160,6 +151,6 @@ when isMainModule:
"config-file": "path to config", "config-file": "path to config",
"no-config": "ignore config file" "no-config": "ignore config file"
}, },
short = {"verbose": 'V'} short = {"verbose": 'V'}
] ]
) )

View file

@ -19,19 +19,19 @@ proc showConfig*(c: ForgeConfig) =
if args != "": if args != "":
result.add fmt" | " & $args.bb("faint") result.add fmt" | " & $args.bb("faint")
addLine $fmt""" addLine $bbfmt"""
config = config =
| [blue]nimble[/] {c.nimble} | [blue]nimble[/] {c.nimble}
| [blue]outdir[/] {c.outdir} | [blue]outdir[/] {c.outdir}
| [blue]format[/] {c.format} | [blue]format[/] {c.format}
| [blue]version[/] {c.version}""".bb | [blue]version[/] {c.version}"""
addLine $"| [green]targets[/]:".bb addLine $bb"| [green]targets[/]:"
for target, args in c.targets: for target, args in c.targets:
addLine addNameArgs(target, args) addLine addNameArgs(target, args)
addLine $"| [green]bins[/]:".bb addLine $bb"| [green]bins[/]:"
for bin, args in c.bins: for bin, args in c.bins:
addline addNameArgs(bin, args) addline addNameArgs(bin, args)
@ -41,8 +41,7 @@ proc loadConfigFile*(
f: string, f: string,
load_targets: bool, load_targets: bool,
load_bins: bool load_bins: bool
): ForgeConfig = ): ForgeConfig =
let dict = loadConfig(f) let dict = loadConfig(f)
# get the top level flags # get the top level flags
@ -65,7 +64,7 @@ proc loadConfigFile*(
proc inferName(s: string, nimbleFile: string): string = proc inferName(s: string, nimbleFile: string): string =
if s != "": if s != "":
return s return s
elif nimbleFile != "": elif nimbleFile != "":
return nimbleFile.rsplit(".", maxsplit = 1)[0] return nimbleFile.rsplit(".", maxsplit = 1)[0]
proc findNimbleFile(): string = proc findNimbleFile(): string =
@ -112,7 +111,7 @@ proc newConfig*(
nimble: bool, nimble: bool,
configFile: string, configFile: string,
noConfig: bool noConfig: bool
): ForgeConfig = ): ForgeConfig =
let nimbleFile = findNimbleFile() let nimbleFile = findNimbleFile()

View file

@ -1,6 +1,6 @@
import std/strutils import std/strutils
import bbansi import hwylterm
let prefix = "[bold magenta]forge[/] [yellow]||[/] ".bb let prefix = "[bold magenta]forge[/] [yellow]||[/] ".bb
@ -14,4 +14,4 @@ template termErrQuit*(args: varargs[string | BbString, `$`]) =
termErr args termErr args
quit 1 quit 1
export bbansi export hwylterm