Skip to content
This repository has been archived by the owner on Aug 14, 2020. It is now read-only.

Godeps: unrewrite import paths #578

Merged
merged 1 commit into from
Mar 29, 2016
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion Godeps/Godeps.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion Godeps/_workspace/src/golang.org/x/net/html/node.go

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion Godeps/_workspace/src/golang.org/x/net/html/parse.go

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion Godeps/_workspace/src/golang.org/x/net/html/parse_test.go

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion Godeps/_workspace/src/golang.org/x/net/html/token.go

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion build
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ if [ ! -h gopath/src/${REPO_PATH} ]; then
fi

export GOBIN=${PWD}/bin
export GOPATH=${PWD}/gopath
export GOPATH=${PWD}/Godeps/_workspace:${PWD}/gopath

eval $(go env)
export GOOS GOARCH
Expand Down
4 changes: 2 additions & 2 deletions discovery/discovery.go
Original file line number Diff line number Diff line change
Expand Up @@ -22,8 +22,8 @@ import (
"regexp"
"strings"

"github.com/appc/spec/Godeps/_workspace/src/golang.org/x/net/html"
"github.com/appc/spec/Godeps/_workspace/src/golang.org/x/net/html/atom"
"golang.org/x/net/html"
"golang.org/x/net/html/atom"
)

type acMeta struct {
Expand Down
2 changes: 1 addition & 1 deletion schema/image.go
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ import (

"github.com/appc/spec/schema/types"

"github.com/appc/spec/Godeps/_workspace/src/github.com/camlistore/go4/errorutil"
"github.com/camlistore/go4/errorutil"
)

const (
Expand Down
2 changes: 1 addition & 1 deletion schema/pod.go
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ import (

"github.com/appc/spec/schema/types"

"github.com/appc/spec/Godeps/_workspace/src/github.com/camlistore/go4/errorutil"
"github.com/camlistore/go4/errorutil"
)

const PodManifestKind = types.ACKind("PodManifest")
Expand Down
2 changes: 1 addition & 1 deletion schema/types/isolator_resources.go
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ import (
"errors"
"fmt"

"github.com/appc/spec/Godeps/_workspace/src/k8s.io/kubernetes/pkg/api/resource"
"k8s.io/kubernetes/pkg/api/resource"
)

var (
Expand Down
2 changes: 1 addition & 1 deletion schema/types/isolator_resources_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ import (
"reflect"
"testing"

"github.com/appc/spec/Godeps/_workspace/src/k8s.io/kubernetes/pkg/api/resource"
"k8s.io/kubernetes/pkg/api/resource"
)

func mustQuantity(s string) *resource.Quantity {
Expand Down
2 changes: 1 addition & 1 deletion schema/types/semver.go
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ package types
import (
"encoding/json"

"github.com/appc/spec/Godeps/_workspace/src/github.com/coreos/go-semver/semver"
"github.com/coreos/go-semver/semver"
)

var (
Expand Down
2 changes: 1 addition & 1 deletion schema/types/semver_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ import (
"reflect"
"testing"

"github.com/appc/spec/Godeps/_workspace/src/github.com/coreos/go-semver/semver"
"github.com/coreos/go-semver/semver"
)

func TestMarshalSemver(t *testing.T) {
Expand Down