summaryrefslogtreecommitdiff
path: root/humanBuildTable.go
diff options
context:
space:
mode:
authorJeff Carr <[email protected]>2025-10-05 03:55:22 -0500
committerJeff Carr <[email protected]>2025-10-05 03:55:22 -0500
commit952334bf58e49e381171e2c71e20a847f4138df6 (patch)
treef430252265c34d30162027c0bf657cfbfe52a841 /humanBuildTable.go
parent8d50f01597cde8c7ae0fd451347d93196b97f900 (diff)
code cleanups. old non-protobuf code almost gonev0.0.166
Diffstat (limited to 'humanBuildTable.go')
-rw-r--r--humanBuildTable.go52
1 files changed, 0 insertions, 52 deletions
diff --git a/humanBuildTable.go b/humanBuildTable.go
deleted file mode 100644
index 99f08cb..0000000
--- a/humanBuildTable.go
+++ /dev/null
@@ -1,52 +0,0 @@
-// Copyright 2025 WIT.COM Inc Licensed GPL 3.0
-
-package forgepb
-
-import (
- "go.wit.com/lib/protobuf/gitpb"
-)
-
-// returns
-func (f *Forge) GetPackageVersion(repo *gitpb.Repo) string {
- var s string
-
- s = repo.GetCurrentBranchVersion()
- if repo.IsDirty() {
- s += "-dirty"
- }
- return s
-}
-
-func (f *Forge) GetRepoType(repo *gitpb.Repo) string {
- var rtype string = repo.GetRepoType()
- switch rtype {
- case "binary":
- rtype = "GO bin"
- case "library":
- rtype = "GO lib"
- case "protobuf":
- rtype = "GO pb"
- }
- if f.IsPrivate(repo) {
- rtype = "priv"
- }
- return rtype
-}
-
-func (f *Forge) GetBuildBaseTB(pb *gitpb.Repos) *gitpb.ReposTable {
- t := pb.NewTable(".deb details")
- t.NewUuid()
-
- var col *gitpb.RepoFunc
-
- col = t.AddStringFunc("Build Version", func(r *gitpb.Repo) string {
- return f.GetPackageVersion(r)
- })
- col.Width = 24
-
- col = t.AddStringFunc("RepoType", func(r *gitpb.Repo) string {
- return f.GetRepoType(r)
- })
- col.Width = 8
- return t
-}