diff options
author | Matthias Neugebauer <mtneug@mailbox.org> | 2019-03-21 17:55:06 +0100 |
---|---|---|
committer | Kevin Daudt <kdaudt@alpinelinux.org> | 2019-03-23 16:28:31 +0000 |
commit | 34d0d870b08bf6accead030e307352a5353a816d (patch) | |
tree | 9d951255502e8e9fd054b3d9570d7489179f6e84 /community/go-bindata/go-remove-runtime.patch | |
parent | f7e813c88bb392d99d08b0c945c7c4f61e1aab70 (diff) | |
download | aports-34d0d870b08bf6accead030e307352a5353a816d.tar.bz2 aports-34d0d870b08bf6accead030e307352a5353a816d.tar.xz |
testing/go-bindata: move to community
Diffstat (limited to 'community/go-bindata/go-remove-runtime.patch')
-rw-r--r-- | community/go-bindata/go-remove-runtime.patch | 17 |
1 files changed, 17 insertions, 0 deletions
diff --git a/community/go-bindata/go-remove-runtime.patch b/community/go-bindata/go-remove-runtime.patch new file mode 100644 index 0000000000..4cb0349f72 --- /dev/null +++ b/community/go-bindata/go-remove-runtime.patch @@ -0,0 +1,17 @@ +--- ./go-bindata/version.go.orig ++++ ./go-bindata/version.go +@@ -6,7 +6,6 @@ + + import ( + "fmt" +- "runtime" + ) + + const ( +@@ -27,5 +26,5 @@ + } + + return fmt.Sprintf("%s %d.%d.%s (Go runtime %s).\nCopyright (c) 2010-2013, Jim Teeuwen.", +- AppName, AppVersionMajor, AppVersionMinor, AppVersionRev, runtime.Version()) ++ AppName, AppVersionMajor, AppVersionMinor, AppVersionRev, "1.7.0") + } |