File: subvendor.patch

package info (click to toggle)
golang-github-appc-spec 0.8.9%2Bdfsg-1
  • links: PTS, VCS
  • area: main
  • in suites: stretch
  • size: 1,108 kB
  • ctags: 1,103
  • sloc: sh: 163; makefile: 17
file content (70 lines) | stat: -rw-r--r-- 1,674 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
Last-Update: 2016-10-13
Forwarded: not-needed
Author: Dmitry Smirnov <onlyjob@member.fsf.org>
Description: private libs.

--- a/schema/image.go
+++ b/schema/image.go
@@ -21,9 +21,9 @@
 	"fmt"
 
 	"github.com/appc/spec/schema/types"
 
-	"go4.org/errorutil"
+	"github.com/appc/spec/Godeps/_workspace/src/go4.org/errorutil"
 )
 
 const (
 	ACIExtension      = ".aci"
--- a/schema/pod.go
+++ b/schema/pod.go
@@ -21,9 +21,9 @@
 	"fmt"
 
 	"github.com/appc/spec/schema/types"
 
-	"go4.org/errorutil"
+	"github.com/appc/spec/Godeps/_workspace/src/go4.org/errorutil"
 )
 
 const PodManifestKind = types.ACKind("PodManifest")
 
--- a/schema/types/isolator_resources.go
+++ b/schema/types/isolator_resources.go
@@ -18,9 +18,9 @@
 	"encoding/json"
 	"errors"
 	"fmt"
 
-	"k8s.io/kubernetes/pkg/api/resource"
+	"github.com/appc/spec/Godeps/_workspace/src/k8s.io/kubernetes/pkg/api/resource"
 )
 
 var (
 	ErrDefaultTrue     = errors.New("default must be false")
--- a/schema/types/isolator_resources_test.go
+++ b/schema/types/isolator_resources_test.go
@@ -17,9 +17,9 @@
 import (
 	"reflect"
 	"testing"
 
-	"k8s.io/kubernetes/pkg/api/resource"
+	"github.com/appc/spec/Godeps/_workspace/src/k8s.io/kubernetes/pkg/api/resource"
 )
 
 func mustQuantity(s string) *resource.Quantity {
 	q := resource.MustParse(s)
--- a/vendor/go4.org/errorutil/highlight.go
+++ b/vendor/go4.org/errorutil/highlight.go
@@ -14,9 +14,9 @@
 limitations under the License.
 */
 
 // Package errorutil helps make better error messages.
-package errorutil // import "go4.org/errorutil"
+package errorutil // import "github.com/appc/spec/Godeps/_workspace/src/go4.org/errorutil"
 
 import (
 	"bufio"
 	"bytes"