blob: 270c8771aabe088b6e24fe9b3203f9917496035d (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
|
package main
import (
"os"
"go.wit.com/lib/gui/prep"
)
/*
this parses the command line arguements
this enables command line options from other packages like 'gui' and 'log'
*/
type args struct {
Show *EmptyCmd `arg:"subcommand:show" help:"show what would be done"`
Gui *EmptyCmd `arg:"subcommand:gui" help:"open the gui"`
Dump *EmptyCmd `arg:"subcommand:dump" help:"dump out the future control file"`
Ldflags []string `arg:"--ldflags" help:"flags to pass to go build"`
OutDir string `arg:"--dir" help:"write .deb file into this directory"`
Namespace string `arg:"--namespace" help:"the namespace of the repo"`
Arch string `arg:"--arch" help:"what arch"`
BuildVersion int `arg:"--buildversion" help:"what arch"`
KeepFiles bool `arg:"--keep-files" help:"keep the build files/"`
Release bool `arg:"--release" help:"build version from the @latest git tag"`
Force bool `arg:"--force" default:"false" help:"force overwrite an existing .deb file"`
Verbose bool `arg:"--verbose" help:"show more things"`
}
func (args) Examples() string {
var out string
out += "go-deb --dir ~/incoming/ --repo . # build a .deb of the current directory\n"
return out
}
func (args) Version() string {
return "go-clone " + VERSION + " Built on " + BUILDTIME
}
type EmptyCmd struct {
}
func (a args) Description() string {
return `
Example usage:
go-deb --repo go.wit.com/apps/go-clone "
this is a work in progress`
}
/*
handles shell autocomplete
*/
func (args) Appname() string {
return ARGNAME
}
func (args) Buildtime() (string, string) {
return BUILDTIME, VERSION
}
func (a args) DoAutoComplete(pb *prep.Auto) {
if pb.Cmd == "" {
pb.Autocomplete3([]string{"dump", "gui", "show", "--version", "--keep-files", "--buildversion"})
} else {
pb.SubCommand(pb.Goargs...)
}
os.Exit(0)
}
|