aboutsummaryrefslogtreecommitdiffstats
path: root/testing/go-bindata/go-remove-runtime.patch
diff options
context:
space:
mode:
authorMatthias Neugebauer <mtneug@mailbox.org>2019-03-21 17:55:06 +0100
committerKevin Daudt <kdaudt@alpinelinux.org>2019-03-23 16:28:31 +0000
commit34d0d870b08bf6accead030e307352a5353a816d (patch)
tree9d951255502e8e9fd054b3d9570d7489179f6e84 /testing/go-bindata/go-remove-runtime.patch
parentf7e813c88bb392d99d08b0c945c7c4f61e1aab70 (diff)
downloadaports-34d0d870b08bf6accead030e307352a5353a816d.tar.bz2
aports-34d0d870b08bf6accead030e307352a5353a816d.tar.xz
testing/go-bindata: move to community
Diffstat (limited to 'testing/go-bindata/go-remove-runtime.patch')
-rw-r--r--testing/go-bindata/go-remove-runtime.patch17
1 files changed, 0 insertions, 17 deletions
diff --git a/testing/go-bindata/go-remove-runtime.patch b/testing/go-bindata/go-remove-runtime.patch
deleted file mode 100644
index 4cb0349f72..0000000000
--- a/testing/go-bindata/go-remove-runtime.patch
+++ /dev/null
@@ -1,17 +0,0 @@
---- ./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")
- }