Skip to content

Commit

Permalink
Merge pull request #1890 from weaveworks/1889-vendor-mesh
Browse files Browse the repository at this point in the history
Change import location for mesh
  • Loading branch information
awh committed Jan 15, 2016
2 parents efd4fc4 + 553c8b7 commit 432c190
Show file tree
Hide file tree
Showing 48 changed files with 39 additions and 4,566 deletions.
3 changes: 3 additions & 0 deletions .gitmodules
Expand Up @@ -49,3 +49,6 @@
[submodule "vendor/github.com/docker/machine"]
path = vendor/github.com/docker/machine
url = https://github.com/docker/machine.git
[submodule "vendor/github.com/weaveworks/mesh"]
path = vendor/github.com/weaveworks/mesh
url = https://github.com/weaveworks/mesh
2 changes: 1 addition & 1 deletion Makefile
Expand Up @@ -63,7 +63,7 @@ exes: $(EXES)

$(EXES): $(BUILD_UPTODATE)
$(WEAVER_EXE) $(WEAVEPROXY_EXE) $(WEAVEUTIL_EXE): common/*.go common/*/*.go net/*.go net/*/*.go
$(WEAVER_EXE): router/*.go mesh/*.go ipam/*.go ipam/*/*.go nameserver/*.go prog/weaver/*.go
$(WEAVER_EXE): router/*.go ipam/*.go ipam/*/*.go nameserver/*.go prog/weaver/*.go
$(WEAVEPROXY_EXE): proxy/*.go prog/weaveproxy/*.go
$(WEAVEUTIL_EXE): prog/weaveutil/*.go
$(SIGPROXY_EXE): prog/sigproxy/*.go
Expand Down
3 changes: 2 additions & 1 deletion ipam/allocator.go
Expand Up @@ -7,11 +7,12 @@ import (
"sort"
"time"

"github.com/weaveworks/mesh"

"github.com/weaveworks/weave/common"
"github.com/weaveworks/weave/ipam/paxos"
"github.com/weaveworks/weave/ipam/ring"
"github.com/weaveworks/weave/ipam/space"
"github.com/weaveworks/weave/mesh"
"github.com/weaveworks/weave/net/address"
)

Expand Down
3 changes: 2 additions & 1 deletion ipam/claim.go
Expand Up @@ -3,8 +3,9 @@ package ipam
import (
"fmt"

"github.com/weaveworks/mesh"

"github.com/weaveworks/weave/common"
"github.com/weaveworks/weave/mesh"
"github.com/weaveworks/weave/net/address"
)

Expand Down
2 changes: 1 addition & 1 deletion ipam/paxos/paxos.go
@@ -1,7 +1,7 @@
package paxos

import (
"github.com/weaveworks/weave/mesh"
"github.com/weaveworks/mesh"
)

// The node identifier. The use of the UID here is important: Paxos
Expand Down
2 changes: 1 addition & 1 deletion ipam/paxos/paxos_test.go
Expand Up @@ -6,7 +6,7 @@ import (
"testing"
"time"

"github.com/weaveworks/weave/mesh"
"github.com/weaveworks/mesh"
)

type TestNode struct {
Expand Down
3 changes: 2 additions & 1 deletion ipam/ring/entry.go
Expand Up @@ -3,8 +3,9 @@ package ring
import (
"sort"

"github.com/weaveworks/mesh"

"github.com/weaveworks/weave/common"
"github.com/weaveworks/weave/mesh"
"github.com/weaveworks/weave/net/address"
)

Expand Down
3 changes: 2 additions & 1 deletion ipam/ring/ring.go
Expand Up @@ -12,8 +12,9 @@ import (
"sort"
"time"

"github.com/weaveworks/mesh"

"github.com/weaveworks/weave/common"
"github.com/weaveworks/weave/mesh"
"github.com/weaveworks/weave/net/address"
)

Expand Down
3 changes: 2 additions & 1 deletion ipam/ring/ring_test.go
Expand Up @@ -8,8 +8,9 @@ import (
"testing"

"github.com/stretchr/testify/require"
"github.com/weaveworks/mesh"

"github.com/weaveworks/weave/common"
"github.com/weaveworks/weave/mesh"
"github.com/weaveworks/weave/net/address"
)

Expand Down
3 changes: 2 additions & 1 deletion ipam/testutils_test.go
Expand Up @@ -7,8 +7,9 @@ import (
"testing"
"time"

"github.com/weaveworks/mesh"

"github.com/stretchr/testify/require"
"github.com/weaveworks/weave/mesh"
"github.com/weaveworks/weave/net/address"
"github.com/weaveworks/weave/testing/gossip"
)
Expand Down

0 comments on commit 432c190

Please sign in to comment.