diff options
author | Robert Clausecker <fuz@FreeBSD.org> | 2023-03-20 17:07:21 +0000 |
---|---|---|
committer | Robert Clausecker <fuz@FreeBSD.org> | 2023-03-22 21:15:21 +0100 |
commit | d27f21e397b845cc4dec662951e8a5d0286a0b6e (patch) | |
tree | a96a745523e620c94a254a90bfdf65c9ac62b970 /security/gitjacker/files/patch-go.mod | |
parent | sysutils/envconsul: fix build on riscv64 (diff) |
security/gitjacker: fix build on riscv64
Bump golang.org/x/sys dependency to a version new enough
to support riscv64-freebsd. Remove thus obsoleted patch file.
Sponsored by: Berliner Linux User Group e.V.
Approved by: portmgr (build fix blanket)
Diffstat (limited to 'security/gitjacker/files/patch-go.mod')
-rw-r--r-- | security/gitjacker/files/patch-go.mod | 26 |
1 files changed, 26 insertions, 0 deletions
diff --git a/security/gitjacker/files/patch-go.mod b/security/gitjacker/files/patch-go.mod new file mode 100644 index 000000000000..566d9ee805ec --- /dev/null +++ b/security/gitjacker/files/patch-go.mod @@ -0,0 +1,26 @@ +--- go.mod.orig 2023-03-20 17:03:06 UTC ++++ go.mod +@@ -1,15 +1,20 @@ + module github.com/liamg/gitjacker + +-go 1.15 ++go 1.17 + + require ( + github.com/liamg/tml v0.3.0 + github.com/magiconair/properties v1.8.0 + github.com/sirupsen/logrus v1.2.0 + github.com/spf13/cobra v1.0.0 ++) ++ ++require ( ++ github.com/inconshreveable/mousetrap v1.0.0 // indirect ++ github.com/konsorten/go-windows-terminal-sequences v1.0.1 // indirect ++ github.com/spf13/pflag v1.0.3 // indirect + github.com/stretchr/testify v1.4.0 // indirect + golang.org/x/crypto v0.0.0-20190701094942-4def268fd1a4 // indirect +- golang.org/x/sys v0.0.0-20190726091711-fc99dfbffb4e // indirect +- gopkg.in/check.v1 v1.0.0-20190902080502-41f04d3bba15 // indirect ++ golang.org/x/sys v0.6.0 // indirect + gopkg.in/yaml.v2 v2.2.4 // indirect + ) |