wit-test/argv.go

63 lines
2.3 KiB
Go
Raw Permalink Normal View History

2025-02-01 11:38:22 -06:00
// Copyright 2017-2025 WIT.COM Inc. All rights reserved.
// Use of this source code is governed by the GPL 3.0
2024-12-24 04:47:58 -06:00
package main
/*
this parses the command line arguements
this enables command line options from other packages like 'gui' and 'log'
*/
import (
"go.wit.com/lib/debugger"
"go.wit.com/lib/gui/logsettings"
"go.wit.com/log"
)
var argv args
type args struct {
2025-01-07 17:17:01 -06:00
TestBuild *EmptyCmd `arg:"subcommand:build" help:"try appropriate 'go build'"`
DebBuild *EmptyCmd `arg:"subcommand:debian" help:"build missing .deb packages"`
MakeInstall *EmptyCmd `arg:"subcommand:install" help:"run make install in each repo"`
ListPkgs *EmptyCmd `arg:"subcommand:list" help:"list all the packages on mirrors.wit.com"`
Clone *EmptyCmd `arg:"subcommand:repomap-clone" help:"go-clone from a gowebd repomap"`
Upgrade *EmptyCmd `arg:"subcommand:upgrade" help:"apt upgrade packages installed from mirrors.wit.com"`
RepoMap string `arg:"--repomap" help:"location of the repomap"`
Release bool `arg:"--release" help:"use go-deb --release"`
DryRun bool `arg:"--dry-run" help:"only show what would be packaged"`
Verbose bool `arg:"--verbose" help:"be loud about it"`
2025-02-14 17:27:00 -06:00
Force bool `arg:"--force" help:"rebuild everything"`
2025-01-07 17:17:01 -06:00
Recursive bool `arg:"--recursive" help:"go-clone --recursive"`
Test bool `arg:"--test" help:"test build after everything else"`
2025-02-01 11:22:46 -06:00
WITCOM bool `arg:"--witcom" help:"add the GPL header"`
2025-01-07 17:17:01 -06:00
Bash bool `arg:"--bash" help:"generate bash completion"`
BashAuto []string `arg:"--auto-complete" help:"does the actual autocompletion"`
2024-12-24 04:47:58 -06:00
}
2025-01-07 17:17:01 -06:00
type EmptyCmd struct {
}
2024-12-24 04:47:58 -06:00
2025-01-07 17:17:01 -06:00
func init() {
2024-12-24 04:47:58 -06:00
if debugger.ArgDebug() {
log.Info("cmd line --debugger == true")
go func() {
log.Sleep(2)
debugger.DebugWindow()
}()
}
if debugger.ArgLogger() {
log.Info("cmd line --loggger == true")
go func() {
log.Sleep(4)
logsettings.LogWindow()
logsettings.LogWindow()
}()
}
}
func (args) Version() string {
return "wit-test " + VERSION + " Built on " + BUILDTIME
}