Codebase list golang-github-appc-spec / 1fe0af1
New upstream snapshot Tim Potter 6 years ago
3 changed file(s) with 7 addition(s) and 71 deletion(s). Raw diff Collapse all Expand all
0 golang-github-appc-spec (0.8.9+git20170126.17.fc380db-1) UNRELEASED; urgency=medium
1
2 * New upstream snapshot for Kubernetes 1.6.4.
3 * Remove unecessary subvendor patch.
4
5 -- Tim Potter <tpot@hpe.com> Thu, 25 May 2017 16:52:42 +1000
6
07 golang-github-appc-spec (0.8.9+dfsg-1) unstable; urgency=medium
18
29 * New upstream release [November 2016].
+0
-1
debian/patches/series less more
0 subvendor.patch
+0
-70
debian/patches/subvendor.patch less more
0 Last-Update: 2016-10-13
1 Forwarded: not-needed
2 Author: Dmitry Smirnov <onlyjob@member.fsf.org>
3 Description: private libs.
4
5 --- a/schema/image.go
6 +++ b/schema/image.go
7 @@ -21,9 +21,9 @@
8 "fmt"
9
10 "github.com/appc/spec/schema/types"
11
12 - "go4.org/errorutil"
13 + "github.com/appc/spec/Godeps/_workspace/src/go4.org/errorutil"
14 )
15
16 const (
17 ACIExtension = ".aci"
18 --- a/schema/pod.go
19 +++ b/schema/pod.go
20 @@ -21,9 +21,9 @@
21 "fmt"
22
23 "github.com/appc/spec/schema/types"
24
25 - "go4.org/errorutil"
26 + "github.com/appc/spec/Godeps/_workspace/src/go4.org/errorutil"
27 )
28
29 const PodManifestKind = types.ACKind("PodManifest")
30
31 --- a/schema/types/isolator_resources.go
32 +++ b/schema/types/isolator_resources.go
33 @@ -18,9 +18,9 @@
34 "encoding/json"
35 "errors"
36 "fmt"
37
38 - "k8s.io/kubernetes/pkg/api/resource"
39 + "github.com/appc/spec/Godeps/_workspace/src/k8s.io/kubernetes/pkg/api/resource"
40 )
41
42 var (
43 ErrDefaultTrue = errors.New("default must be false")
44 --- a/schema/types/isolator_resources_test.go
45 +++ b/schema/types/isolator_resources_test.go
46 @@ -17,9 +17,9 @@
47 import (
48 "reflect"
49 "testing"
50
51 - "k8s.io/kubernetes/pkg/api/resource"
52 + "github.com/appc/spec/Godeps/_workspace/src/k8s.io/kubernetes/pkg/api/resource"
53 )
54
55 func mustQuantity(s string) *resource.Quantity {
56 q := resource.MustParse(s)
57 --- a/vendor/go4.org/errorutil/highlight.go
58 +++ b/vendor/go4.org/errorutil/highlight.go
59 @@ -14,9 +14,9 @@
60 limitations under the License.
61 */
62
63 // Package errorutil helps make better error messages.
64 -package errorutil // import "go4.org/errorutil"
65 +package errorutil // import "github.com/appc/spec/Godeps/_workspace/src/go4.org/errorutil"
66
67 import (
68 "bufio"
69 "bytes"