main: BuildInfo: fix build with Go 1.17 and older

On Go 1.17 and older we get this:

  Error: ./version.go:67:24: info.Settings undefined (type *debug.BuildInfo has no field or method Settings)

Fix the build error by shedding some nice-to-have features.
This commit is contained in:
Jakob Unterwurzacher 2022-12-29 15:21:17 +01:00
parent 856ccaac10
commit b2a5cec4dd
1 changed files with 1 additions and 26 deletions

View File

@ -4,7 +4,6 @@ import (
"fmt"
"runtime"
"runtime/debug"
"strconv"
"strings"
"github.com/rfjakob/gocryptfs/v2/internal/stupidgcm"
@ -61,28 +60,9 @@ func versionFromBuildInfo() {
tlog.Debug.Println("versionFromBuildInfo: ReadBuildInfo() failed")
return
}
// Parse BuildSettings
var vcsRevision, vcsTime string
var vcsModified bool
for _, s := range info.Settings {
switch s.Key {
case "vcs.revision":
vcsRevision = s.Value
case "vcs.time":
vcsTime = s.Value
case "vcs.modified":
vcsModified, _ = strconv.ParseBool(s.Value)
}
}
// Fill our version strings
if GitVersion == gitVersionNotSet {
if GitVersion == gitVersionNotSet && info.Main.Version != "(devel)" {
GitVersion = info.Main.Version
if GitVersion == "(devel)" && vcsRevision != "" {
GitVersion = fmt.Sprintf("vcs.revision=%s", vcsRevision)
}
if vcsModified {
GitVersion += "-dirty"
}
}
if GitVersionFuse == gitVersionFuseNotSet {
for _, m := range info.Deps {
@ -95,9 +75,4 @@ func versionFromBuildInfo() {
}
}
}
if BuildDate == buildDateNotSet {
if vcsTime != "" {
BuildDate = fmt.Sprintf("vcs.time=%s", vcsTime)
}
}
}