summaryrefslogtreecommitdiff
path: root/argv.go
diff options
context:
space:
mode:
Diffstat (limited to 'argv.go')
-rw-r--r--argv.go65
1 files changed, 0 insertions, 65 deletions
diff --git a/argv.go b/argv.go
deleted file mode 100644
index d3845e1..0000000
--- a/argv.go
+++ /dev/null
@@ -1,65 +0,0 @@
-// Copyright 2017-2025 WIT.COM Inc. All rights reserved.
-// Use of this source code is governed by the GPL 3.0
-
-package main
-
-/*
- this parses the command line arguements
- this enables command line options from other packages like 'gui' and 'log'
-*/
-
-import (
- "os"
-
- "go.wit.com/lib/protobuf/argvpb"
-)
-
-var argv args
-
-type args struct {
- Incoming *IncomingCmd `arg:"subcommand:incoming" help:"handle the incoming directory"`
- List *EmptyCmd `arg:"subcommand:list" help:"show the packages"`
- Verify *EmptyCmd `arg:"subcommand:verify" help:"verify the pb is accurate and doesn't have errors"`
- Newest *EmptyCmd `arg:"subcommand:newest" help:"make a list of the newest .deb packages"`
- SignRelease *EmptyCmd `arg:"subcommand:release" help:"make & GPG sign the Release files"`
- Everything *EmptyCmd `arg:"subcommand:everything" help:"do the whole thing needed. nothing more. just everything."`
- Walk *WalkCmd `arg:"subcommand:walk" help:"walk the filesystem for new .deb files"`
- DryRun bool `arg:"--dry-run" help:"only show what would be packaged"`
- Verbose bool `arg:"--verbose" help:"be loud about it"`
- Force bool `arg:"--force" help:"rebuild everything"`
-}
-
-type EmptyCmd struct {
-}
-
-type WalkCmd struct {
- Verbose bool `arg:"--verbose" help:"be loud about it"`
-}
-
-type IncomingCmd struct {
- Force bool `arg:"--force" help:"rebuild everything"`
-}
-
-func (args) Buildtime() (string, string) {
- return BUILDTIME, VERSION
-}
-
-func (args) Version() string {
- return argvpb.StandardVersion(ARGNAME, VERSION, BUILDTIME)
-}
-
-func (args) Appname() string {
- return ARGNAME
-}
-
-// sends the strings to bash or zsh that will be your options
-func (a args) SendCompletionStrings(pb *argvpb.Argv) {
- base := []string{"--dry-run", "--force", "incoming", "walk", "list", "everything", "verify", "newest", "--create", "--verbose", "release"}
-
- if pb.Cmd == "" {
- pb.SendStrings(base)
- } else {
- pb.SubCommand(pb.Goargs...)
- }
- os.Exit(0)
-}