diff --git a/.travis.yml b/.travis.yml index 96e5f2b729..dd92ddf088 100644 --- a/.travis.yml +++ b/.travis.yml @@ -9,18 +9,16 @@ sudo: false install: # Symlink below is needed for Travis CI to work correctly on personal forks of swarm - ln -s $HOME/gopath/src/github.com/${TRAVIS_REPO_SLUG///swarm/} $HOME/gopath/src/github.com/docker - - export GOPATH=${TRAVIS_BUILD_DIR}/Godeps/_workspace:$GOPATH - - export PATH=${TRAVIS_BUILD_DIR}/Godeps/_workspace/bin:$PATH - go get github.com/golang/lint/golint - go get github.com/GeertJohan/fgt script: - script/validate-gofmt - - go vet ./... - - fgt golint ./... + - go vet `go list ./... | grep -v /vendor/` + - fgt golint ./... | grep -v vendor/ | tee /dev/stderr # Lint shell files and make sure they are not space indented. - fgt find test/ -type f \( -name "*.sh" -or -name "*.bash" -or -name "*.bats" \) -exec grep -Hn -e "^ " {} \; - GOOS=darwin go build - GOOS=windows go build - GOOS=linux go build - - go test -v -race ./... + - go test -v -race `go list ./... | grep -v /vendor/` diff --git a/CONTRIBUTING.md b/CONTRIBUTING.md index 02e3c2deb2..0ea594e645 100644 --- a/CONTRIBUTING.md +++ b/CONTRIBUTING.md @@ -40,6 +40,7 @@ mkdir ~/gocode # any name is fine Add these to your `.bashrc`: ```sh +export GO15VENDOREXPERIMENT=1 # only required for go 1.5.x export GOROOT=/usr/local/go export GOPATH=~/gocode export PATH=$PATH:$GOPATH/bin:$GOROOT/bin @@ -118,7 +119,7 @@ Build the binary, installing it to `$GOPATH/bin/swarm`: ```sh cd $GOPATH/src/github.com/docker/swarm -godep go install . +go install . ``` Run the binary you just created: @@ -154,7 +155,7 @@ For complete documentation on how to use Swarm, refer to the Swarm section of [d To run unit tests: ```sh -godep go test -race ./... +go test -race ./... ``` To run integration tests: @@ -228,7 +229,7 @@ git diff # check what added or removed in Godep/Godeps.json To make sure you newly added codes will make the build process happy, you can try building Swarm in the same way as defined in `Dockerfile`. ```sh -$GOBIN/godep go install +go install ``` Then you should find the `swarm` binary under the `$GOBIN` directory. diff --git a/script/validate-gofmt b/script/validate-gofmt index c565976b41..8fc88cc559 100755 --- a/script/validate-gofmt +++ b/script/validate-gofmt @@ -3,7 +3,7 @@ source "$(dirname "$BASH_SOURCE")/.validate" IFS=$'\n' -files=( $(validate_diff --diff-filter=ACMR --name-only -- '*.go' | grep -v '^Godeps/' || true) ) +files=( $(validate_diff --diff-filter=ACMR --name-only -- '*.go' | grep -v '^vendor/' || true) ) unset IFS badFiles=() diff --git a/test/integration/Dockerfile b/test/integration/Dockerfile index b24c0a08b5..fc5daacd20 100644 --- a/test/integration/Dockerfile +++ b/test/integration/Dockerfile @@ -13,9 +13,6 @@ RUN curl -sSL https://storage.googleapis.com/golang/go${GO_VERSION}.linux-amd64. ENV PATH /go/bin:/usr/local/go/bin:$PATH ENV GOPATH /go -# Go dependencies -RUN go get github.com/tools/godep - # install bats RUN cd /usr/local/src/ \ && git clone https://github.com/sstephenson/bats.git \ @@ -24,6 +21,5 @@ RUN cd /usr/local/src/ \ RUN mkdir -p /go/src/github.com/docker/swarm WORKDIR /go/src/github.com/docker/swarm/test/integration -ENV GOPATH /go/src/github.com/docker/swarm/Godeps/_workspace:$GOPATH ENTRYPOINT ["/dind"] diff --git a/Godeps/_workspace/src/github.com/Microsoft/go-winio/LICENSE b/vendor/github.com/Microsoft/go-winio/LICENSE similarity index 100% rename from Godeps/_workspace/src/github.com/Microsoft/go-winio/LICENSE rename to vendor/github.com/Microsoft/go-winio/LICENSE diff --git a/Godeps/_workspace/src/github.com/Microsoft/go-winio/README.md b/vendor/github.com/Microsoft/go-winio/README.md similarity index 100% rename from Godeps/_workspace/src/github.com/Microsoft/go-winio/README.md rename to vendor/github.com/Microsoft/go-winio/README.md diff --git a/Godeps/_workspace/src/github.com/Microsoft/go-winio/archive/tar/LICENSE b/vendor/github.com/Microsoft/go-winio/archive/tar/LICENSE similarity index 100% rename from Godeps/_workspace/src/github.com/Microsoft/go-winio/archive/tar/LICENSE rename to vendor/github.com/Microsoft/go-winio/archive/tar/LICENSE diff --git a/Godeps/_workspace/src/github.com/Microsoft/go-winio/archive/tar/common.go b/vendor/github.com/Microsoft/go-winio/archive/tar/common.go similarity index 100% rename from Godeps/_workspace/src/github.com/Microsoft/go-winio/archive/tar/common.go rename to vendor/github.com/Microsoft/go-winio/archive/tar/common.go diff --git a/Godeps/_workspace/src/github.com/Microsoft/go-winio/archive/tar/reader.go b/vendor/github.com/Microsoft/go-winio/archive/tar/reader.go similarity index 100% rename from Godeps/_workspace/src/github.com/Microsoft/go-winio/archive/tar/reader.go rename to vendor/github.com/Microsoft/go-winio/archive/tar/reader.go diff --git a/Godeps/_workspace/src/github.com/Microsoft/go-winio/archive/tar/stat_atim.go b/vendor/github.com/Microsoft/go-winio/archive/tar/stat_atim.go similarity index 100% rename from Godeps/_workspace/src/github.com/Microsoft/go-winio/archive/tar/stat_atim.go rename to vendor/github.com/Microsoft/go-winio/archive/tar/stat_atim.go diff --git a/Godeps/_workspace/src/github.com/Microsoft/go-winio/archive/tar/stat_atimespec.go b/vendor/github.com/Microsoft/go-winio/archive/tar/stat_atimespec.go similarity index 100% rename from Godeps/_workspace/src/github.com/Microsoft/go-winio/archive/tar/stat_atimespec.go rename to vendor/github.com/Microsoft/go-winio/archive/tar/stat_atimespec.go diff --git a/Godeps/_workspace/src/github.com/Microsoft/go-winio/archive/tar/stat_unix.go b/vendor/github.com/Microsoft/go-winio/archive/tar/stat_unix.go similarity index 100% rename from Godeps/_workspace/src/github.com/Microsoft/go-winio/archive/tar/stat_unix.go rename to vendor/github.com/Microsoft/go-winio/archive/tar/stat_unix.go diff --git a/Godeps/_workspace/src/github.com/Microsoft/go-winio/archive/tar/writer.go b/vendor/github.com/Microsoft/go-winio/archive/tar/writer.go similarity index 100% rename from Godeps/_workspace/src/github.com/Microsoft/go-winio/archive/tar/writer.go rename to vendor/github.com/Microsoft/go-winio/archive/tar/writer.go diff --git a/Godeps/_workspace/src/github.com/Microsoft/go-winio/backup.go b/vendor/github.com/Microsoft/go-winio/backup.go similarity index 100% rename from Godeps/_workspace/src/github.com/Microsoft/go-winio/backup.go rename to vendor/github.com/Microsoft/go-winio/backup.go diff --git a/Godeps/_workspace/src/github.com/Microsoft/go-winio/backuptar/tar.go b/vendor/github.com/Microsoft/go-winio/backuptar/tar.go similarity index 100% rename from Godeps/_workspace/src/github.com/Microsoft/go-winio/backuptar/tar.go rename to vendor/github.com/Microsoft/go-winio/backuptar/tar.go diff --git a/Godeps/_workspace/src/github.com/Microsoft/go-winio/file.go b/vendor/github.com/Microsoft/go-winio/file.go similarity index 100% rename from Godeps/_workspace/src/github.com/Microsoft/go-winio/file.go rename to vendor/github.com/Microsoft/go-winio/file.go diff --git a/Godeps/_workspace/src/github.com/Microsoft/go-winio/fileinfo.go b/vendor/github.com/Microsoft/go-winio/fileinfo.go similarity index 100% rename from Godeps/_workspace/src/github.com/Microsoft/go-winio/fileinfo.go rename to vendor/github.com/Microsoft/go-winio/fileinfo.go diff --git a/Godeps/_workspace/src/github.com/Microsoft/go-winio/pipe.go b/vendor/github.com/Microsoft/go-winio/pipe.go similarity index 100% rename from Godeps/_workspace/src/github.com/Microsoft/go-winio/pipe.go rename to vendor/github.com/Microsoft/go-winio/pipe.go diff --git a/Godeps/_workspace/src/github.com/Microsoft/go-winio/privilege.go b/vendor/github.com/Microsoft/go-winio/privilege.go similarity index 100% rename from Godeps/_workspace/src/github.com/Microsoft/go-winio/privilege.go rename to vendor/github.com/Microsoft/go-winio/privilege.go diff --git a/Godeps/_workspace/src/github.com/Microsoft/go-winio/reparse.go b/vendor/github.com/Microsoft/go-winio/reparse.go similarity index 100% rename from Godeps/_workspace/src/github.com/Microsoft/go-winio/reparse.go rename to vendor/github.com/Microsoft/go-winio/reparse.go diff --git a/Godeps/_workspace/src/github.com/Microsoft/go-winio/sd.go b/vendor/github.com/Microsoft/go-winio/sd.go similarity index 100% rename from Godeps/_workspace/src/github.com/Microsoft/go-winio/sd.go rename to vendor/github.com/Microsoft/go-winio/sd.go diff --git a/Godeps/_workspace/src/github.com/Microsoft/go-winio/syscall.go b/vendor/github.com/Microsoft/go-winio/syscall.go similarity index 100% rename from Godeps/_workspace/src/github.com/Microsoft/go-winio/syscall.go rename to vendor/github.com/Microsoft/go-winio/syscall.go diff --git a/Godeps/_workspace/src/github.com/Microsoft/go-winio/zsyscall.go b/vendor/github.com/Microsoft/go-winio/zsyscall.go similarity index 100% rename from Godeps/_workspace/src/github.com/Microsoft/go-winio/zsyscall.go rename to vendor/github.com/Microsoft/go-winio/zsyscall.go diff --git a/Godeps/_workspace/src/github.com/Sirupsen/logrus/.gitignore b/vendor/github.com/Sirupsen/logrus/.gitignore similarity index 100% rename from Godeps/_workspace/src/github.com/Sirupsen/logrus/.gitignore rename to vendor/github.com/Sirupsen/logrus/.gitignore diff --git a/Godeps/_workspace/src/github.com/Sirupsen/logrus/.travis.yml b/vendor/github.com/Sirupsen/logrus/.travis.yml similarity index 100% rename from Godeps/_workspace/src/github.com/Sirupsen/logrus/.travis.yml rename to vendor/github.com/Sirupsen/logrus/.travis.yml diff --git a/Godeps/_workspace/src/github.com/Sirupsen/logrus/CHANGELOG.md b/vendor/github.com/Sirupsen/logrus/CHANGELOG.md similarity index 100% rename from Godeps/_workspace/src/github.com/Sirupsen/logrus/CHANGELOG.md rename to vendor/github.com/Sirupsen/logrus/CHANGELOG.md diff --git a/Godeps/_workspace/src/github.com/Sirupsen/logrus/LICENSE b/vendor/github.com/Sirupsen/logrus/LICENSE similarity index 100% rename from Godeps/_workspace/src/github.com/Sirupsen/logrus/LICENSE rename to vendor/github.com/Sirupsen/logrus/LICENSE diff --git a/Godeps/_workspace/src/github.com/Sirupsen/logrus/README.md b/vendor/github.com/Sirupsen/logrus/README.md similarity index 100% rename from Godeps/_workspace/src/github.com/Sirupsen/logrus/README.md rename to vendor/github.com/Sirupsen/logrus/README.md diff --git a/Godeps/_workspace/src/github.com/Sirupsen/logrus/doc.go b/vendor/github.com/Sirupsen/logrus/doc.go similarity index 100% rename from Godeps/_workspace/src/github.com/Sirupsen/logrus/doc.go rename to vendor/github.com/Sirupsen/logrus/doc.go diff --git a/Godeps/_workspace/src/github.com/Sirupsen/logrus/entry.go b/vendor/github.com/Sirupsen/logrus/entry.go similarity index 100% rename from Godeps/_workspace/src/github.com/Sirupsen/logrus/entry.go rename to vendor/github.com/Sirupsen/logrus/entry.go diff --git a/Godeps/_workspace/src/github.com/Sirupsen/logrus/examples/basic/basic.go b/vendor/github.com/Sirupsen/logrus/examples/basic/basic.go similarity index 100% rename from Godeps/_workspace/src/github.com/Sirupsen/logrus/examples/basic/basic.go rename to vendor/github.com/Sirupsen/logrus/examples/basic/basic.go diff --git a/Godeps/_workspace/src/github.com/Sirupsen/logrus/examples/hook/hook.go b/vendor/github.com/Sirupsen/logrus/examples/hook/hook.go similarity index 100% rename from Godeps/_workspace/src/github.com/Sirupsen/logrus/examples/hook/hook.go rename to vendor/github.com/Sirupsen/logrus/examples/hook/hook.go diff --git a/Godeps/_workspace/src/github.com/Sirupsen/logrus/exported.go b/vendor/github.com/Sirupsen/logrus/exported.go similarity index 100% rename from Godeps/_workspace/src/github.com/Sirupsen/logrus/exported.go rename to vendor/github.com/Sirupsen/logrus/exported.go diff --git a/Godeps/_workspace/src/github.com/Sirupsen/logrus/formatter.go b/vendor/github.com/Sirupsen/logrus/formatter.go similarity index 100% rename from Godeps/_workspace/src/github.com/Sirupsen/logrus/formatter.go rename to vendor/github.com/Sirupsen/logrus/formatter.go diff --git a/Godeps/_workspace/src/github.com/Sirupsen/logrus/formatters/logstash/logstash.go b/vendor/github.com/Sirupsen/logrus/formatters/logstash/logstash.go similarity index 100% rename from Godeps/_workspace/src/github.com/Sirupsen/logrus/formatters/logstash/logstash.go rename to vendor/github.com/Sirupsen/logrus/formatters/logstash/logstash.go diff --git a/Godeps/_workspace/src/github.com/Sirupsen/logrus/hooks.go b/vendor/github.com/Sirupsen/logrus/hooks.go similarity index 100% rename from Godeps/_workspace/src/github.com/Sirupsen/logrus/hooks.go rename to vendor/github.com/Sirupsen/logrus/hooks.go diff --git a/Godeps/_workspace/src/github.com/Sirupsen/logrus/hooks/syslog/README.md b/vendor/github.com/Sirupsen/logrus/hooks/syslog/README.md similarity index 100% rename from Godeps/_workspace/src/github.com/Sirupsen/logrus/hooks/syslog/README.md rename to vendor/github.com/Sirupsen/logrus/hooks/syslog/README.md diff --git a/Godeps/_workspace/src/github.com/Sirupsen/logrus/hooks/syslog/syslog.go b/vendor/github.com/Sirupsen/logrus/hooks/syslog/syslog.go similarity index 100% rename from Godeps/_workspace/src/github.com/Sirupsen/logrus/hooks/syslog/syslog.go rename to vendor/github.com/Sirupsen/logrus/hooks/syslog/syslog.go diff --git a/Godeps/_workspace/src/github.com/Sirupsen/logrus/json_formatter.go b/vendor/github.com/Sirupsen/logrus/json_formatter.go similarity index 100% rename from Godeps/_workspace/src/github.com/Sirupsen/logrus/json_formatter.go rename to vendor/github.com/Sirupsen/logrus/json_formatter.go diff --git a/Godeps/_workspace/src/github.com/Sirupsen/logrus/logger.go b/vendor/github.com/Sirupsen/logrus/logger.go similarity index 100% rename from Godeps/_workspace/src/github.com/Sirupsen/logrus/logger.go rename to vendor/github.com/Sirupsen/logrus/logger.go diff --git a/Godeps/_workspace/src/github.com/Sirupsen/logrus/logrus.go b/vendor/github.com/Sirupsen/logrus/logrus.go similarity index 100% rename from Godeps/_workspace/src/github.com/Sirupsen/logrus/logrus.go rename to vendor/github.com/Sirupsen/logrus/logrus.go diff --git a/Godeps/_workspace/src/github.com/Sirupsen/logrus/terminal_bsd.go b/vendor/github.com/Sirupsen/logrus/terminal_bsd.go similarity index 100% rename from Godeps/_workspace/src/github.com/Sirupsen/logrus/terminal_bsd.go rename to vendor/github.com/Sirupsen/logrus/terminal_bsd.go diff --git a/Godeps/_workspace/src/github.com/Sirupsen/logrus/terminal_linux.go b/vendor/github.com/Sirupsen/logrus/terminal_linux.go similarity index 100% rename from Godeps/_workspace/src/github.com/Sirupsen/logrus/terminal_linux.go rename to vendor/github.com/Sirupsen/logrus/terminal_linux.go diff --git a/Godeps/_workspace/src/github.com/Sirupsen/logrus/terminal_notwindows.go b/vendor/github.com/Sirupsen/logrus/terminal_notwindows.go similarity index 100% rename from Godeps/_workspace/src/github.com/Sirupsen/logrus/terminal_notwindows.go rename to vendor/github.com/Sirupsen/logrus/terminal_notwindows.go diff --git a/Godeps/_workspace/src/github.com/Sirupsen/logrus/terminal_solaris.go b/vendor/github.com/Sirupsen/logrus/terminal_solaris.go similarity index 100% rename from Godeps/_workspace/src/github.com/Sirupsen/logrus/terminal_solaris.go rename to vendor/github.com/Sirupsen/logrus/terminal_solaris.go diff --git a/Godeps/_workspace/src/github.com/Sirupsen/logrus/terminal_windows.go b/vendor/github.com/Sirupsen/logrus/terminal_windows.go similarity index 100% rename from Godeps/_workspace/src/github.com/Sirupsen/logrus/terminal_windows.go rename to vendor/github.com/Sirupsen/logrus/terminal_windows.go diff --git a/Godeps/_workspace/src/github.com/Sirupsen/logrus/text_formatter.go b/vendor/github.com/Sirupsen/logrus/text_formatter.go similarity index 100% rename from Godeps/_workspace/src/github.com/Sirupsen/logrus/text_formatter.go rename to vendor/github.com/Sirupsen/logrus/text_formatter.go diff --git a/Godeps/_workspace/src/github.com/Sirupsen/logrus/writer.go b/vendor/github.com/Sirupsen/logrus/writer.go similarity index 100% rename from Godeps/_workspace/src/github.com/Sirupsen/logrus/writer.go rename to vendor/github.com/Sirupsen/logrus/writer.go diff --git a/Godeps/_workspace/src/github.com/codegangsta/cli/.travis.yml b/vendor/github.com/codegangsta/cli/.travis.yml similarity index 100% rename from Godeps/_workspace/src/github.com/codegangsta/cli/.travis.yml rename to vendor/github.com/codegangsta/cli/.travis.yml diff --git a/Godeps/_workspace/src/github.com/codegangsta/cli/LICENSE b/vendor/github.com/codegangsta/cli/LICENSE similarity index 100% rename from Godeps/_workspace/src/github.com/codegangsta/cli/LICENSE rename to vendor/github.com/codegangsta/cli/LICENSE diff --git a/Godeps/_workspace/src/github.com/codegangsta/cli/README.md b/vendor/github.com/codegangsta/cli/README.md similarity index 100% rename from Godeps/_workspace/src/github.com/codegangsta/cli/README.md rename to vendor/github.com/codegangsta/cli/README.md diff --git a/Godeps/_workspace/src/github.com/codegangsta/cli/app.go b/vendor/github.com/codegangsta/cli/app.go similarity index 100% rename from Godeps/_workspace/src/github.com/codegangsta/cli/app.go rename to vendor/github.com/codegangsta/cli/app.go diff --git a/Godeps/_workspace/src/github.com/codegangsta/cli/autocomplete/bash_autocomplete b/vendor/github.com/codegangsta/cli/autocomplete/bash_autocomplete similarity index 100% rename from Godeps/_workspace/src/github.com/codegangsta/cli/autocomplete/bash_autocomplete rename to vendor/github.com/codegangsta/cli/autocomplete/bash_autocomplete diff --git a/Godeps/_workspace/src/github.com/codegangsta/cli/autocomplete/zsh_autocomplete b/vendor/github.com/codegangsta/cli/autocomplete/zsh_autocomplete similarity index 100% rename from Godeps/_workspace/src/github.com/codegangsta/cli/autocomplete/zsh_autocomplete rename to vendor/github.com/codegangsta/cli/autocomplete/zsh_autocomplete diff --git a/Godeps/_workspace/src/github.com/codegangsta/cli/cli.go b/vendor/github.com/codegangsta/cli/cli.go similarity index 100% rename from Godeps/_workspace/src/github.com/codegangsta/cli/cli.go rename to vendor/github.com/codegangsta/cli/cli.go diff --git a/Godeps/_workspace/src/github.com/codegangsta/cli/command.go b/vendor/github.com/codegangsta/cli/command.go similarity index 100% rename from Godeps/_workspace/src/github.com/codegangsta/cli/command.go rename to vendor/github.com/codegangsta/cli/command.go diff --git a/Godeps/_workspace/src/github.com/codegangsta/cli/context.go b/vendor/github.com/codegangsta/cli/context.go similarity index 100% rename from Godeps/_workspace/src/github.com/codegangsta/cli/context.go rename to vendor/github.com/codegangsta/cli/context.go diff --git a/Godeps/_workspace/src/github.com/codegangsta/cli/flag.go b/vendor/github.com/codegangsta/cli/flag.go similarity index 100% rename from Godeps/_workspace/src/github.com/codegangsta/cli/flag.go rename to vendor/github.com/codegangsta/cli/flag.go diff --git a/Godeps/_workspace/src/github.com/codegangsta/cli/help.go b/vendor/github.com/codegangsta/cli/help.go similarity index 100% rename from Godeps/_workspace/src/github.com/codegangsta/cli/help.go rename to vendor/github.com/codegangsta/cli/help.go diff --git a/Godeps/_workspace/src/github.com/coreos/etcd/LICENSE b/vendor/github.com/coreos/etcd/LICENSE similarity index 100% rename from Godeps/_workspace/src/github.com/coreos/etcd/LICENSE rename to vendor/github.com/coreos/etcd/LICENSE diff --git a/Godeps/_workspace/src/github.com/coreos/etcd/NOTICE b/vendor/github.com/coreos/etcd/NOTICE similarity index 100% rename from Godeps/_workspace/src/github.com/coreos/etcd/NOTICE rename to vendor/github.com/coreos/etcd/NOTICE diff --git a/Godeps/_workspace/src/github.com/coreos/etcd/client/README.md b/vendor/github.com/coreos/etcd/client/README.md similarity index 100% rename from Godeps/_workspace/src/github.com/coreos/etcd/client/README.md rename to vendor/github.com/coreos/etcd/client/README.md diff --git a/Godeps/_workspace/src/github.com/coreos/etcd/client/auth_role.go b/vendor/github.com/coreos/etcd/client/auth_role.go similarity index 100% rename from Godeps/_workspace/src/github.com/coreos/etcd/client/auth_role.go rename to vendor/github.com/coreos/etcd/client/auth_role.go diff --git a/Godeps/_workspace/src/github.com/coreos/etcd/client/auth_user.go b/vendor/github.com/coreos/etcd/client/auth_user.go similarity index 100% rename from Godeps/_workspace/src/github.com/coreos/etcd/client/auth_user.go rename to vendor/github.com/coreos/etcd/client/auth_user.go diff --git a/Godeps/_workspace/src/github.com/coreos/etcd/client/cancelreq.go b/vendor/github.com/coreos/etcd/client/cancelreq.go similarity index 100% rename from Godeps/_workspace/src/github.com/coreos/etcd/client/cancelreq.go rename to vendor/github.com/coreos/etcd/client/cancelreq.go diff --git a/Godeps/_workspace/src/github.com/coreos/etcd/client/cancelreq_go14.go b/vendor/github.com/coreos/etcd/client/cancelreq_go14.go similarity index 100% rename from Godeps/_workspace/src/github.com/coreos/etcd/client/cancelreq_go14.go rename to vendor/github.com/coreos/etcd/client/cancelreq_go14.go diff --git a/Godeps/_workspace/src/github.com/coreos/etcd/client/client.go b/vendor/github.com/coreos/etcd/client/client.go similarity index 100% rename from Godeps/_workspace/src/github.com/coreos/etcd/client/client.go rename to vendor/github.com/coreos/etcd/client/client.go diff --git a/Godeps/_workspace/src/github.com/coreos/etcd/client/cluster_error.go b/vendor/github.com/coreos/etcd/client/cluster_error.go similarity index 100% rename from Godeps/_workspace/src/github.com/coreos/etcd/client/cluster_error.go rename to vendor/github.com/coreos/etcd/client/cluster_error.go diff --git a/Godeps/_workspace/src/github.com/coreos/etcd/client/curl.go b/vendor/github.com/coreos/etcd/client/curl.go similarity index 100% rename from Godeps/_workspace/src/github.com/coreos/etcd/client/curl.go rename to vendor/github.com/coreos/etcd/client/curl.go diff --git a/Godeps/_workspace/src/github.com/coreos/etcd/client/discover.go b/vendor/github.com/coreos/etcd/client/discover.go similarity index 100% rename from Godeps/_workspace/src/github.com/coreos/etcd/client/discover.go rename to vendor/github.com/coreos/etcd/client/discover.go diff --git a/Godeps/_workspace/src/github.com/coreos/etcd/client/doc.go b/vendor/github.com/coreos/etcd/client/doc.go similarity index 100% rename from Godeps/_workspace/src/github.com/coreos/etcd/client/doc.go rename to vendor/github.com/coreos/etcd/client/doc.go diff --git a/Godeps/_workspace/src/github.com/coreos/etcd/client/keys.generated.go b/vendor/github.com/coreos/etcd/client/keys.generated.go similarity index 100% rename from Godeps/_workspace/src/github.com/coreos/etcd/client/keys.generated.go rename to vendor/github.com/coreos/etcd/client/keys.generated.go diff --git a/Godeps/_workspace/src/github.com/coreos/etcd/client/keys.go b/vendor/github.com/coreos/etcd/client/keys.go similarity index 100% rename from Godeps/_workspace/src/github.com/coreos/etcd/client/keys.go rename to vendor/github.com/coreos/etcd/client/keys.go diff --git a/Godeps/_workspace/src/github.com/coreos/etcd/client/members.go b/vendor/github.com/coreos/etcd/client/members.go similarity index 100% rename from Godeps/_workspace/src/github.com/coreos/etcd/client/members.go rename to vendor/github.com/coreos/etcd/client/members.go diff --git a/Godeps/_workspace/src/github.com/coreos/etcd/client/srv.go b/vendor/github.com/coreos/etcd/client/srv.go similarity index 100% rename from Godeps/_workspace/src/github.com/coreos/etcd/client/srv.go rename to vendor/github.com/coreos/etcd/client/srv.go diff --git a/Godeps/_workspace/src/github.com/coreos/etcd/pkg/pathutil/path.go b/vendor/github.com/coreos/etcd/pkg/pathutil/path.go similarity index 100% rename from Godeps/_workspace/src/github.com/coreos/etcd/pkg/pathutil/path.go rename to vendor/github.com/coreos/etcd/pkg/pathutil/path.go diff --git a/Godeps/_workspace/src/github.com/coreos/etcd/pkg/types/doc.go b/vendor/github.com/coreos/etcd/pkg/types/doc.go similarity index 100% rename from Godeps/_workspace/src/github.com/coreos/etcd/pkg/types/doc.go rename to vendor/github.com/coreos/etcd/pkg/types/doc.go diff --git a/Godeps/_workspace/src/github.com/coreos/etcd/pkg/types/id.go b/vendor/github.com/coreos/etcd/pkg/types/id.go similarity index 100% rename from Godeps/_workspace/src/github.com/coreos/etcd/pkg/types/id.go rename to vendor/github.com/coreos/etcd/pkg/types/id.go diff --git a/Godeps/_workspace/src/github.com/coreos/etcd/pkg/types/set.go b/vendor/github.com/coreos/etcd/pkg/types/set.go similarity index 100% rename from Godeps/_workspace/src/github.com/coreos/etcd/pkg/types/set.go rename to vendor/github.com/coreos/etcd/pkg/types/set.go diff --git a/Godeps/_workspace/src/github.com/coreos/etcd/pkg/types/slice.go b/vendor/github.com/coreos/etcd/pkg/types/slice.go similarity index 100% rename from Godeps/_workspace/src/github.com/coreos/etcd/pkg/types/slice.go rename to vendor/github.com/coreos/etcd/pkg/types/slice.go diff --git a/Godeps/_workspace/src/github.com/coreos/etcd/pkg/types/urls.go b/vendor/github.com/coreos/etcd/pkg/types/urls.go similarity index 100% rename from Godeps/_workspace/src/github.com/coreos/etcd/pkg/types/urls.go rename to vendor/github.com/coreos/etcd/pkg/types/urls.go diff --git a/Godeps/_workspace/src/github.com/coreos/etcd/pkg/types/urlsmap.go b/vendor/github.com/coreos/etcd/pkg/types/urlsmap.go similarity index 100% rename from Godeps/_workspace/src/github.com/coreos/etcd/pkg/types/urlsmap.go rename to vendor/github.com/coreos/etcd/pkg/types/urlsmap.go diff --git a/Godeps/_workspace/src/github.com/davecgh/go-spew/LICENSE b/vendor/github.com/davecgh/go-spew/LICENSE similarity index 100% rename from Godeps/_workspace/src/github.com/davecgh/go-spew/LICENSE rename to vendor/github.com/davecgh/go-spew/LICENSE diff --git a/Godeps/_workspace/src/github.com/davecgh/go-spew/spew/bypass.go b/vendor/github.com/davecgh/go-spew/spew/bypass.go similarity index 100% rename from Godeps/_workspace/src/github.com/davecgh/go-spew/spew/bypass.go rename to vendor/github.com/davecgh/go-spew/spew/bypass.go diff --git a/Godeps/_workspace/src/github.com/davecgh/go-spew/spew/bypasssafe.go b/vendor/github.com/davecgh/go-spew/spew/bypasssafe.go similarity index 100% rename from Godeps/_workspace/src/github.com/davecgh/go-spew/spew/bypasssafe.go rename to vendor/github.com/davecgh/go-spew/spew/bypasssafe.go diff --git a/Godeps/_workspace/src/github.com/davecgh/go-spew/spew/common.go b/vendor/github.com/davecgh/go-spew/spew/common.go similarity index 100% rename from Godeps/_workspace/src/github.com/davecgh/go-spew/spew/common.go rename to vendor/github.com/davecgh/go-spew/spew/common.go diff --git a/Godeps/_workspace/src/github.com/davecgh/go-spew/spew/config.go b/vendor/github.com/davecgh/go-spew/spew/config.go similarity index 100% rename from Godeps/_workspace/src/github.com/davecgh/go-spew/spew/config.go rename to vendor/github.com/davecgh/go-spew/spew/config.go diff --git a/Godeps/_workspace/src/github.com/davecgh/go-spew/spew/doc.go b/vendor/github.com/davecgh/go-spew/spew/doc.go similarity index 100% rename from Godeps/_workspace/src/github.com/davecgh/go-spew/spew/doc.go rename to vendor/github.com/davecgh/go-spew/spew/doc.go diff --git a/Godeps/_workspace/src/github.com/davecgh/go-spew/spew/dump.go b/vendor/github.com/davecgh/go-spew/spew/dump.go similarity index 100% rename from Godeps/_workspace/src/github.com/davecgh/go-spew/spew/dump.go rename to vendor/github.com/davecgh/go-spew/spew/dump.go diff --git a/Godeps/_workspace/src/github.com/davecgh/go-spew/spew/format.go b/vendor/github.com/davecgh/go-spew/spew/format.go similarity index 100% rename from Godeps/_workspace/src/github.com/davecgh/go-spew/spew/format.go rename to vendor/github.com/davecgh/go-spew/spew/format.go diff --git a/Godeps/_workspace/src/github.com/davecgh/go-spew/spew/spew.go b/vendor/github.com/davecgh/go-spew/spew/spew.go similarity index 100% rename from Godeps/_workspace/src/github.com/davecgh/go-spew/spew/spew.go rename to vendor/github.com/davecgh/go-spew/spew/spew.go diff --git a/Godeps/_workspace/src/github.com/docker/distribution/LICENSE b/vendor/github.com/docker/distribution/LICENSE similarity index 100% rename from Godeps/_workspace/src/github.com/docker/distribution/LICENSE rename to vendor/github.com/docker/distribution/LICENSE diff --git a/Godeps/_workspace/src/github.com/docker/distribution/digest/digest.go b/vendor/github.com/docker/distribution/digest/digest.go similarity index 100% rename from Godeps/_workspace/src/github.com/docker/distribution/digest/digest.go rename to vendor/github.com/docker/distribution/digest/digest.go diff --git a/Godeps/_workspace/src/github.com/docker/distribution/digest/digester.go b/vendor/github.com/docker/distribution/digest/digester.go similarity index 100% rename from Godeps/_workspace/src/github.com/docker/distribution/digest/digester.go rename to vendor/github.com/docker/distribution/digest/digester.go diff --git a/Godeps/_workspace/src/github.com/docker/distribution/digest/doc.go b/vendor/github.com/docker/distribution/digest/doc.go similarity index 100% rename from Godeps/_workspace/src/github.com/docker/distribution/digest/doc.go rename to vendor/github.com/docker/distribution/digest/doc.go diff --git a/Godeps/_workspace/src/github.com/docker/distribution/digest/set.go b/vendor/github.com/docker/distribution/digest/set.go similarity index 100% rename from Godeps/_workspace/src/github.com/docker/distribution/digest/set.go rename to vendor/github.com/docker/distribution/digest/set.go diff --git a/Godeps/_workspace/src/github.com/docker/distribution/digest/verifiers.go b/vendor/github.com/docker/distribution/digest/verifiers.go similarity index 100% rename from Godeps/_workspace/src/github.com/docker/distribution/digest/verifiers.go rename to vendor/github.com/docker/distribution/digest/verifiers.go diff --git a/Godeps/_workspace/src/github.com/docker/distribution/reference/reference.go b/vendor/github.com/docker/distribution/reference/reference.go similarity index 100% rename from Godeps/_workspace/src/github.com/docker/distribution/reference/reference.go rename to vendor/github.com/docker/distribution/reference/reference.go diff --git a/Godeps/_workspace/src/github.com/docker/distribution/reference/regexp.go b/vendor/github.com/docker/distribution/reference/regexp.go similarity index 100% rename from Godeps/_workspace/src/github.com/docker/distribution/reference/regexp.go rename to vendor/github.com/docker/distribution/reference/regexp.go diff --git a/Godeps/_workspace/src/github.com/docker/docker/LICENSE b/vendor/github.com/docker/docker/LICENSE similarity index 100% rename from Godeps/_workspace/src/github.com/docker/docker/LICENSE rename to vendor/github.com/docker/docker/LICENSE diff --git a/Godeps/_workspace/src/github.com/docker/docker/NOTICE b/vendor/github.com/docker/docker/NOTICE similarity index 100% rename from Godeps/_workspace/src/github.com/docker/docker/NOTICE rename to vendor/github.com/docker/docker/NOTICE diff --git a/Godeps/_workspace/src/github.com/docker/docker/contrib/docker-engine-selinux/LICENSE b/vendor/github.com/docker/docker/contrib/docker-engine-selinux/LICENSE similarity index 100% rename from Godeps/_workspace/src/github.com/docker/docker/contrib/docker-engine-selinux/LICENSE rename to vendor/github.com/docker/docker/contrib/docker-engine-selinux/LICENSE diff --git a/Godeps/_workspace/src/github.com/docker/docker/contrib/syntax/vim/LICENSE b/vendor/github.com/docker/docker/contrib/syntax/vim/LICENSE similarity index 100% rename from Godeps/_workspace/src/github.com/docker/docker/contrib/syntax/vim/LICENSE rename to vendor/github.com/docker/docker/contrib/syntax/vim/LICENSE diff --git a/Godeps/_workspace/src/github.com/docker/docker/pkg/discovery/README.md b/vendor/github.com/docker/docker/pkg/discovery/README.md similarity index 100% rename from Godeps/_workspace/src/github.com/docker/docker/pkg/discovery/README.md rename to vendor/github.com/docker/docker/pkg/discovery/README.md diff --git a/Godeps/_workspace/src/github.com/docker/docker/pkg/discovery/backends.go b/vendor/github.com/docker/docker/pkg/discovery/backends.go similarity index 100% rename from Godeps/_workspace/src/github.com/docker/docker/pkg/discovery/backends.go rename to vendor/github.com/docker/docker/pkg/discovery/backends.go diff --git a/Godeps/_workspace/src/github.com/docker/docker/pkg/discovery/discovery.go b/vendor/github.com/docker/docker/pkg/discovery/discovery.go similarity index 100% rename from Godeps/_workspace/src/github.com/docker/docker/pkg/discovery/discovery.go rename to vendor/github.com/docker/docker/pkg/discovery/discovery.go diff --git a/Godeps/_workspace/src/github.com/docker/docker/pkg/discovery/entry.go b/vendor/github.com/docker/docker/pkg/discovery/entry.go similarity index 100% rename from Godeps/_workspace/src/github.com/docker/docker/pkg/discovery/entry.go rename to vendor/github.com/docker/docker/pkg/discovery/entry.go diff --git a/Godeps/_workspace/src/github.com/docker/docker/pkg/discovery/file/file.go b/vendor/github.com/docker/docker/pkg/discovery/file/file.go similarity index 100% rename from Godeps/_workspace/src/github.com/docker/docker/pkg/discovery/file/file.go rename to vendor/github.com/docker/docker/pkg/discovery/file/file.go diff --git a/Godeps/_workspace/src/github.com/docker/docker/pkg/discovery/generator.go b/vendor/github.com/docker/docker/pkg/discovery/generator.go similarity index 100% rename from Godeps/_workspace/src/github.com/docker/docker/pkg/discovery/generator.go rename to vendor/github.com/docker/docker/pkg/discovery/generator.go diff --git a/Godeps/_workspace/src/github.com/docker/docker/pkg/discovery/kv/kv.go b/vendor/github.com/docker/docker/pkg/discovery/kv/kv.go similarity index 100% rename from Godeps/_workspace/src/github.com/docker/docker/pkg/discovery/kv/kv.go rename to vendor/github.com/docker/docker/pkg/discovery/kv/kv.go diff --git a/Godeps/_workspace/src/github.com/docker/docker/pkg/discovery/memory/memory.go b/vendor/github.com/docker/docker/pkg/discovery/memory/memory.go similarity index 100% rename from Godeps/_workspace/src/github.com/docker/docker/pkg/discovery/memory/memory.go rename to vendor/github.com/docker/docker/pkg/discovery/memory/memory.go diff --git a/Godeps/_workspace/src/github.com/docker/docker/pkg/discovery/nodes/nodes.go b/vendor/github.com/docker/docker/pkg/discovery/nodes/nodes.go similarity index 100% rename from Godeps/_workspace/src/github.com/docker/docker/pkg/discovery/nodes/nodes.go rename to vendor/github.com/docker/docker/pkg/discovery/nodes/nodes.go diff --git a/Godeps/_workspace/src/github.com/docker/docker/pkg/ioutils/bytespipe.go b/vendor/github.com/docker/docker/pkg/ioutils/bytespipe.go similarity index 100% rename from Godeps/_workspace/src/github.com/docker/docker/pkg/ioutils/bytespipe.go rename to vendor/github.com/docker/docker/pkg/ioutils/bytespipe.go diff --git a/Godeps/_workspace/src/github.com/docker/docker/pkg/ioutils/fmt.go b/vendor/github.com/docker/docker/pkg/ioutils/fmt.go similarity index 100% rename from Godeps/_workspace/src/github.com/docker/docker/pkg/ioutils/fmt.go rename to vendor/github.com/docker/docker/pkg/ioutils/fmt.go diff --git a/Godeps/_workspace/src/github.com/docker/docker/pkg/ioutils/multireader.go b/vendor/github.com/docker/docker/pkg/ioutils/multireader.go similarity index 100% rename from Godeps/_workspace/src/github.com/docker/docker/pkg/ioutils/multireader.go rename to vendor/github.com/docker/docker/pkg/ioutils/multireader.go diff --git a/Godeps/_workspace/src/github.com/docker/docker/pkg/ioutils/readers.go b/vendor/github.com/docker/docker/pkg/ioutils/readers.go similarity index 100% rename from Godeps/_workspace/src/github.com/docker/docker/pkg/ioutils/readers.go rename to vendor/github.com/docker/docker/pkg/ioutils/readers.go diff --git a/Godeps/_workspace/src/github.com/docker/docker/pkg/ioutils/scheduler.go b/vendor/github.com/docker/docker/pkg/ioutils/scheduler.go similarity index 100% rename from Godeps/_workspace/src/github.com/docker/docker/pkg/ioutils/scheduler.go rename to vendor/github.com/docker/docker/pkg/ioutils/scheduler.go diff --git a/Godeps/_workspace/src/github.com/docker/docker/pkg/ioutils/scheduler_gccgo.go b/vendor/github.com/docker/docker/pkg/ioutils/scheduler_gccgo.go similarity index 100% rename from Godeps/_workspace/src/github.com/docker/docker/pkg/ioutils/scheduler_gccgo.go rename to vendor/github.com/docker/docker/pkg/ioutils/scheduler_gccgo.go diff --git a/Godeps/_workspace/src/github.com/docker/docker/pkg/ioutils/temp_unix.go b/vendor/github.com/docker/docker/pkg/ioutils/temp_unix.go similarity index 100% rename from Godeps/_workspace/src/github.com/docker/docker/pkg/ioutils/temp_unix.go rename to vendor/github.com/docker/docker/pkg/ioutils/temp_unix.go diff --git a/Godeps/_workspace/src/github.com/docker/docker/pkg/ioutils/temp_windows.go b/vendor/github.com/docker/docker/pkg/ioutils/temp_windows.go similarity index 100% rename from Godeps/_workspace/src/github.com/docker/docker/pkg/ioutils/temp_windows.go rename to vendor/github.com/docker/docker/pkg/ioutils/temp_windows.go diff --git a/Godeps/_workspace/src/github.com/docker/docker/pkg/ioutils/writeflusher.go b/vendor/github.com/docker/docker/pkg/ioutils/writeflusher.go similarity index 100% rename from Godeps/_workspace/src/github.com/docker/docker/pkg/ioutils/writeflusher.go rename to vendor/github.com/docker/docker/pkg/ioutils/writeflusher.go diff --git a/Godeps/_workspace/src/github.com/docker/docker/pkg/ioutils/writers.go b/vendor/github.com/docker/docker/pkg/ioutils/writers.go similarity index 100% rename from Godeps/_workspace/src/github.com/docker/docker/pkg/ioutils/writers.go rename to vendor/github.com/docker/docker/pkg/ioutils/writers.go diff --git a/Godeps/_workspace/src/github.com/docker/docker/pkg/longpath/longpath.go b/vendor/github.com/docker/docker/pkg/longpath/longpath.go similarity index 100% rename from Godeps/_workspace/src/github.com/docker/docker/pkg/longpath/longpath.go rename to vendor/github.com/docker/docker/pkg/longpath/longpath.go diff --git a/Godeps/_workspace/src/github.com/docker/docker/pkg/mflag/LICENSE b/vendor/github.com/docker/docker/pkg/mflag/LICENSE similarity index 100% rename from Godeps/_workspace/src/github.com/docker/docker/pkg/mflag/LICENSE rename to vendor/github.com/docker/docker/pkg/mflag/LICENSE diff --git a/Godeps/_workspace/src/github.com/docker/docker/pkg/parsers/kernel/kernel.go b/vendor/github.com/docker/docker/pkg/parsers/kernel/kernel.go similarity index 100% rename from Godeps/_workspace/src/github.com/docker/docker/pkg/parsers/kernel/kernel.go rename to vendor/github.com/docker/docker/pkg/parsers/kernel/kernel.go diff --git a/Godeps/_workspace/src/github.com/docker/docker/pkg/parsers/kernel/kernel_windows.go b/vendor/github.com/docker/docker/pkg/parsers/kernel/kernel_windows.go similarity index 100% rename from Godeps/_workspace/src/github.com/docker/docker/pkg/parsers/kernel/kernel_windows.go rename to vendor/github.com/docker/docker/pkg/parsers/kernel/kernel_windows.go diff --git a/Godeps/_workspace/src/github.com/docker/docker/pkg/parsers/kernel/uname_linux.go b/vendor/github.com/docker/docker/pkg/parsers/kernel/uname_linux.go similarity index 100% rename from Godeps/_workspace/src/github.com/docker/docker/pkg/parsers/kernel/uname_linux.go rename to vendor/github.com/docker/docker/pkg/parsers/kernel/uname_linux.go diff --git a/Godeps/_workspace/src/github.com/docker/docker/pkg/parsers/kernel/uname_unsupported.go b/vendor/github.com/docker/docker/pkg/parsers/kernel/uname_unsupported.go similarity index 100% rename from Godeps/_workspace/src/github.com/docker/docker/pkg/parsers/kernel/uname_unsupported.go rename to vendor/github.com/docker/docker/pkg/parsers/kernel/uname_unsupported.go diff --git a/Godeps/_workspace/src/github.com/docker/docker/pkg/random/random.go b/vendor/github.com/docker/docker/pkg/random/random.go similarity index 100% rename from Godeps/_workspace/src/github.com/docker/docker/pkg/random/random.go rename to vendor/github.com/docker/docker/pkg/random/random.go diff --git a/Godeps/_workspace/src/github.com/docker/docker/pkg/stringid/README.md b/vendor/github.com/docker/docker/pkg/stringid/README.md similarity index 100% rename from Godeps/_workspace/src/github.com/docker/docker/pkg/stringid/README.md rename to vendor/github.com/docker/docker/pkg/stringid/README.md diff --git a/Godeps/_workspace/src/github.com/docker/docker/pkg/stringid/stringid.go b/vendor/github.com/docker/docker/pkg/stringid/stringid.go similarity index 100% rename from Godeps/_workspace/src/github.com/docker/docker/pkg/stringid/stringid.go rename to vendor/github.com/docker/docker/pkg/stringid/stringid.go diff --git a/Godeps/_workspace/src/github.com/docker/docker/pkg/symlink/LICENSE.APACHE b/vendor/github.com/docker/docker/pkg/symlink/LICENSE.APACHE similarity index 100% rename from Godeps/_workspace/src/github.com/docker/docker/pkg/symlink/LICENSE.APACHE rename to vendor/github.com/docker/docker/pkg/symlink/LICENSE.APACHE diff --git a/Godeps/_workspace/src/github.com/docker/docker/pkg/symlink/LICENSE.BSD b/vendor/github.com/docker/docker/pkg/symlink/LICENSE.BSD similarity index 100% rename from Godeps/_workspace/src/github.com/docker/docker/pkg/symlink/LICENSE.BSD rename to vendor/github.com/docker/docker/pkg/symlink/LICENSE.BSD diff --git a/Godeps/_workspace/src/github.com/docker/docker/pkg/version/version.go b/vendor/github.com/docker/docker/pkg/version/version.go similarity index 100% rename from Godeps/_workspace/src/github.com/docker/docker/pkg/version/version.go rename to vendor/github.com/docker/docker/pkg/version/version.go diff --git a/Godeps/_workspace/src/github.com/docker/docker/vendor/src/github.com/Azure/go-ansiterm/LICENSE b/vendor/github.com/docker/docker/vendor/src/github.com/Azure/go-ansiterm/LICENSE similarity index 100% rename from Godeps/_workspace/src/github.com/docker/docker/vendor/src/github.com/Azure/go-ansiterm/LICENSE rename to vendor/github.com/docker/docker/vendor/src/github.com/Azure/go-ansiterm/LICENSE diff --git a/Godeps/_workspace/src/github.com/docker/docker/vendor/src/github.com/BurntSushi/toml/COPYING b/vendor/github.com/docker/docker/vendor/src/github.com/BurntSushi/toml/COPYING similarity index 100% rename from Godeps/_workspace/src/github.com/docker/docker/vendor/src/github.com/BurntSushi/toml/COPYING rename to vendor/github.com/docker/docker/vendor/src/github.com/BurntSushi/toml/COPYING diff --git a/Godeps/_workspace/src/github.com/docker/docker/vendor/src/github.com/BurntSushi/toml/cmd/toml-test-decoder/COPYING b/vendor/github.com/docker/docker/vendor/src/github.com/BurntSushi/toml/cmd/toml-test-decoder/COPYING similarity index 100% rename from Godeps/_workspace/src/github.com/docker/docker/vendor/src/github.com/BurntSushi/toml/cmd/toml-test-decoder/COPYING rename to vendor/github.com/docker/docker/vendor/src/github.com/BurntSushi/toml/cmd/toml-test-decoder/COPYING diff --git a/Godeps/_workspace/src/github.com/docker/docker/vendor/src/github.com/BurntSushi/toml/cmd/toml-test-encoder/COPYING b/vendor/github.com/docker/docker/vendor/src/github.com/BurntSushi/toml/cmd/toml-test-encoder/COPYING similarity index 100% rename from Godeps/_workspace/src/github.com/docker/docker/vendor/src/github.com/BurntSushi/toml/cmd/toml-test-encoder/COPYING rename to vendor/github.com/docker/docker/vendor/src/github.com/BurntSushi/toml/cmd/toml-test-encoder/COPYING diff --git a/Godeps/_workspace/src/github.com/docker/docker/vendor/src/github.com/BurntSushi/toml/cmd/tomlv/COPYING b/vendor/github.com/docker/docker/vendor/src/github.com/BurntSushi/toml/cmd/tomlv/COPYING similarity index 100% rename from Godeps/_workspace/src/github.com/docker/docker/vendor/src/github.com/BurntSushi/toml/cmd/tomlv/COPYING rename to vendor/github.com/docker/docker/vendor/src/github.com/BurntSushi/toml/cmd/tomlv/COPYING diff --git a/Godeps/_workspace/src/github.com/docker/docker/vendor/src/github.com/Graylog2/go-gelf/LICENSE b/vendor/github.com/docker/docker/vendor/src/github.com/Graylog2/go-gelf/LICENSE similarity index 100% rename from Godeps/_workspace/src/github.com/docker/docker/vendor/src/github.com/Graylog2/go-gelf/LICENSE rename to vendor/github.com/docker/docker/vendor/src/github.com/Graylog2/go-gelf/LICENSE diff --git a/Godeps/_workspace/src/github.com/docker/docker/vendor/src/github.com/Sirupsen/logrus/LICENSE b/vendor/github.com/docker/docker/vendor/src/github.com/Sirupsen/logrus/LICENSE similarity index 100% rename from Godeps/_workspace/src/github.com/docker/docker/vendor/src/github.com/Sirupsen/logrus/LICENSE rename to vendor/github.com/docker/docker/vendor/src/github.com/Sirupsen/logrus/LICENSE diff --git a/Godeps/_workspace/src/github.com/docker/docker/vendor/src/github.com/agl/ed25519/LICENSE b/vendor/github.com/docker/docker/vendor/src/github.com/agl/ed25519/LICENSE similarity index 100% rename from Godeps/_workspace/src/github.com/docker/docker/vendor/src/github.com/agl/ed25519/LICENSE rename to vendor/github.com/docker/docker/vendor/src/github.com/agl/ed25519/LICENSE diff --git a/Godeps/_workspace/src/github.com/docker/docker/vendor/src/github.com/armon/go-metrics/LICENSE b/vendor/github.com/docker/docker/vendor/src/github.com/armon/go-metrics/LICENSE similarity index 100% rename from Godeps/_workspace/src/github.com/docker/docker/vendor/src/github.com/armon/go-metrics/LICENSE rename to vendor/github.com/docker/docker/vendor/src/github.com/armon/go-metrics/LICENSE diff --git a/Godeps/_workspace/src/github.com/docker/docker/vendor/src/github.com/aws/aws-sdk-go/LICENSE.txt b/vendor/github.com/docker/docker/vendor/src/github.com/aws/aws-sdk-go/LICENSE.txt similarity index 100% rename from Godeps/_workspace/src/github.com/docker/docker/vendor/src/github.com/aws/aws-sdk-go/LICENSE.txt rename to vendor/github.com/docker/docker/vendor/src/github.com/aws/aws-sdk-go/LICENSE.txt diff --git a/Godeps/_workspace/src/github.com/docker/docker/vendor/src/github.com/boltdb/bolt/LICENSE b/vendor/github.com/docker/docker/vendor/src/github.com/boltdb/bolt/LICENSE similarity index 100% rename from Godeps/_workspace/src/github.com/docker/docker/vendor/src/github.com/boltdb/bolt/LICENSE rename to vendor/github.com/docker/docker/vendor/src/github.com/boltdb/bolt/LICENSE diff --git a/Godeps/_workspace/src/github.com/docker/docker/vendor/src/github.com/coreos/etcd/LICENSE b/vendor/github.com/docker/docker/vendor/src/github.com/coreos/etcd/LICENSE similarity index 100% rename from Godeps/_workspace/src/github.com/docker/docker/vendor/src/github.com/coreos/etcd/LICENSE rename to vendor/github.com/docker/docker/vendor/src/github.com/coreos/etcd/LICENSE diff --git a/Godeps/_workspace/src/github.com/docker/docker/vendor/src/github.com/coreos/go-systemd/LICENSE b/vendor/github.com/docker/docker/vendor/src/github.com/coreos/go-systemd/LICENSE similarity index 100% rename from Godeps/_workspace/src/github.com/docker/docker/vendor/src/github.com/coreos/go-systemd/LICENSE rename to vendor/github.com/docker/docker/vendor/src/github.com/coreos/go-systemd/LICENSE diff --git a/Godeps/_workspace/src/github.com/docker/docker/vendor/src/github.com/deckarep/golang-set/LICENSE b/vendor/github.com/docker/docker/vendor/src/github.com/deckarep/golang-set/LICENSE similarity index 100% rename from Godeps/_workspace/src/github.com/docker/docker/vendor/src/github.com/deckarep/golang-set/LICENSE rename to vendor/github.com/docker/docker/vendor/src/github.com/deckarep/golang-set/LICENSE diff --git a/Godeps/_workspace/src/github.com/docker/docker/vendor/src/github.com/docker/distribution/LICENSE b/vendor/github.com/docker/docker/vendor/src/github.com/docker/distribution/LICENSE similarity index 100% rename from Godeps/_workspace/src/github.com/docker/docker/vendor/src/github.com/docker/distribution/LICENSE rename to vendor/github.com/docker/docker/vendor/src/github.com/docker/distribution/LICENSE diff --git a/Godeps/_workspace/src/github.com/docker/docker/vendor/src/github.com/docker/engine-api/LICENSE b/vendor/github.com/docker/docker/vendor/src/github.com/docker/engine-api/LICENSE similarity index 100% rename from Godeps/_workspace/src/github.com/docker/docker/vendor/src/github.com/docker/engine-api/LICENSE rename to vendor/github.com/docker/docker/vendor/src/github.com/docker/engine-api/LICENSE diff --git a/Godeps/_workspace/src/github.com/docker/docker/vendor/src/github.com/docker/go-connections/LICENSE b/vendor/github.com/docker/docker/vendor/src/github.com/docker/go-connections/LICENSE similarity index 100% rename from Godeps/_workspace/src/github.com/docker/docker/vendor/src/github.com/docker/go-connections/LICENSE rename to vendor/github.com/docker/docker/vendor/src/github.com/docker/go-connections/LICENSE diff --git a/Godeps/_workspace/src/github.com/docker/docker/vendor/src/github.com/docker/go-units/LICENSE b/vendor/github.com/docker/docker/vendor/src/github.com/docker/go-units/LICENSE similarity index 100% rename from Godeps/_workspace/src/github.com/docker/docker/vendor/src/github.com/docker/go-units/LICENSE rename to vendor/github.com/docker/docker/vendor/src/github.com/docker/go-units/LICENSE diff --git a/Godeps/_workspace/src/github.com/docker/docker/vendor/src/github.com/docker/libkv/LICENSE.code b/vendor/github.com/docker/docker/vendor/src/github.com/docker/libkv/LICENSE.code similarity index 100% rename from Godeps/_workspace/src/github.com/docker/docker/vendor/src/github.com/docker/libkv/LICENSE.code rename to vendor/github.com/docker/docker/vendor/src/github.com/docker/libkv/LICENSE.code diff --git a/Godeps/_workspace/src/github.com/docker/docker/vendor/src/github.com/docker/libkv/LICENSE.docs b/vendor/github.com/docker/docker/vendor/src/github.com/docker/libkv/LICENSE.docs similarity index 100% rename from Godeps/_workspace/src/github.com/docker/docker/vendor/src/github.com/docker/libkv/LICENSE.docs rename to vendor/github.com/docker/docker/vendor/src/github.com/docker/libkv/LICENSE.docs diff --git a/Godeps/_workspace/src/github.com/docker/docker/vendor/src/github.com/docker/libnetwork/LICENSE b/vendor/github.com/docker/docker/vendor/src/github.com/docker/libnetwork/LICENSE similarity index 100% rename from Godeps/_workspace/src/github.com/docker/docker/vendor/src/github.com/docker/libnetwork/LICENSE rename to vendor/github.com/docker/docker/vendor/src/github.com/docker/libnetwork/LICENSE diff --git a/Godeps/_workspace/src/github.com/docker/docker/vendor/src/github.com/docker/libtrust/LICENSE b/vendor/github.com/docker/docker/vendor/src/github.com/docker/libtrust/LICENSE similarity index 100% rename from Godeps/_workspace/src/github.com/docker/docker/vendor/src/github.com/docker/libtrust/LICENSE rename to vendor/github.com/docker/docker/vendor/src/github.com/docker/libtrust/LICENSE diff --git a/Godeps/_workspace/src/github.com/docker/docker/vendor/src/github.com/docker/notary/LICENSE b/vendor/github.com/docker/docker/vendor/src/github.com/docker/notary/LICENSE similarity index 100% rename from Godeps/_workspace/src/github.com/docker/docker/vendor/src/github.com/docker/notary/LICENSE rename to vendor/github.com/docker/docker/vendor/src/github.com/docker/notary/LICENSE diff --git a/Godeps/_workspace/src/github.com/docker/docker/vendor/src/github.com/docker/notary/notarymysql/LICENSE b/vendor/github.com/docker/docker/vendor/src/github.com/docker/notary/notarymysql/LICENSE similarity index 100% rename from Godeps/_workspace/src/github.com/docker/docker/vendor/src/github.com/docker/notary/notarymysql/LICENSE rename to vendor/github.com/docker/docker/vendor/src/github.com/docker/notary/notarymysql/LICENSE diff --git a/Godeps/_workspace/src/github.com/docker/docker/vendor/src/github.com/docker/notary/tuf/LICENSE b/vendor/github.com/docker/docker/vendor/src/github.com/docker/notary/tuf/LICENSE similarity index 100% rename from Godeps/_workspace/src/github.com/docker/docker/vendor/src/github.com/docker/notary/tuf/LICENSE rename to vendor/github.com/docker/docker/vendor/src/github.com/docker/notary/tuf/LICENSE diff --git a/Godeps/_workspace/src/github.com/docker/docker/vendor/src/github.com/fluent/fluent-logger-golang/LICENSE b/vendor/github.com/docker/docker/vendor/src/github.com/fluent/fluent-logger-golang/LICENSE similarity index 100% rename from Godeps/_workspace/src/github.com/docker/docker/vendor/src/github.com/fluent/fluent-logger-golang/LICENSE rename to vendor/github.com/docker/docker/vendor/src/github.com/fluent/fluent-logger-golang/LICENSE diff --git a/Godeps/_workspace/src/github.com/docker/docker/vendor/src/github.com/go-check/check/LICENSE b/vendor/github.com/docker/docker/vendor/src/github.com/go-check/check/LICENSE similarity index 100% rename from Godeps/_workspace/src/github.com/docker/docker/vendor/src/github.com/go-check/check/LICENSE rename to vendor/github.com/docker/docker/vendor/src/github.com/go-check/check/LICENSE diff --git a/Godeps/_workspace/src/github.com/docker/docker/vendor/src/github.com/godbus/dbus/LICENSE b/vendor/github.com/docker/docker/vendor/src/github.com/godbus/dbus/LICENSE similarity index 100% rename from Godeps/_workspace/src/github.com/docker/docker/vendor/src/github.com/godbus/dbus/LICENSE rename to vendor/github.com/docker/docker/vendor/src/github.com/godbus/dbus/LICENSE diff --git a/Godeps/_workspace/src/github.com/docker/docker/vendor/src/github.com/golang/protobuf/LICENSE b/vendor/github.com/docker/docker/vendor/src/github.com/golang/protobuf/LICENSE similarity index 100% rename from Godeps/_workspace/src/github.com/docker/docker/vendor/src/github.com/golang/protobuf/LICENSE rename to vendor/github.com/docker/docker/vendor/src/github.com/golang/protobuf/LICENSE diff --git a/Godeps/_workspace/src/github.com/docker/docker/vendor/src/github.com/gorilla/context/LICENSE b/vendor/github.com/docker/docker/vendor/src/github.com/gorilla/context/LICENSE similarity index 100% rename from Godeps/_workspace/src/github.com/docker/docker/vendor/src/github.com/gorilla/context/LICENSE rename to vendor/github.com/docker/docker/vendor/src/github.com/gorilla/context/LICENSE diff --git a/Godeps/_workspace/src/github.com/docker/docker/vendor/src/github.com/gorilla/mux/LICENSE b/vendor/github.com/docker/docker/vendor/src/github.com/gorilla/mux/LICENSE similarity index 100% rename from Godeps/_workspace/src/github.com/docker/docker/vendor/src/github.com/gorilla/mux/LICENSE rename to vendor/github.com/docker/docker/vendor/src/github.com/gorilla/mux/LICENSE diff --git a/Godeps/_workspace/src/github.com/docker/docker/vendor/src/github.com/hashicorp/consul/LICENSE b/vendor/github.com/docker/docker/vendor/src/github.com/hashicorp/consul/LICENSE similarity index 100% rename from Godeps/_workspace/src/github.com/docker/docker/vendor/src/github.com/hashicorp/consul/LICENSE rename to vendor/github.com/docker/docker/vendor/src/github.com/hashicorp/consul/LICENSE diff --git a/Godeps/_workspace/src/github.com/docker/docker/vendor/src/github.com/hashicorp/consul/website/LICENSE.md b/vendor/github.com/docker/docker/vendor/src/github.com/hashicorp/consul/website/LICENSE.md similarity index 100% rename from Godeps/_workspace/src/github.com/docker/docker/vendor/src/github.com/hashicorp/consul/website/LICENSE.md rename to vendor/github.com/docker/docker/vendor/src/github.com/hashicorp/consul/website/LICENSE.md diff --git a/Godeps/_workspace/src/github.com/docker/docker/vendor/src/github.com/hashicorp/go-msgpack/LICENSE b/vendor/github.com/docker/docker/vendor/src/github.com/hashicorp/go-msgpack/LICENSE similarity index 100% rename from Godeps/_workspace/src/github.com/docker/docker/vendor/src/github.com/hashicorp/go-msgpack/LICENSE rename to vendor/github.com/docker/docker/vendor/src/github.com/hashicorp/go-msgpack/LICENSE diff --git a/Godeps/_workspace/src/github.com/docker/docker/vendor/src/github.com/hashicorp/memberlist/LICENSE b/vendor/github.com/docker/docker/vendor/src/github.com/hashicorp/memberlist/LICENSE similarity index 100% rename from Godeps/_workspace/src/github.com/docker/docker/vendor/src/github.com/hashicorp/memberlist/LICENSE rename to vendor/github.com/docker/docker/vendor/src/github.com/hashicorp/memberlist/LICENSE diff --git a/Godeps/_workspace/src/github.com/docker/docker/vendor/src/github.com/hashicorp/serf/LICENSE b/vendor/github.com/docker/docker/vendor/src/github.com/hashicorp/serf/LICENSE similarity index 100% rename from Godeps/_workspace/src/github.com/docker/docker/vendor/src/github.com/hashicorp/serf/LICENSE rename to vendor/github.com/docker/docker/vendor/src/github.com/hashicorp/serf/LICENSE diff --git a/Godeps/_workspace/src/github.com/docker/docker/vendor/src/github.com/hashicorp/serf/website/LICENSE.md b/vendor/github.com/docker/docker/vendor/src/github.com/hashicorp/serf/website/LICENSE.md similarity index 100% rename from Godeps/_workspace/src/github.com/docker/docker/vendor/src/github.com/hashicorp/serf/website/LICENSE.md rename to vendor/github.com/docker/docker/vendor/src/github.com/hashicorp/serf/website/LICENSE.md diff --git a/Godeps/_workspace/src/github.com/docker/docker/vendor/src/github.com/jfrazelle/go/LICENSE b/vendor/github.com/docker/docker/vendor/src/github.com/jfrazelle/go/LICENSE similarity index 100% rename from Godeps/_workspace/src/github.com/docker/docker/vendor/src/github.com/jfrazelle/go/LICENSE rename to vendor/github.com/docker/docker/vendor/src/github.com/jfrazelle/go/LICENSE diff --git a/Godeps/_workspace/src/github.com/docker/docker/vendor/src/github.com/kr/pty/License b/vendor/github.com/docker/docker/vendor/src/github.com/kr/pty/License similarity index 100% rename from Godeps/_workspace/src/github.com/docker/docker/vendor/src/github.com/kr/pty/License rename to vendor/github.com/docker/docker/vendor/src/github.com/kr/pty/License diff --git a/Godeps/_workspace/src/github.com/docker/docker/vendor/src/github.com/mattn/go-sqlite3/LICENSE b/vendor/github.com/docker/docker/vendor/src/github.com/mattn/go-sqlite3/LICENSE similarity index 100% rename from Godeps/_workspace/src/github.com/docker/docker/vendor/src/github.com/mattn/go-sqlite3/LICENSE rename to vendor/github.com/docker/docker/vendor/src/github.com/mattn/go-sqlite3/LICENSE diff --git a/Godeps/_workspace/src/github.com/docker/docker/vendor/src/github.com/microsoft/hcsshim/LICENSE b/vendor/github.com/docker/docker/vendor/src/github.com/microsoft/hcsshim/LICENSE similarity index 100% rename from Godeps/_workspace/src/github.com/docker/docker/vendor/src/github.com/microsoft/hcsshim/LICENSE rename to vendor/github.com/docker/docker/vendor/src/github.com/microsoft/hcsshim/LICENSE diff --git a/Godeps/_workspace/src/github.com/docker/docker/vendor/src/github.com/miekg/dns/COPYRIGHT b/vendor/github.com/docker/docker/vendor/src/github.com/miekg/dns/COPYRIGHT similarity index 100% rename from Godeps/_workspace/src/github.com/docker/docker/vendor/src/github.com/miekg/dns/COPYRIGHT rename to vendor/github.com/docker/docker/vendor/src/github.com/miekg/dns/COPYRIGHT diff --git a/Godeps/_workspace/src/github.com/docker/docker/vendor/src/github.com/miekg/dns/LICENSE b/vendor/github.com/docker/docker/vendor/src/github.com/miekg/dns/LICENSE similarity index 100% rename from Godeps/_workspace/src/github.com/docker/docker/vendor/src/github.com/miekg/dns/LICENSE rename to vendor/github.com/docker/docker/vendor/src/github.com/miekg/dns/LICENSE diff --git a/Godeps/_workspace/src/github.com/docker/docker/vendor/src/github.com/miekg/pkcs11/LICENSE b/vendor/github.com/docker/docker/vendor/src/github.com/miekg/pkcs11/LICENSE similarity index 100% rename from Godeps/_workspace/src/github.com/docker/docker/vendor/src/github.com/miekg/pkcs11/LICENSE rename to vendor/github.com/docker/docker/vendor/src/github.com/miekg/pkcs11/LICENSE diff --git a/Godeps/_workspace/src/github.com/docker/docker/vendor/src/github.com/mistifyio/go-zfs/LICENSE b/vendor/github.com/docker/docker/vendor/src/github.com/mistifyio/go-zfs/LICENSE similarity index 100% rename from Godeps/_workspace/src/github.com/docker/docker/vendor/src/github.com/mistifyio/go-zfs/LICENSE rename to vendor/github.com/docker/docker/vendor/src/github.com/mistifyio/go-zfs/LICENSE diff --git a/Godeps/_workspace/src/github.com/docker/docker/vendor/src/github.com/opencontainers/runc/LICENSE b/vendor/github.com/docker/docker/vendor/src/github.com/opencontainers/runc/LICENSE similarity index 100% rename from Godeps/_workspace/src/github.com/docker/docker/vendor/src/github.com/opencontainers/runc/LICENSE rename to vendor/github.com/docker/docker/vendor/src/github.com/opencontainers/runc/LICENSE diff --git a/Godeps/_workspace/src/github.com/docker/docker/vendor/src/github.com/opencontainers/specs/LICENSE b/vendor/github.com/docker/docker/vendor/src/github.com/opencontainers/specs/LICENSE similarity index 100% rename from Godeps/_workspace/src/github.com/docker/docker/vendor/src/github.com/opencontainers/specs/LICENSE rename to vendor/github.com/docker/docker/vendor/src/github.com/opencontainers/specs/LICENSE diff --git a/Godeps/_workspace/src/github.com/docker/docker/vendor/src/github.com/samuel/go-zookeeper/LICENSE b/vendor/github.com/docker/docker/vendor/src/github.com/samuel/go-zookeeper/LICENSE similarity index 100% rename from Godeps/_workspace/src/github.com/docker/docker/vendor/src/github.com/samuel/go-zookeeper/LICENSE rename to vendor/github.com/docker/docker/vendor/src/github.com/samuel/go-zookeeper/LICENSE diff --git a/Godeps/_workspace/src/github.com/docker/docker/vendor/src/github.com/seccomp/libseccomp-golang/LICENSE b/vendor/github.com/docker/docker/vendor/src/github.com/seccomp/libseccomp-golang/LICENSE similarity index 100% rename from Godeps/_workspace/src/github.com/docker/docker/vendor/src/github.com/seccomp/libseccomp-golang/LICENSE rename to vendor/github.com/docker/docker/vendor/src/github.com/seccomp/libseccomp-golang/LICENSE diff --git a/Godeps/_workspace/src/github.com/docker/docker/vendor/src/github.com/syndtr/gocapability/LICENSE b/vendor/github.com/docker/docker/vendor/src/github.com/syndtr/gocapability/LICENSE similarity index 100% rename from Godeps/_workspace/src/github.com/docker/docker/vendor/src/github.com/syndtr/gocapability/LICENSE rename to vendor/github.com/docker/docker/vendor/src/github.com/syndtr/gocapability/LICENSE diff --git a/Godeps/_workspace/src/github.com/docker/docker/vendor/src/github.com/tchap/go-patricia/LICENSE b/vendor/github.com/docker/docker/vendor/src/github.com/tchap/go-patricia/LICENSE similarity index 100% rename from Godeps/_workspace/src/github.com/docker/docker/vendor/src/github.com/tchap/go-patricia/LICENSE rename to vendor/github.com/docker/docker/vendor/src/github.com/tchap/go-patricia/LICENSE diff --git a/Godeps/_workspace/src/github.com/docker/docker/vendor/src/github.com/tinylib/msgp/LICENSE b/vendor/github.com/docker/docker/vendor/src/github.com/tinylib/msgp/LICENSE similarity index 100% rename from Godeps/_workspace/src/github.com/docker/docker/vendor/src/github.com/tinylib/msgp/LICENSE rename to vendor/github.com/docker/docker/vendor/src/github.com/tinylib/msgp/LICENSE diff --git a/Godeps/_workspace/src/github.com/docker/docker/vendor/src/github.com/ugorji/go/LICENSE b/vendor/github.com/docker/docker/vendor/src/github.com/ugorji/go/LICENSE similarity index 100% rename from Godeps/_workspace/src/github.com/docker/docker/vendor/src/github.com/ugorji/go/LICENSE rename to vendor/github.com/docker/docker/vendor/src/github.com/ugorji/go/LICENSE diff --git a/Godeps/_workspace/src/github.com/docker/docker/vendor/src/github.com/vaughan0/go-ini/LICENSE b/vendor/github.com/docker/docker/vendor/src/github.com/vaughan0/go-ini/LICENSE similarity index 100% rename from Godeps/_workspace/src/github.com/docker/docker/vendor/src/github.com/vaughan0/go-ini/LICENSE rename to vendor/github.com/docker/docker/vendor/src/github.com/vaughan0/go-ini/LICENSE diff --git a/Godeps/_workspace/src/github.com/docker/docker/vendor/src/github.com/vbatts/tar-split/LICENSE b/vendor/github.com/docker/docker/vendor/src/github.com/vbatts/tar-split/LICENSE similarity index 100% rename from Godeps/_workspace/src/github.com/docker/docker/vendor/src/github.com/vbatts/tar-split/LICENSE rename to vendor/github.com/docker/docker/vendor/src/github.com/vbatts/tar-split/LICENSE diff --git a/Godeps/_workspace/src/github.com/docker/docker/vendor/src/github.com/vishvananda/netlink/LICENSE b/vendor/github.com/docker/docker/vendor/src/github.com/vishvananda/netlink/LICENSE similarity index 100% rename from Godeps/_workspace/src/github.com/docker/docker/vendor/src/github.com/vishvananda/netlink/LICENSE rename to vendor/github.com/docker/docker/vendor/src/github.com/vishvananda/netlink/LICENSE diff --git a/Godeps/_workspace/src/github.com/docker/docker/vendor/src/github.com/vishvananda/netns/LICENSE b/vendor/github.com/docker/docker/vendor/src/github.com/vishvananda/netns/LICENSE similarity index 100% rename from Godeps/_workspace/src/github.com/docker/docker/vendor/src/github.com/vishvananda/netns/LICENSE rename to vendor/github.com/docker/docker/vendor/src/github.com/vishvananda/netns/LICENSE diff --git a/Godeps/_workspace/src/github.com/docker/docker/vendor/src/golang.org/x/net/LICENSE b/vendor/github.com/docker/docker/vendor/src/golang.org/x/net/LICENSE similarity index 100% rename from Godeps/_workspace/src/github.com/docker/docker/vendor/src/golang.org/x/net/LICENSE rename to vendor/github.com/docker/docker/vendor/src/golang.org/x/net/LICENSE diff --git a/Godeps/_workspace/src/github.com/docker/docker/vendor/src/google.golang.org/grpc/LICENSE b/vendor/github.com/docker/docker/vendor/src/google.golang.org/grpc/LICENSE similarity index 100% rename from Godeps/_workspace/src/github.com/docker/docker/vendor/src/google.golang.org/grpc/LICENSE rename to vendor/github.com/docker/docker/vendor/src/google.golang.org/grpc/LICENSE diff --git a/Godeps/_workspace/src/github.com/docker/docker/vendor/src/gopkg.in/fsnotify.v1/LICENSE b/vendor/github.com/docker/docker/vendor/src/gopkg.in/fsnotify.v1/LICENSE similarity index 100% rename from Godeps/_workspace/src/github.com/docker/docker/vendor/src/gopkg.in/fsnotify.v1/LICENSE rename to vendor/github.com/docker/docker/vendor/src/gopkg.in/fsnotify.v1/LICENSE diff --git a/Godeps/_workspace/src/github.com/docker/engine-api/LICENSE b/vendor/github.com/docker/engine-api/LICENSE similarity index 100% rename from Godeps/_workspace/src/github.com/docker/engine-api/LICENSE rename to vendor/github.com/docker/engine-api/LICENSE diff --git a/Godeps/_workspace/src/github.com/docker/engine-api/client/client.go b/vendor/github.com/docker/engine-api/client/client.go similarity index 100% rename from Godeps/_workspace/src/github.com/docker/engine-api/client/client.go rename to vendor/github.com/docker/engine-api/client/client.go diff --git a/Godeps/_workspace/src/github.com/docker/engine-api/client/client_darwin.go b/vendor/github.com/docker/engine-api/client/client_darwin.go similarity index 100% rename from Godeps/_workspace/src/github.com/docker/engine-api/client/client_darwin.go rename to vendor/github.com/docker/engine-api/client/client_darwin.go diff --git a/Godeps/_workspace/src/github.com/docker/engine-api/client/client_unix.go b/vendor/github.com/docker/engine-api/client/client_unix.go similarity index 100% rename from Godeps/_workspace/src/github.com/docker/engine-api/client/client_unix.go rename to vendor/github.com/docker/engine-api/client/client_unix.go diff --git a/Godeps/_workspace/src/github.com/docker/engine-api/client/client_windows.go b/vendor/github.com/docker/engine-api/client/client_windows.go similarity index 100% rename from Godeps/_workspace/src/github.com/docker/engine-api/client/client_windows.go rename to vendor/github.com/docker/engine-api/client/client_windows.go diff --git a/Godeps/_workspace/src/github.com/docker/engine-api/client/container_attach.go b/vendor/github.com/docker/engine-api/client/container_attach.go similarity index 100% rename from Godeps/_workspace/src/github.com/docker/engine-api/client/container_attach.go rename to vendor/github.com/docker/engine-api/client/container_attach.go diff --git a/Godeps/_workspace/src/github.com/docker/engine-api/client/container_commit.go b/vendor/github.com/docker/engine-api/client/container_commit.go similarity index 100% rename from Godeps/_workspace/src/github.com/docker/engine-api/client/container_commit.go rename to vendor/github.com/docker/engine-api/client/container_commit.go diff --git a/Godeps/_workspace/src/github.com/docker/engine-api/client/container_copy.go b/vendor/github.com/docker/engine-api/client/container_copy.go similarity index 100% rename from Godeps/_workspace/src/github.com/docker/engine-api/client/container_copy.go rename to vendor/github.com/docker/engine-api/client/container_copy.go diff --git a/Godeps/_workspace/src/github.com/docker/engine-api/client/container_create.go b/vendor/github.com/docker/engine-api/client/container_create.go similarity index 100% rename from Godeps/_workspace/src/github.com/docker/engine-api/client/container_create.go rename to vendor/github.com/docker/engine-api/client/container_create.go diff --git a/Godeps/_workspace/src/github.com/docker/engine-api/client/container_diff.go b/vendor/github.com/docker/engine-api/client/container_diff.go similarity index 100% rename from Godeps/_workspace/src/github.com/docker/engine-api/client/container_diff.go rename to vendor/github.com/docker/engine-api/client/container_diff.go diff --git a/Godeps/_workspace/src/github.com/docker/engine-api/client/container_exec.go b/vendor/github.com/docker/engine-api/client/container_exec.go similarity index 100% rename from Godeps/_workspace/src/github.com/docker/engine-api/client/container_exec.go rename to vendor/github.com/docker/engine-api/client/container_exec.go diff --git a/Godeps/_workspace/src/github.com/docker/engine-api/client/container_export.go b/vendor/github.com/docker/engine-api/client/container_export.go similarity index 100% rename from Godeps/_workspace/src/github.com/docker/engine-api/client/container_export.go rename to vendor/github.com/docker/engine-api/client/container_export.go diff --git a/Godeps/_workspace/src/github.com/docker/engine-api/client/container_inspect.go b/vendor/github.com/docker/engine-api/client/container_inspect.go similarity index 100% rename from Godeps/_workspace/src/github.com/docker/engine-api/client/container_inspect.go rename to vendor/github.com/docker/engine-api/client/container_inspect.go diff --git a/Godeps/_workspace/src/github.com/docker/engine-api/client/container_kill.go b/vendor/github.com/docker/engine-api/client/container_kill.go similarity index 100% rename from Godeps/_workspace/src/github.com/docker/engine-api/client/container_kill.go rename to vendor/github.com/docker/engine-api/client/container_kill.go diff --git a/Godeps/_workspace/src/github.com/docker/engine-api/client/container_list.go b/vendor/github.com/docker/engine-api/client/container_list.go similarity index 100% rename from Godeps/_workspace/src/github.com/docker/engine-api/client/container_list.go rename to vendor/github.com/docker/engine-api/client/container_list.go diff --git a/Godeps/_workspace/src/github.com/docker/engine-api/client/container_logs.go b/vendor/github.com/docker/engine-api/client/container_logs.go similarity index 100% rename from Godeps/_workspace/src/github.com/docker/engine-api/client/container_logs.go rename to vendor/github.com/docker/engine-api/client/container_logs.go diff --git a/Godeps/_workspace/src/github.com/docker/engine-api/client/container_pause.go b/vendor/github.com/docker/engine-api/client/container_pause.go similarity index 100% rename from Godeps/_workspace/src/github.com/docker/engine-api/client/container_pause.go rename to vendor/github.com/docker/engine-api/client/container_pause.go diff --git a/Godeps/_workspace/src/github.com/docker/engine-api/client/container_remove.go b/vendor/github.com/docker/engine-api/client/container_remove.go similarity index 100% rename from Godeps/_workspace/src/github.com/docker/engine-api/client/container_remove.go rename to vendor/github.com/docker/engine-api/client/container_remove.go diff --git a/Godeps/_workspace/src/github.com/docker/engine-api/client/container_rename.go b/vendor/github.com/docker/engine-api/client/container_rename.go similarity index 100% rename from Godeps/_workspace/src/github.com/docker/engine-api/client/container_rename.go rename to vendor/github.com/docker/engine-api/client/container_rename.go diff --git a/Godeps/_workspace/src/github.com/docker/engine-api/client/container_resize.go b/vendor/github.com/docker/engine-api/client/container_resize.go similarity index 100% rename from Godeps/_workspace/src/github.com/docker/engine-api/client/container_resize.go rename to vendor/github.com/docker/engine-api/client/container_resize.go diff --git a/Godeps/_workspace/src/github.com/docker/engine-api/client/container_restart.go b/vendor/github.com/docker/engine-api/client/container_restart.go similarity index 100% rename from Godeps/_workspace/src/github.com/docker/engine-api/client/container_restart.go rename to vendor/github.com/docker/engine-api/client/container_restart.go diff --git a/Godeps/_workspace/src/github.com/docker/engine-api/client/container_start.go b/vendor/github.com/docker/engine-api/client/container_start.go similarity index 100% rename from Godeps/_workspace/src/github.com/docker/engine-api/client/container_start.go rename to vendor/github.com/docker/engine-api/client/container_start.go diff --git a/Godeps/_workspace/src/github.com/docker/engine-api/client/container_stats.go b/vendor/github.com/docker/engine-api/client/container_stats.go similarity index 100% rename from Godeps/_workspace/src/github.com/docker/engine-api/client/container_stats.go rename to vendor/github.com/docker/engine-api/client/container_stats.go diff --git a/Godeps/_workspace/src/github.com/docker/engine-api/client/container_stop.go b/vendor/github.com/docker/engine-api/client/container_stop.go similarity index 100% rename from Godeps/_workspace/src/github.com/docker/engine-api/client/container_stop.go rename to vendor/github.com/docker/engine-api/client/container_stop.go diff --git a/Godeps/_workspace/src/github.com/docker/engine-api/client/container_top.go b/vendor/github.com/docker/engine-api/client/container_top.go similarity index 100% rename from Godeps/_workspace/src/github.com/docker/engine-api/client/container_top.go rename to vendor/github.com/docker/engine-api/client/container_top.go diff --git a/Godeps/_workspace/src/github.com/docker/engine-api/client/container_unpause.go b/vendor/github.com/docker/engine-api/client/container_unpause.go similarity index 100% rename from Godeps/_workspace/src/github.com/docker/engine-api/client/container_unpause.go rename to vendor/github.com/docker/engine-api/client/container_unpause.go diff --git a/Godeps/_workspace/src/github.com/docker/engine-api/client/container_update.go b/vendor/github.com/docker/engine-api/client/container_update.go similarity index 100% rename from Godeps/_workspace/src/github.com/docker/engine-api/client/container_update.go rename to vendor/github.com/docker/engine-api/client/container_update.go diff --git a/Godeps/_workspace/src/github.com/docker/engine-api/client/container_wait.go b/vendor/github.com/docker/engine-api/client/container_wait.go similarity index 100% rename from Godeps/_workspace/src/github.com/docker/engine-api/client/container_wait.go rename to vendor/github.com/docker/engine-api/client/container_wait.go diff --git a/Godeps/_workspace/src/github.com/docker/engine-api/client/errors.go b/vendor/github.com/docker/engine-api/client/errors.go similarity index 100% rename from Godeps/_workspace/src/github.com/docker/engine-api/client/errors.go rename to vendor/github.com/docker/engine-api/client/errors.go diff --git a/Godeps/_workspace/src/github.com/docker/engine-api/client/events.go b/vendor/github.com/docker/engine-api/client/events.go similarity index 100% rename from Godeps/_workspace/src/github.com/docker/engine-api/client/events.go rename to vendor/github.com/docker/engine-api/client/events.go diff --git a/Godeps/_workspace/src/github.com/docker/engine-api/client/hijack.go b/vendor/github.com/docker/engine-api/client/hijack.go similarity index 100% rename from Godeps/_workspace/src/github.com/docker/engine-api/client/hijack.go rename to vendor/github.com/docker/engine-api/client/hijack.go diff --git a/Godeps/_workspace/src/github.com/docker/engine-api/client/image_build.go b/vendor/github.com/docker/engine-api/client/image_build.go similarity index 100% rename from Godeps/_workspace/src/github.com/docker/engine-api/client/image_build.go rename to vendor/github.com/docker/engine-api/client/image_build.go diff --git a/Godeps/_workspace/src/github.com/docker/engine-api/client/image_create.go b/vendor/github.com/docker/engine-api/client/image_create.go similarity index 100% rename from Godeps/_workspace/src/github.com/docker/engine-api/client/image_create.go rename to vendor/github.com/docker/engine-api/client/image_create.go diff --git a/Godeps/_workspace/src/github.com/docker/engine-api/client/image_history.go b/vendor/github.com/docker/engine-api/client/image_history.go similarity index 100% rename from Godeps/_workspace/src/github.com/docker/engine-api/client/image_history.go rename to vendor/github.com/docker/engine-api/client/image_history.go diff --git a/Godeps/_workspace/src/github.com/docker/engine-api/client/image_import.go b/vendor/github.com/docker/engine-api/client/image_import.go similarity index 100% rename from Godeps/_workspace/src/github.com/docker/engine-api/client/image_import.go rename to vendor/github.com/docker/engine-api/client/image_import.go diff --git a/Godeps/_workspace/src/github.com/docker/engine-api/client/image_inspect.go b/vendor/github.com/docker/engine-api/client/image_inspect.go similarity index 100% rename from Godeps/_workspace/src/github.com/docker/engine-api/client/image_inspect.go rename to vendor/github.com/docker/engine-api/client/image_inspect.go diff --git a/Godeps/_workspace/src/github.com/docker/engine-api/client/image_list.go b/vendor/github.com/docker/engine-api/client/image_list.go similarity index 100% rename from Godeps/_workspace/src/github.com/docker/engine-api/client/image_list.go rename to vendor/github.com/docker/engine-api/client/image_list.go diff --git a/Godeps/_workspace/src/github.com/docker/engine-api/client/image_load.go b/vendor/github.com/docker/engine-api/client/image_load.go similarity index 100% rename from Godeps/_workspace/src/github.com/docker/engine-api/client/image_load.go rename to vendor/github.com/docker/engine-api/client/image_load.go diff --git a/Godeps/_workspace/src/github.com/docker/engine-api/client/image_pull.go b/vendor/github.com/docker/engine-api/client/image_pull.go similarity index 100% rename from Godeps/_workspace/src/github.com/docker/engine-api/client/image_pull.go rename to vendor/github.com/docker/engine-api/client/image_pull.go diff --git a/Godeps/_workspace/src/github.com/docker/engine-api/client/image_push.go b/vendor/github.com/docker/engine-api/client/image_push.go similarity index 100% rename from Godeps/_workspace/src/github.com/docker/engine-api/client/image_push.go rename to vendor/github.com/docker/engine-api/client/image_push.go diff --git a/Godeps/_workspace/src/github.com/docker/engine-api/client/image_remove.go b/vendor/github.com/docker/engine-api/client/image_remove.go similarity index 100% rename from Godeps/_workspace/src/github.com/docker/engine-api/client/image_remove.go rename to vendor/github.com/docker/engine-api/client/image_remove.go diff --git a/Godeps/_workspace/src/github.com/docker/engine-api/client/image_save.go b/vendor/github.com/docker/engine-api/client/image_save.go similarity index 100% rename from Godeps/_workspace/src/github.com/docker/engine-api/client/image_save.go rename to vendor/github.com/docker/engine-api/client/image_save.go diff --git a/Godeps/_workspace/src/github.com/docker/engine-api/client/image_search.go b/vendor/github.com/docker/engine-api/client/image_search.go similarity index 100% rename from Godeps/_workspace/src/github.com/docker/engine-api/client/image_search.go rename to vendor/github.com/docker/engine-api/client/image_search.go diff --git a/Godeps/_workspace/src/github.com/docker/engine-api/client/image_tag.go b/vendor/github.com/docker/engine-api/client/image_tag.go similarity index 100% rename from Godeps/_workspace/src/github.com/docker/engine-api/client/image_tag.go rename to vendor/github.com/docker/engine-api/client/image_tag.go diff --git a/Godeps/_workspace/src/github.com/docker/engine-api/client/info.go b/vendor/github.com/docker/engine-api/client/info.go similarity index 100% rename from Godeps/_workspace/src/github.com/docker/engine-api/client/info.go rename to vendor/github.com/docker/engine-api/client/info.go diff --git a/Godeps/_workspace/src/github.com/docker/engine-api/client/interface.go b/vendor/github.com/docker/engine-api/client/interface.go similarity index 100% rename from Godeps/_workspace/src/github.com/docker/engine-api/client/interface.go rename to vendor/github.com/docker/engine-api/client/interface.go diff --git a/Godeps/_workspace/src/github.com/docker/engine-api/client/login.go b/vendor/github.com/docker/engine-api/client/login.go similarity index 100% rename from Godeps/_workspace/src/github.com/docker/engine-api/client/login.go rename to vendor/github.com/docker/engine-api/client/login.go diff --git a/Godeps/_workspace/src/github.com/docker/engine-api/client/network_connect.go b/vendor/github.com/docker/engine-api/client/network_connect.go similarity index 100% rename from Godeps/_workspace/src/github.com/docker/engine-api/client/network_connect.go rename to vendor/github.com/docker/engine-api/client/network_connect.go diff --git a/Godeps/_workspace/src/github.com/docker/engine-api/client/network_create.go b/vendor/github.com/docker/engine-api/client/network_create.go similarity index 100% rename from Godeps/_workspace/src/github.com/docker/engine-api/client/network_create.go rename to vendor/github.com/docker/engine-api/client/network_create.go diff --git a/Godeps/_workspace/src/github.com/docker/engine-api/client/network_disconnect.go b/vendor/github.com/docker/engine-api/client/network_disconnect.go similarity index 100% rename from Godeps/_workspace/src/github.com/docker/engine-api/client/network_disconnect.go rename to vendor/github.com/docker/engine-api/client/network_disconnect.go diff --git a/Godeps/_workspace/src/github.com/docker/engine-api/client/network_inspect.go b/vendor/github.com/docker/engine-api/client/network_inspect.go similarity index 100% rename from Godeps/_workspace/src/github.com/docker/engine-api/client/network_inspect.go rename to vendor/github.com/docker/engine-api/client/network_inspect.go diff --git a/Godeps/_workspace/src/github.com/docker/engine-api/client/network_list.go b/vendor/github.com/docker/engine-api/client/network_list.go similarity index 100% rename from Godeps/_workspace/src/github.com/docker/engine-api/client/network_list.go rename to vendor/github.com/docker/engine-api/client/network_list.go diff --git a/Godeps/_workspace/src/github.com/docker/engine-api/client/network_remove.go b/vendor/github.com/docker/engine-api/client/network_remove.go similarity index 100% rename from Godeps/_workspace/src/github.com/docker/engine-api/client/network_remove.go rename to vendor/github.com/docker/engine-api/client/network_remove.go diff --git a/Godeps/_workspace/src/github.com/docker/engine-api/client/privileged.go b/vendor/github.com/docker/engine-api/client/privileged.go similarity index 100% rename from Godeps/_workspace/src/github.com/docker/engine-api/client/privileged.go rename to vendor/github.com/docker/engine-api/client/privileged.go diff --git a/Godeps/_workspace/src/github.com/docker/engine-api/client/request.go b/vendor/github.com/docker/engine-api/client/request.go similarity index 100% rename from Godeps/_workspace/src/github.com/docker/engine-api/client/request.go rename to vendor/github.com/docker/engine-api/client/request.go diff --git a/Godeps/_workspace/src/github.com/docker/engine-api/client/transport/cancellable/canceler.go b/vendor/github.com/docker/engine-api/client/transport/cancellable/canceler.go similarity index 100% rename from Godeps/_workspace/src/github.com/docker/engine-api/client/transport/cancellable/canceler.go rename to vendor/github.com/docker/engine-api/client/transport/cancellable/canceler.go diff --git a/Godeps/_workspace/src/github.com/docker/engine-api/client/transport/cancellable/canceler_go14.go b/vendor/github.com/docker/engine-api/client/transport/cancellable/canceler_go14.go similarity index 100% rename from Godeps/_workspace/src/github.com/docker/engine-api/client/transport/cancellable/canceler_go14.go rename to vendor/github.com/docker/engine-api/client/transport/cancellable/canceler_go14.go diff --git a/Godeps/_workspace/src/github.com/docker/engine-api/client/transport/cancellable/cancellable.go b/vendor/github.com/docker/engine-api/client/transport/cancellable/cancellable.go similarity index 100% rename from Godeps/_workspace/src/github.com/docker/engine-api/client/transport/cancellable/cancellable.go rename to vendor/github.com/docker/engine-api/client/transport/cancellable/cancellable.go diff --git a/Godeps/_workspace/src/github.com/docker/engine-api/client/transport/client.go b/vendor/github.com/docker/engine-api/client/transport/client.go similarity index 100% rename from Godeps/_workspace/src/github.com/docker/engine-api/client/transport/client.go rename to vendor/github.com/docker/engine-api/client/transport/client.go diff --git a/Godeps/_workspace/src/github.com/docker/engine-api/client/transport/transport.go b/vendor/github.com/docker/engine-api/client/transport/transport.go similarity index 100% rename from Godeps/_workspace/src/github.com/docker/engine-api/client/transport/transport.go rename to vendor/github.com/docker/engine-api/client/transport/transport.go diff --git a/Godeps/_workspace/src/github.com/docker/engine-api/client/version.go b/vendor/github.com/docker/engine-api/client/version.go similarity index 100% rename from Godeps/_workspace/src/github.com/docker/engine-api/client/version.go rename to vendor/github.com/docker/engine-api/client/version.go diff --git a/Godeps/_workspace/src/github.com/docker/engine-api/client/volume_create.go b/vendor/github.com/docker/engine-api/client/volume_create.go similarity index 100% rename from Godeps/_workspace/src/github.com/docker/engine-api/client/volume_create.go rename to vendor/github.com/docker/engine-api/client/volume_create.go diff --git a/Godeps/_workspace/src/github.com/docker/engine-api/client/volume_inspect.go b/vendor/github.com/docker/engine-api/client/volume_inspect.go similarity index 100% rename from Godeps/_workspace/src/github.com/docker/engine-api/client/volume_inspect.go rename to vendor/github.com/docker/engine-api/client/volume_inspect.go diff --git a/Godeps/_workspace/src/github.com/docker/engine-api/client/volume_list.go b/vendor/github.com/docker/engine-api/client/volume_list.go similarity index 100% rename from Godeps/_workspace/src/github.com/docker/engine-api/client/volume_list.go rename to vendor/github.com/docker/engine-api/client/volume_list.go diff --git a/Godeps/_workspace/src/github.com/docker/engine-api/client/volume_remove.go b/vendor/github.com/docker/engine-api/client/volume_remove.go similarity index 100% rename from Godeps/_workspace/src/github.com/docker/engine-api/client/volume_remove.go rename to vendor/github.com/docker/engine-api/client/volume_remove.go diff --git a/Godeps/_workspace/src/github.com/docker/engine-api/types/auth.go b/vendor/github.com/docker/engine-api/types/auth.go similarity index 100% rename from Godeps/_workspace/src/github.com/docker/engine-api/types/auth.go rename to vendor/github.com/docker/engine-api/types/auth.go diff --git a/Godeps/_workspace/src/github.com/docker/engine-api/types/blkiodev/blkio.go b/vendor/github.com/docker/engine-api/types/blkiodev/blkio.go similarity index 100% rename from Godeps/_workspace/src/github.com/docker/engine-api/types/blkiodev/blkio.go rename to vendor/github.com/docker/engine-api/types/blkiodev/blkio.go diff --git a/Godeps/_workspace/src/github.com/docker/engine-api/types/client.go b/vendor/github.com/docker/engine-api/types/client.go similarity index 100% rename from Godeps/_workspace/src/github.com/docker/engine-api/types/client.go rename to vendor/github.com/docker/engine-api/types/client.go diff --git a/Godeps/_workspace/src/github.com/docker/engine-api/types/configs.go b/vendor/github.com/docker/engine-api/types/configs.go similarity index 100% rename from Godeps/_workspace/src/github.com/docker/engine-api/types/configs.go rename to vendor/github.com/docker/engine-api/types/configs.go diff --git a/Godeps/_workspace/src/github.com/docker/engine-api/types/container/config.go b/vendor/github.com/docker/engine-api/types/container/config.go similarity index 100% rename from Godeps/_workspace/src/github.com/docker/engine-api/types/container/config.go rename to vendor/github.com/docker/engine-api/types/container/config.go diff --git a/Godeps/_workspace/src/github.com/docker/engine-api/types/container/host_config.go b/vendor/github.com/docker/engine-api/types/container/host_config.go similarity index 100% rename from Godeps/_workspace/src/github.com/docker/engine-api/types/container/host_config.go rename to vendor/github.com/docker/engine-api/types/container/host_config.go diff --git a/Godeps/_workspace/src/github.com/docker/engine-api/types/container/hostconfig_unix.go b/vendor/github.com/docker/engine-api/types/container/hostconfig_unix.go similarity index 100% rename from Godeps/_workspace/src/github.com/docker/engine-api/types/container/hostconfig_unix.go rename to vendor/github.com/docker/engine-api/types/container/hostconfig_unix.go diff --git a/Godeps/_workspace/src/github.com/docker/engine-api/types/container/hostconfig_windows.go b/vendor/github.com/docker/engine-api/types/container/hostconfig_windows.go similarity index 100% rename from Godeps/_workspace/src/github.com/docker/engine-api/types/container/hostconfig_windows.go rename to vendor/github.com/docker/engine-api/types/container/hostconfig_windows.go diff --git a/Godeps/_workspace/src/github.com/docker/engine-api/types/filters/parse.go b/vendor/github.com/docker/engine-api/types/filters/parse.go similarity index 100% rename from Godeps/_workspace/src/github.com/docker/engine-api/types/filters/parse.go rename to vendor/github.com/docker/engine-api/types/filters/parse.go diff --git a/Godeps/_workspace/src/github.com/docker/engine-api/types/network/network.go b/vendor/github.com/docker/engine-api/types/network/network.go similarity index 100% rename from Godeps/_workspace/src/github.com/docker/engine-api/types/network/network.go rename to vendor/github.com/docker/engine-api/types/network/network.go diff --git a/Godeps/_workspace/src/github.com/docker/engine-api/types/registry/registry.go b/vendor/github.com/docker/engine-api/types/registry/registry.go similarity index 100% rename from Godeps/_workspace/src/github.com/docker/engine-api/types/registry/registry.go rename to vendor/github.com/docker/engine-api/types/registry/registry.go diff --git a/Godeps/_workspace/src/github.com/docker/engine-api/types/seccomp.go b/vendor/github.com/docker/engine-api/types/seccomp.go similarity index 100% rename from Godeps/_workspace/src/github.com/docker/engine-api/types/seccomp.go rename to vendor/github.com/docker/engine-api/types/seccomp.go diff --git a/Godeps/_workspace/src/github.com/docker/engine-api/types/stats.go b/vendor/github.com/docker/engine-api/types/stats.go similarity index 100% rename from Godeps/_workspace/src/github.com/docker/engine-api/types/stats.go rename to vendor/github.com/docker/engine-api/types/stats.go diff --git a/Godeps/_workspace/src/github.com/docker/engine-api/types/strslice/strslice.go b/vendor/github.com/docker/engine-api/types/strslice/strslice.go similarity index 100% rename from Godeps/_workspace/src/github.com/docker/engine-api/types/strslice/strslice.go rename to vendor/github.com/docker/engine-api/types/strslice/strslice.go diff --git a/Godeps/_workspace/src/github.com/docker/engine-api/types/time/timestamp.go b/vendor/github.com/docker/engine-api/types/time/timestamp.go similarity index 100% rename from Godeps/_workspace/src/github.com/docker/engine-api/types/time/timestamp.go rename to vendor/github.com/docker/engine-api/types/time/timestamp.go diff --git a/Godeps/_workspace/src/github.com/docker/engine-api/types/types.go b/vendor/github.com/docker/engine-api/types/types.go similarity index 100% rename from Godeps/_workspace/src/github.com/docker/engine-api/types/types.go rename to vendor/github.com/docker/engine-api/types/types.go diff --git a/Godeps/_workspace/src/github.com/docker/go-connections/LICENSE b/vendor/github.com/docker/go-connections/LICENSE similarity index 100% rename from Godeps/_workspace/src/github.com/docker/go-connections/LICENSE rename to vendor/github.com/docker/go-connections/LICENSE diff --git a/Godeps/_workspace/src/github.com/docker/go-connections/nat/nat.go b/vendor/github.com/docker/go-connections/nat/nat.go similarity index 100% rename from Godeps/_workspace/src/github.com/docker/go-connections/nat/nat.go rename to vendor/github.com/docker/go-connections/nat/nat.go diff --git a/Godeps/_workspace/src/github.com/docker/go-connections/nat/parse.go b/vendor/github.com/docker/go-connections/nat/parse.go similarity index 100% rename from Godeps/_workspace/src/github.com/docker/go-connections/nat/parse.go rename to vendor/github.com/docker/go-connections/nat/parse.go diff --git a/Godeps/_workspace/src/github.com/docker/go-connections/nat/sort.go b/vendor/github.com/docker/go-connections/nat/sort.go similarity index 100% rename from Godeps/_workspace/src/github.com/docker/go-connections/nat/sort.go rename to vendor/github.com/docker/go-connections/nat/sort.go diff --git a/Godeps/_workspace/src/github.com/docker/go-connections/sockets/README.md b/vendor/github.com/docker/go-connections/sockets/README.md similarity index 100% rename from Godeps/_workspace/src/github.com/docker/go-connections/sockets/README.md rename to vendor/github.com/docker/go-connections/sockets/README.md diff --git a/Godeps/_workspace/src/github.com/docker/go-connections/sockets/inmem_socket.go b/vendor/github.com/docker/go-connections/sockets/inmem_socket.go similarity index 100% rename from Godeps/_workspace/src/github.com/docker/go-connections/sockets/inmem_socket.go rename to vendor/github.com/docker/go-connections/sockets/inmem_socket.go diff --git a/Godeps/_workspace/src/github.com/docker/go-connections/sockets/proxy.go b/vendor/github.com/docker/go-connections/sockets/proxy.go similarity index 100% rename from Godeps/_workspace/src/github.com/docker/go-connections/sockets/proxy.go rename to vendor/github.com/docker/go-connections/sockets/proxy.go diff --git a/Godeps/_workspace/src/github.com/docker/go-connections/sockets/sockets.go b/vendor/github.com/docker/go-connections/sockets/sockets.go similarity index 100% rename from Godeps/_workspace/src/github.com/docker/go-connections/sockets/sockets.go rename to vendor/github.com/docker/go-connections/sockets/sockets.go diff --git a/Godeps/_workspace/src/github.com/docker/go-connections/sockets/sockets_unix.go b/vendor/github.com/docker/go-connections/sockets/sockets_unix.go similarity index 100% rename from Godeps/_workspace/src/github.com/docker/go-connections/sockets/sockets_unix.go rename to vendor/github.com/docker/go-connections/sockets/sockets_unix.go diff --git a/Godeps/_workspace/src/github.com/docker/go-connections/sockets/sockets_windows.go b/vendor/github.com/docker/go-connections/sockets/sockets_windows.go similarity index 100% rename from Godeps/_workspace/src/github.com/docker/go-connections/sockets/sockets_windows.go rename to vendor/github.com/docker/go-connections/sockets/sockets_windows.go diff --git a/Godeps/_workspace/src/github.com/docker/go-connections/sockets/tcp_socket.go b/vendor/github.com/docker/go-connections/sockets/tcp_socket.go similarity index 100% rename from Godeps/_workspace/src/github.com/docker/go-connections/sockets/tcp_socket.go rename to vendor/github.com/docker/go-connections/sockets/tcp_socket.go diff --git a/Godeps/_workspace/src/github.com/docker/go-connections/sockets/unix_socket.go b/vendor/github.com/docker/go-connections/sockets/unix_socket.go similarity index 100% rename from Godeps/_workspace/src/github.com/docker/go-connections/sockets/unix_socket.go rename to vendor/github.com/docker/go-connections/sockets/unix_socket.go diff --git a/Godeps/_workspace/src/github.com/docker/go-connections/tlsconfig/config.go b/vendor/github.com/docker/go-connections/tlsconfig/config.go similarity index 100% rename from Godeps/_workspace/src/github.com/docker/go-connections/tlsconfig/config.go rename to vendor/github.com/docker/go-connections/tlsconfig/config.go diff --git a/Godeps/_workspace/src/github.com/docker/go-connections/tlsconfig/config_client_ciphers.go b/vendor/github.com/docker/go-connections/tlsconfig/config_client_ciphers.go similarity index 100% rename from Godeps/_workspace/src/github.com/docker/go-connections/tlsconfig/config_client_ciphers.go rename to vendor/github.com/docker/go-connections/tlsconfig/config_client_ciphers.go diff --git a/Godeps/_workspace/src/github.com/docker/go-connections/tlsconfig/config_legacy_client_ciphers.go b/vendor/github.com/docker/go-connections/tlsconfig/config_legacy_client_ciphers.go similarity index 100% rename from Godeps/_workspace/src/github.com/docker/go-connections/tlsconfig/config_legacy_client_ciphers.go rename to vendor/github.com/docker/go-connections/tlsconfig/config_legacy_client_ciphers.go diff --git a/Godeps/_workspace/src/github.com/docker/go-units/CONTRIBUTING.md b/vendor/github.com/docker/go-units/CONTRIBUTING.md similarity index 100% rename from Godeps/_workspace/src/github.com/docker/go-units/CONTRIBUTING.md rename to vendor/github.com/docker/go-units/CONTRIBUTING.md diff --git a/Godeps/_workspace/src/github.com/docker/go-units/LICENSE.code b/vendor/github.com/docker/go-units/LICENSE.code similarity index 100% rename from Godeps/_workspace/src/github.com/docker/go-units/LICENSE.code rename to vendor/github.com/docker/go-units/LICENSE.code diff --git a/Godeps/_workspace/src/github.com/docker/go-units/LICENSE.docs b/vendor/github.com/docker/go-units/LICENSE.docs similarity index 100% rename from Godeps/_workspace/src/github.com/docker/go-units/LICENSE.docs rename to vendor/github.com/docker/go-units/LICENSE.docs diff --git a/Godeps/_workspace/src/github.com/docker/go-units/MAINTAINERS b/vendor/github.com/docker/go-units/MAINTAINERS similarity index 100% rename from Godeps/_workspace/src/github.com/docker/go-units/MAINTAINERS rename to vendor/github.com/docker/go-units/MAINTAINERS diff --git a/Godeps/_workspace/src/github.com/docker/go-units/README.md b/vendor/github.com/docker/go-units/README.md similarity index 100% rename from Godeps/_workspace/src/github.com/docker/go-units/README.md rename to vendor/github.com/docker/go-units/README.md diff --git a/Godeps/_workspace/src/github.com/docker/go-units/circle.yml b/vendor/github.com/docker/go-units/circle.yml similarity index 100% rename from Godeps/_workspace/src/github.com/docker/go-units/circle.yml rename to vendor/github.com/docker/go-units/circle.yml diff --git a/Godeps/_workspace/src/github.com/docker/go-units/duration.go b/vendor/github.com/docker/go-units/duration.go similarity index 100% rename from Godeps/_workspace/src/github.com/docker/go-units/duration.go rename to vendor/github.com/docker/go-units/duration.go diff --git a/Godeps/_workspace/src/github.com/docker/go-units/size.go b/vendor/github.com/docker/go-units/size.go similarity index 100% rename from Godeps/_workspace/src/github.com/docker/go-units/size.go rename to vendor/github.com/docker/go-units/size.go diff --git a/Godeps/_workspace/src/github.com/docker/go-units/ulimit.go b/vendor/github.com/docker/go-units/ulimit.go similarity index 100% rename from Godeps/_workspace/src/github.com/docker/go-units/ulimit.go rename to vendor/github.com/docker/go-units/ulimit.go diff --git a/Godeps/_workspace/src/github.com/docker/leadership/CONTRIBUTING.md b/vendor/github.com/docker/leadership/CONTRIBUTING.md similarity index 100% rename from Godeps/_workspace/src/github.com/docker/leadership/CONTRIBUTING.md rename to vendor/github.com/docker/leadership/CONTRIBUTING.md diff --git a/Godeps/_workspace/src/github.com/docker/leadership/LICENSE b/vendor/github.com/docker/leadership/LICENSE similarity index 100% rename from Godeps/_workspace/src/github.com/docker/leadership/LICENSE rename to vendor/github.com/docker/leadership/LICENSE diff --git a/Godeps/_workspace/src/github.com/docker/leadership/MAINTAINERS b/vendor/github.com/docker/leadership/MAINTAINERS similarity index 100% rename from Godeps/_workspace/src/github.com/docker/leadership/MAINTAINERS rename to vendor/github.com/docker/leadership/MAINTAINERS diff --git a/Godeps/_workspace/src/github.com/docker/leadership/README.md b/vendor/github.com/docker/leadership/README.md similarity index 100% rename from Godeps/_workspace/src/github.com/docker/leadership/README.md rename to vendor/github.com/docker/leadership/README.md diff --git a/Godeps/_workspace/src/github.com/docker/leadership/candidate.go b/vendor/github.com/docker/leadership/candidate.go similarity index 100% rename from Godeps/_workspace/src/github.com/docker/leadership/candidate.go rename to vendor/github.com/docker/leadership/candidate.go diff --git a/Godeps/_workspace/src/github.com/docker/leadership/follower.go b/vendor/github.com/docker/leadership/follower.go similarity index 100% rename from Godeps/_workspace/src/github.com/docker/leadership/follower.go rename to vendor/github.com/docker/leadership/follower.go diff --git a/Godeps/_workspace/src/github.com/docker/libkv/.travis.yml b/vendor/github.com/docker/libkv/.travis.yml similarity index 100% rename from Godeps/_workspace/src/github.com/docker/libkv/.travis.yml rename to vendor/github.com/docker/libkv/.travis.yml diff --git a/Godeps/_workspace/src/github.com/docker/libkv/LICENSE.code b/vendor/github.com/docker/libkv/LICENSE.code similarity index 100% rename from Godeps/_workspace/src/github.com/docker/libkv/LICENSE.code rename to vendor/github.com/docker/libkv/LICENSE.code diff --git a/Godeps/_workspace/src/github.com/docker/libkv/LICENSE.docs b/vendor/github.com/docker/libkv/LICENSE.docs similarity index 100% rename from Godeps/_workspace/src/github.com/docker/libkv/LICENSE.docs rename to vendor/github.com/docker/libkv/LICENSE.docs diff --git a/Godeps/_workspace/src/github.com/docker/libkv/MAINTAINERS b/vendor/github.com/docker/libkv/MAINTAINERS similarity index 100% rename from Godeps/_workspace/src/github.com/docker/libkv/MAINTAINERS rename to vendor/github.com/docker/libkv/MAINTAINERS diff --git a/Godeps/_workspace/src/github.com/docker/libkv/README.md b/vendor/github.com/docker/libkv/README.md similarity index 100% rename from Godeps/_workspace/src/github.com/docker/libkv/README.md rename to vendor/github.com/docker/libkv/README.md diff --git a/Godeps/_workspace/src/github.com/docker/libkv/libkv.go b/vendor/github.com/docker/libkv/libkv.go similarity index 100% rename from Godeps/_workspace/src/github.com/docker/libkv/libkv.go rename to vendor/github.com/docker/libkv/libkv.go diff --git a/Godeps/_workspace/src/github.com/docker/libkv/store/consul/consul.go b/vendor/github.com/docker/libkv/store/consul/consul.go similarity index 100% rename from Godeps/_workspace/src/github.com/docker/libkv/store/consul/consul.go rename to vendor/github.com/docker/libkv/store/consul/consul.go diff --git a/Godeps/_workspace/src/github.com/docker/libkv/store/etcd/etcd.go b/vendor/github.com/docker/libkv/store/etcd/etcd.go similarity index 100% rename from Godeps/_workspace/src/github.com/docker/libkv/store/etcd/etcd.go rename to vendor/github.com/docker/libkv/store/etcd/etcd.go diff --git a/Godeps/_workspace/src/github.com/docker/libkv/store/helpers.go b/vendor/github.com/docker/libkv/store/helpers.go similarity index 100% rename from Godeps/_workspace/src/github.com/docker/libkv/store/helpers.go rename to vendor/github.com/docker/libkv/store/helpers.go diff --git a/Godeps/_workspace/src/github.com/docker/libkv/store/store.go b/vendor/github.com/docker/libkv/store/store.go similarity index 100% rename from Godeps/_workspace/src/github.com/docker/libkv/store/store.go rename to vendor/github.com/docker/libkv/store/store.go diff --git a/Godeps/_workspace/src/github.com/docker/libkv/store/zookeeper/zookeeper.go b/vendor/github.com/docker/libkv/store/zookeeper/zookeeper.go similarity index 100% rename from Godeps/_workspace/src/github.com/docker/libkv/store/zookeeper/zookeeper.go rename to vendor/github.com/docker/libkv/store/zookeeper/zookeeper.go diff --git a/Godeps/_workspace/src/github.com/gogo/protobuf/LICENSE b/vendor/github.com/gogo/protobuf/LICENSE similarity index 100% rename from Godeps/_workspace/src/github.com/gogo/protobuf/LICENSE rename to vendor/github.com/gogo/protobuf/LICENSE diff --git a/Godeps/_workspace/src/github.com/gogo/protobuf/proto/Makefile b/vendor/github.com/gogo/protobuf/proto/Makefile similarity index 100% rename from Godeps/_workspace/src/github.com/gogo/protobuf/proto/Makefile rename to vendor/github.com/gogo/protobuf/proto/Makefile diff --git a/Godeps/_workspace/src/github.com/gogo/protobuf/proto/clone.go b/vendor/github.com/gogo/protobuf/proto/clone.go similarity index 100% rename from Godeps/_workspace/src/github.com/gogo/protobuf/proto/clone.go rename to vendor/github.com/gogo/protobuf/proto/clone.go diff --git a/Godeps/_workspace/src/github.com/gogo/protobuf/proto/decode.go b/vendor/github.com/gogo/protobuf/proto/decode.go similarity index 100% rename from Godeps/_workspace/src/github.com/gogo/protobuf/proto/decode.go rename to vendor/github.com/gogo/protobuf/proto/decode.go diff --git a/Godeps/_workspace/src/github.com/gogo/protobuf/proto/decode_gogo.go b/vendor/github.com/gogo/protobuf/proto/decode_gogo.go similarity index 100% rename from Godeps/_workspace/src/github.com/gogo/protobuf/proto/decode_gogo.go rename to vendor/github.com/gogo/protobuf/proto/decode_gogo.go diff --git a/Godeps/_workspace/src/github.com/gogo/protobuf/proto/encode.go b/vendor/github.com/gogo/protobuf/proto/encode.go similarity index 100% rename from Godeps/_workspace/src/github.com/gogo/protobuf/proto/encode.go rename to vendor/github.com/gogo/protobuf/proto/encode.go diff --git a/Godeps/_workspace/src/github.com/gogo/protobuf/proto/encode_gogo.go b/vendor/github.com/gogo/protobuf/proto/encode_gogo.go similarity index 100% rename from Godeps/_workspace/src/github.com/gogo/protobuf/proto/encode_gogo.go rename to vendor/github.com/gogo/protobuf/proto/encode_gogo.go diff --git a/Godeps/_workspace/src/github.com/gogo/protobuf/proto/equal.go b/vendor/github.com/gogo/protobuf/proto/equal.go similarity index 100% rename from Godeps/_workspace/src/github.com/gogo/protobuf/proto/equal.go rename to vendor/github.com/gogo/protobuf/proto/equal.go diff --git a/Godeps/_workspace/src/github.com/gogo/protobuf/proto/extensions.go b/vendor/github.com/gogo/protobuf/proto/extensions.go similarity index 100% rename from Godeps/_workspace/src/github.com/gogo/protobuf/proto/extensions.go rename to vendor/github.com/gogo/protobuf/proto/extensions.go diff --git a/Godeps/_workspace/src/github.com/gogo/protobuf/proto/extensions_gogo.go b/vendor/github.com/gogo/protobuf/proto/extensions_gogo.go similarity index 100% rename from Godeps/_workspace/src/github.com/gogo/protobuf/proto/extensions_gogo.go rename to vendor/github.com/gogo/protobuf/proto/extensions_gogo.go diff --git a/Godeps/_workspace/src/github.com/gogo/protobuf/proto/lib.go b/vendor/github.com/gogo/protobuf/proto/lib.go similarity index 100% rename from Godeps/_workspace/src/github.com/gogo/protobuf/proto/lib.go rename to vendor/github.com/gogo/protobuf/proto/lib.go diff --git a/Godeps/_workspace/src/github.com/gogo/protobuf/proto/lib_gogo.go b/vendor/github.com/gogo/protobuf/proto/lib_gogo.go similarity index 100% rename from Godeps/_workspace/src/github.com/gogo/protobuf/proto/lib_gogo.go rename to vendor/github.com/gogo/protobuf/proto/lib_gogo.go diff --git a/Godeps/_workspace/src/github.com/gogo/protobuf/proto/message_set.go b/vendor/github.com/gogo/protobuf/proto/message_set.go similarity index 100% rename from Godeps/_workspace/src/github.com/gogo/protobuf/proto/message_set.go rename to vendor/github.com/gogo/protobuf/proto/message_set.go diff --git a/Godeps/_workspace/src/github.com/gogo/protobuf/proto/pointer_reflect.go b/vendor/github.com/gogo/protobuf/proto/pointer_reflect.go similarity index 100% rename from Godeps/_workspace/src/github.com/gogo/protobuf/proto/pointer_reflect.go rename to vendor/github.com/gogo/protobuf/proto/pointer_reflect.go diff --git a/Godeps/_workspace/src/github.com/gogo/protobuf/proto/pointer_unsafe.go b/vendor/github.com/gogo/protobuf/proto/pointer_unsafe.go similarity index 100% rename from Godeps/_workspace/src/github.com/gogo/protobuf/proto/pointer_unsafe.go rename to vendor/github.com/gogo/protobuf/proto/pointer_unsafe.go diff --git a/Godeps/_workspace/src/github.com/gogo/protobuf/proto/pointer_unsafe_gogo.go b/vendor/github.com/gogo/protobuf/proto/pointer_unsafe_gogo.go similarity index 100% rename from Godeps/_workspace/src/github.com/gogo/protobuf/proto/pointer_unsafe_gogo.go rename to vendor/github.com/gogo/protobuf/proto/pointer_unsafe_gogo.go diff --git a/Godeps/_workspace/src/github.com/gogo/protobuf/proto/properties.go b/vendor/github.com/gogo/protobuf/proto/properties.go similarity index 100% rename from Godeps/_workspace/src/github.com/gogo/protobuf/proto/properties.go rename to vendor/github.com/gogo/protobuf/proto/properties.go diff --git a/Godeps/_workspace/src/github.com/gogo/protobuf/proto/properties_gogo.go b/vendor/github.com/gogo/protobuf/proto/properties_gogo.go similarity index 100% rename from Godeps/_workspace/src/github.com/gogo/protobuf/proto/properties_gogo.go rename to vendor/github.com/gogo/protobuf/proto/properties_gogo.go diff --git a/Godeps/_workspace/src/github.com/gogo/protobuf/proto/proto3_proto/proto3.pb.go b/vendor/github.com/gogo/protobuf/proto/proto3_proto/proto3.pb.go similarity index 100% rename from Godeps/_workspace/src/github.com/gogo/protobuf/proto/proto3_proto/proto3.pb.go rename to vendor/github.com/gogo/protobuf/proto/proto3_proto/proto3.pb.go diff --git a/Godeps/_workspace/src/github.com/gogo/protobuf/proto/proto3_proto/proto3.proto b/vendor/github.com/gogo/protobuf/proto/proto3_proto/proto3.proto similarity index 100% rename from Godeps/_workspace/src/github.com/gogo/protobuf/proto/proto3_proto/proto3.proto rename to vendor/github.com/gogo/protobuf/proto/proto3_proto/proto3.proto diff --git a/Godeps/_workspace/src/github.com/gogo/protobuf/proto/skip_gogo.go b/vendor/github.com/gogo/protobuf/proto/skip_gogo.go similarity index 100% rename from Godeps/_workspace/src/github.com/gogo/protobuf/proto/skip_gogo.go rename to vendor/github.com/gogo/protobuf/proto/skip_gogo.go diff --git a/Godeps/_workspace/src/github.com/gogo/protobuf/proto/text.go b/vendor/github.com/gogo/protobuf/proto/text.go similarity index 100% rename from Godeps/_workspace/src/github.com/gogo/protobuf/proto/text.go rename to vendor/github.com/gogo/protobuf/proto/text.go diff --git a/Godeps/_workspace/src/github.com/gogo/protobuf/proto/text_gogo.go b/vendor/github.com/gogo/protobuf/proto/text_gogo.go similarity index 100% rename from Godeps/_workspace/src/github.com/gogo/protobuf/proto/text_gogo.go rename to vendor/github.com/gogo/protobuf/proto/text_gogo.go diff --git a/Godeps/_workspace/src/github.com/gogo/protobuf/proto/text_parser.go b/vendor/github.com/gogo/protobuf/proto/text_parser.go similarity index 100% rename from Godeps/_workspace/src/github.com/gogo/protobuf/proto/text_parser.go rename to vendor/github.com/gogo/protobuf/proto/text_parser.go diff --git a/Godeps/_workspace/src/github.com/golang/glog/LICENSE b/vendor/github.com/golang/glog/LICENSE similarity index 100% rename from Godeps/_workspace/src/github.com/golang/glog/LICENSE rename to vendor/github.com/golang/glog/LICENSE diff --git a/Godeps/_workspace/src/github.com/golang/glog/README b/vendor/github.com/golang/glog/README similarity index 100% rename from Godeps/_workspace/src/github.com/golang/glog/README rename to vendor/github.com/golang/glog/README diff --git a/Godeps/_workspace/src/github.com/golang/glog/glog.go b/vendor/github.com/golang/glog/glog.go similarity index 100% rename from Godeps/_workspace/src/github.com/golang/glog/glog.go rename to vendor/github.com/golang/glog/glog.go diff --git a/Godeps/_workspace/src/github.com/golang/glog/glog_file.go b/vendor/github.com/golang/glog/glog_file.go similarity index 100% rename from Godeps/_workspace/src/github.com/golang/glog/glog_file.go rename to vendor/github.com/golang/glog/glog_file.go diff --git a/Godeps/_workspace/src/github.com/gorilla/context/.travis.yml b/vendor/github.com/gorilla/context/.travis.yml similarity index 100% rename from Godeps/_workspace/src/github.com/gorilla/context/.travis.yml rename to vendor/github.com/gorilla/context/.travis.yml diff --git a/Godeps/_workspace/src/github.com/gorilla/context/LICENSE b/vendor/github.com/gorilla/context/LICENSE similarity index 100% rename from Godeps/_workspace/src/github.com/gorilla/context/LICENSE rename to vendor/github.com/gorilla/context/LICENSE diff --git a/Godeps/_workspace/src/github.com/gorilla/context/README.md b/vendor/github.com/gorilla/context/README.md similarity index 100% rename from Godeps/_workspace/src/github.com/gorilla/context/README.md rename to vendor/github.com/gorilla/context/README.md diff --git a/Godeps/_workspace/src/github.com/gorilla/context/context.go b/vendor/github.com/gorilla/context/context.go similarity index 100% rename from Godeps/_workspace/src/github.com/gorilla/context/context.go rename to vendor/github.com/gorilla/context/context.go diff --git a/Godeps/_workspace/src/github.com/gorilla/context/doc.go b/vendor/github.com/gorilla/context/doc.go similarity index 100% rename from Godeps/_workspace/src/github.com/gorilla/context/doc.go rename to vendor/github.com/gorilla/context/doc.go diff --git a/Godeps/_workspace/src/github.com/gorilla/mux/.travis.yml b/vendor/github.com/gorilla/mux/.travis.yml similarity index 100% rename from Godeps/_workspace/src/github.com/gorilla/mux/.travis.yml rename to vendor/github.com/gorilla/mux/.travis.yml diff --git a/Godeps/_workspace/src/github.com/gorilla/mux/LICENSE b/vendor/github.com/gorilla/mux/LICENSE similarity index 100% rename from Godeps/_workspace/src/github.com/gorilla/mux/LICENSE rename to vendor/github.com/gorilla/mux/LICENSE diff --git a/Godeps/_workspace/src/github.com/gorilla/mux/README.md b/vendor/github.com/gorilla/mux/README.md similarity index 100% rename from Godeps/_workspace/src/github.com/gorilla/mux/README.md rename to vendor/github.com/gorilla/mux/README.md diff --git a/Godeps/_workspace/src/github.com/gorilla/mux/doc.go b/vendor/github.com/gorilla/mux/doc.go similarity index 100% rename from Godeps/_workspace/src/github.com/gorilla/mux/doc.go rename to vendor/github.com/gorilla/mux/doc.go diff --git a/Godeps/_workspace/src/github.com/gorilla/mux/mux.go b/vendor/github.com/gorilla/mux/mux.go similarity index 100% rename from Godeps/_workspace/src/github.com/gorilla/mux/mux.go rename to vendor/github.com/gorilla/mux/mux.go diff --git a/Godeps/_workspace/src/github.com/gorilla/mux/regexp.go b/vendor/github.com/gorilla/mux/regexp.go similarity index 100% rename from Godeps/_workspace/src/github.com/gorilla/mux/regexp.go rename to vendor/github.com/gorilla/mux/regexp.go diff --git a/Godeps/_workspace/src/github.com/gorilla/mux/route.go b/vendor/github.com/gorilla/mux/route.go similarity index 100% rename from Godeps/_workspace/src/github.com/gorilla/mux/route.go rename to vendor/github.com/gorilla/mux/route.go diff --git a/Godeps/_workspace/src/github.com/hashicorp/consul/LICENSE b/vendor/github.com/hashicorp/consul/LICENSE similarity index 100% rename from Godeps/_workspace/src/github.com/hashicorp/consul/LICENSE rename to vendor/github.com/hashicorp/consul/LICENSE diff --git a/Godeps/_workspace/src/github.com/hashicorp/consul/api/README.md b/vendor/github.com/hashicorp/consul/api/README.md similarity index 100% rename from Godeps/_workspace/src/github.com/hashicorp/consul/api/README.md rename to vendor/github.com/hashicorp/consul/api/README.md diff --git a/Godeps/_workspace/src/github.com/hashicorp/consul/api/acl.go b/vendor/github.com/hashicorp/consul/api/acl.go similarity index 100% rename from Godeps/_workspace/src/github.com/hashicorp/consul/api/acl.go rename to vendor/github.com/hashicorp/consul/api/acl.go diff --git a/Godeps/_workspace/src/github.com/hashicorp/consul/api/agent.go b/vendor/github.com/hashicorp/consul/api/agent.go similarity index 100% rename from Godeps/_workspace/src/github.com/hashicorp/consul/api/agent.go rename to vendor/github.com/hashicorp/consul/api/agent.go diff --git a/Godeps/_workspace/src/github.com/hashicorp/consul/api/api.go b/vendor/github.com/hashicorp/consul/api/api.go similarity index 100% rename from Godeps/_workspace/src/github.com/hashicorp/consul/api/api.go rename to vendor/github.com/hashicorp/consul/api/api.go diff --git a/Godeps/_workspace/src/github.com/hashicorp/consul/api/catalog.go b/vendor/github.com/hashicorp/consul/api/catalog.go similarity index 100% rename from Godeps/_workspace/src/github.com/hashicorp/consul/api/catalog.go rename to vendor/github.com/hashicorp/consul/api/catalog.go diff --git a/Godeps/_workspace/src/github.com/hashicorp/consul/api/coordinate.go b/vendor/github.com/hashicorp/consul/api/coordinate.go similarity index 100% rename from Godeps/_workspace/src/github.com/hashicorp/consul/api/coordinate.go rename to vendor/github.com/hashicorp/consul/api/coordinate.go diff --git a/Godeps/_workspace/src/github.com/hashicorp/consul/api/event.go b/vendor/github.com/hashicorp/consul/api/event.go similarity index 100% rename from Godeps/_workspace/src/github.com/hashicorp/consul/api/event.go rename to vendor/github.com/hashicorp/consul/api/event.go diff --git a/Godeps/_workspace/src/github.com/hashicorp/consul/api/health.go b/vendor/github.com/hashicorp/consul/api/health.go similarity index 100% rename from Godeps/_workspace/src/github.com/hashicorp/consul/api/health.go rename to vendor/github.com/hashicorp/consul/api/health.go diff --git a/Godeps/_workspace/src/github.com/hashicorp/consul/api/kv.go b/vendor/github.com/hashicorp/consul/api/kv.go similarity index 100% rename from Godeps/_workspace/src/github.com/hashicorp/consul/api/kv.go rename to vendor/github.com/hashicorp/consul/api/kv.go diff --git a/Godeps/_workspace/src/github.com/hashicorp/consul/api/lock.go b/vendor/github.com/hashicorp/consul/api/lock.go similarity index 100% rename from Godeps/_workspace/src/github.com/hashicorp/consul/api/lock.go rename to vendor/github.com/hashicorp/consul/api/lock.go diff --git a/Godeps/_workspace/src/github.com/hashicorp/consul/api/prepared_query.go b/vendor/github.com/hashicorp/consul/api/prepared_query.go similarity index 100% rename from Godeps/_workspace/src/github.com/hashicorp/consul/api/prepared_query.go rename to vendor/github.com/hashicorp/consul/api/prepared_query.go diff --git a/Godeps/_workspace/src/github.com/hashicorp/consul/api/raw.go b/vendor/github.com/hashicorp/consul/api/raw.go similarity index 100% rename from Godeps/_workspace/src/github.com/hashicorp/consul/api/raw.go rename to vendor/github.com/hashicorp/consul/api/raw.go diff --git a/Godeps/_workspace/src/github.com/hashicorp/consul/api/semaphore.go b/vendor/github.com/hashicorp/consul/api/semaphore.go similarity index 100% rename from Godeps/_workspace/src/github.com/hashicorp/consul/api/semaphore.go rename to vendor/github.com/hashicorp/consul/api/semaphore.go diff --git a/Godeps/_workspace/src/github.com/hashicorp/consul/api/session.go b/vendor/github.com/hashicorp/consul/api/session.go similarity index 100% rename from Godeps/_workspace/src/github.com/hashicorp/consul/api/session.go rename to vendor/github.com/hashicorp/consul/api/session.go diff --git a/Godeps/_workspace/src/github.com/hashicorp/consul/api/status.go b/vendor/github.com/hashicorp/consul/api/status.go similarity index 100% rename from Godeps/_workspace/src/github.com/hashicorp/consul/api/status.go rename to vendor/github.com/hashicorp/consul/api/status.go diff --git a/Godeps/_workspace/src/github.com/hashicorp/consul/website/LICENSE.md b/vendor/github.com/hashicorp/consul/website/LICENSE.md similarity index 100% rename from Godeps/_workspace/src/github.com/hashicorp/consul/website/LICENSE.md rename to vendor/github.com/hashicorp/consul/website/LICENSE.md diff --git a/Godeps/_workspace/src/github.com/hashicorp/go-cleanhttp/LICENSE b/vendor/github.com/hashicorp/go-cleanhttp/LICENSE similarity index 100% rename from Godeps/_workspace/src/github.com/hashicorp/go-cleanhttp/LICENSE rename to vendor/github.com/hashicorp/go-cleanhttp/LICENSE diff --git a/Godeps/_workspace/src/github.com/hashicorp/go-cleanhttp/README.md b/vendor/github.com/hashicorp/go-cleanhttp/README.md similarity index 100% rename from Godeps/_workspace/src/github.com/hashicorp/go-cleanhttp/README.md rename to vendor/github.com/hashicorp/go-cleanhttp/README.md diff --git a/Godeps/_workspace/src/github.com/hashicorp/go-cleanhttp/cleanhttp.go b/vendor/github.com/hashicorp/go-cleanhttp/cleanhttp.go similarity index 100% rename from Godeps/_workspace/src/github.com/hashicorp/go-cleanhttp/cleanhttp.go rename to vendor/github.com/hashicorp/go-cleanhttp/cleanhttp.go diff --git a/Godeps/_workspace/src/github.com/hashicorp/serf/LICENSE b/vendor/github.com/hashicorp/serf/LICENSE similarity index 100% rename from Godeps/_workspace/src/github.com/hashicorp/serf/LICENSE rename to vendor/github.com/hashicorp/serf/LICENSE diff --git a/Godeps/_workspace/src/github.com/hashicorp/serf/coordinate/README.md b/vendor/github.com/hashicorp/serf/coordinate/README.md similarity index 100% rename from Godeps/_workspace/src/github.com/hashicorp/serf/coordinate/README.md rename to vendor/github.com/hashicorp/serf/coordinate/README.md diff --git a/Godeps/_workspace/src/github.com/hashicorp/serf/coordinate/client.go b/vendor/github.com/hashicorp/serf/coordinate/client.go similarity index 100% rename from Godeps/_workspace/src/github.com/hashicorp/serf/coordinate/client.go rename to vendor/github.com/hashicorp/serf/coordinate/client.go diff --git a/Godeps/_workspace/src/github.com/hashicorp/serf/coordinate/config.go b/vendor/github.com/hashicorp/serf/coordinate/config.go similarity index 100% rename from Godeps/_workspace/src/github.com/hashicorp/serf/coordinate/config.go rename to vendor/github.com/hashicorp/serf/coordinate/config.go diff --git a/Godeps/_workspace/src/github.com/hashicorp/serf/coordinate/coordinate.go b/vendor/github.com/hashicorp/serf/coordinate/coordinate.go similarity index 100% rename from Godeps/_workspace/src/github.com/hashicorp/serf/coordinate/coordinate.go rename to vendor/github.com/hashicorp/serf/coordinate/coordinate.go diff --git a/Godeps/_workspace/src/github.com/hashicorp/serf/coordinate/phantom.go b/vendor/github.com/hashicorp/serf/coordinate/phantom.go similarity index 100% rename from Godeps/_workspace/src/github.com/hashicorp/serf/coordinate/phantom.go rename to vendor/github.com/hashicorp/serf/coordinate/phantom.go diff --git a/Godeps/_workspace/src/github.com/hashicorp/serf/coordinate/test_util.go b/vendor/github.com/hashicorp/serf/coordinate/test_util.go similarity index 100% rename from Godeps/_workspace/src/github.com/hashicorp/serf/coordinate/test_util.go rename to vendor/github.com/hashicorp/serf/coordinate/test_util.go diff --git a/Godeps/_workspace/src/github.com/hashicorp/serf/ops-misc/debian/copyright b/vendor/github.com/hashicorp/serf/ops-misc/debian/copyright similarity index 100% rename from Godeps/_workspace/src/github.com/hashicorp/serf/ops-misc/debian/copyright rename to vendor/github.com/hashicorp/serf/ops-misc/debian/copyright diff --git a/Godeps/_workspace/src/github.com/hashicorp/serf/website/LICENSE.md b/vendor/github.com/hashicorp/serf/website/LICENSE.md similarity index 100% rename from Godeps/_workspace/src/github.com/hashicorp/serf/website/LICENSE.md rename to vendor/github.com/hashicorp/serf/website/LICENSE.md diff --git a/Godeps/_workspace/src/github.com/mesos/mesos-go/LICENSE b/vendor/github.com/mesos/mesos-go/LICENSE similarity index 100% rename from Godeps/_workspace/src/github.com/mesos/mesos-go/LICENSE rename to vendor/github.com/mesos/mesos-go/LICENSE diff --git a/Godeps/_workspace/src/github.com/mesos/mesos-go/NOTICE b/vendor/github.com/mesos/mesos-go/NOTICE similarity index 100% rename from Godeps/_workspace/src/github.com/mesos/mesos-go/NOTICE rename to vendor/github.com/mesos/mesos-go/NOTICE diff --git a/Godeps/_workspace/src/github.com/mesos/mesos-go/auth/callback/interface.go b/vendor/github.com/mesos/mesos-go/auth/callback/interface.go similarity index 100% rename from Godeps/_workspace/src/github.com/mesos/mesos-go/auth/callback/interface.go rename to vendor/github.com/mesos/mesos-go/auth/callback/interface.go diff --git a/Godeps/_workspace/src/github.com/mesos/mesos-go/auth/callback/interprocess.go b/vendor/github.com/mesos/mesos-go/auth/callback/interprocess.go similarity index 100% rename from Godeps/_workspace/src/github.com/mesos/mesos-go/auth/callback/interprocess.go rename to vendor/github.com/mesos/mesos-go/auth/callback/interprocess.go diff --git a/Godeps/_workspace/src/github.com/mesos/mesos-go/auth/callback/name.go b/vendor/github.com/mesos/mesos-go/auth/callback/name.go similarity index 100% rename from Godeps/_workspace/src/github.com/mesos/mesos-go/auth/callback/name.go rename to vendor/github.com/mesos/mesos-go/auth/callback/name.go diff --git a/Godeps/_workspace/src/github.com/mesos/mesos-go/auth/callback/password.go b/vendor/github.com/mesos/mesos-go/auth/callback/password.go similarity index 100% rename from Godeps/_workspace/src/github.com/mesos/mesos-go/auth/callback/password.go rename to vendor/github.com/mesos/mesos-go/auth/callback/password.go diff --git a/Godeps/_workspace/src/github.com/mesos/mesos-go/auth/interface.go b/vendor/github.com/mesos/mesos-go/auth/interface.go similarity index 100% rename from Godeps/_workspace/src/github.com/mesos/mesos-go/auth/interface.go rename to vendor/github.com/mesos/mesos-go/auth/interface.go diff --git a/Godeps/_workspace/src/github.com/mesos/mesos-go/auth/login.go b/vendor/github.com/mesos/mesos-go/auth/login.go similarity index 100% rename from Godeps/_workspace/src/github.com/mesos/mesos-go/auth/login.go rename to vendor/github.com/mesos/mesos-go/auth/login.go diff --git a/Godeps/_workspace/src/github.com/mesos/mesos-go/auth/sasl/authenticatee.go b/vendor/github.com/mesos/mesos-go/auth/sasl/authenticatee.go similarity index 100% rename from Godeps/_workspace/src/github.com/mesos/mesos-go/auth/sasl/authenticatee.go rename to vendor/github.com/mesos/mesos-go/auth/sasl/authenticatee.go diff --git a/Godeps/_workspace/src/github.com/mesos/mesos-go/auth/sasl/context.go b/vendor/github.com/mesos/mesos-go/auth/sasl/context.go similarity index 100% rename from Godeps/_workspace/src/github.com/mesos/mesos-go/auth/sasl/context.go rename to vendor/github.com/mesos/mesos-go/auth/sasl/context.go diff --git a/Godeps/_workspace/src/github.com/mesos/mesos-go/auth/sasl/mech/crammd5/mechanism.go b/vendor/github.com/mesos/mesos-go/auth/sasl/mech/crammd5/mechanism.go similarity index 100% rename from Godeps/_workspace/src/github.com/mesos/mesos-go/auth/sasl/mech/crammd5/mechanism.go rename to vendor/github.com/mesos/mesos-go/auth/sasl/mech/crammd5/mechanism.go diff --git a/Godeps/_workspace/src/github.com/mesos/mesos-go/auth/sasl/mech/interface.go b/vendor/github.com/mesos/mesos-go/auth/sasl/mech/interface.go similarity index 100% rename from Godeps/_workspace/src/github.com/mesos/mesos-go/auth/sasl/mech/interface.go rename to vendor/github.com/mesos/mesos-go/auth/sasl/mech/interface.go diff --git a/Godeps/_workspace/src/github.com/mesos/mesos-go/auth/sasl/mech/plugins.go b/vendor/github.com/mesos/mesos-go/auth/sasl/mech/plugins.go similarity index 100% rename from Godeps/_workspace/src/github.com/mesos/mesos-go/auth/sasl/mech/plugins.go rename to vendor/github.com/mesos/mesos-go/auth/sasl/mech/plugins.go diff --git a/Godeps/_workspace/src/github.com/mesos/mesos-go/detector/doc.go b/vendor/github.com/mesos/mesos-go/detector/doc.go similarity index 100% rename from Godeps/_workspace/src/github.com/mesos/mesos-go/detector/doc.go rename to vendor/github.com/mesos/mesos-go/detector/doc.go diff --git a/Godeps/_workspace/src/github.com/mesos/mesos-go/detector/factory.go b/vendor/github.com/mesos/mesos-go/detector/factory.go similarity index 100% rename from Godeps/_workspace/src/github.com/mesos/mesos-go/detector/factory.go rename to vendor/github.com/mesos/mesos-go/detector/factory.go diff --git a/Godeps/_workspace/src/github.com/mesos/mesos-go/detector/interface.go b/vendor/github.com/mesos/mesos-go/detector/interface.go similarity index 100% rename from Godeps/_workspace/src/github.com/mesos/mesos-go/detector/interface.go rename to vendor/github.com/mesos/mesos-go/detector/interface.go diff --git a/Godeps/_workspace/src/github.com/mesos/mesos-go/detector/standalone.go b/vendor/github.com/mesos/mesos-go/detector/standalone.go similarity index 100% rename from Godeps/_workspace/src/github.com/mesos/mesos-go/detector/standalone.go rename to vendor/github.com/mesos/mesos-go/detector/standalone.go diff --git a/Godeps/_workspace/src/github.com/mesos/mesos-go/detector/zoo/client2.go b/vendor/github.com/mesos/mesos-go/detector/zoo/client2.go similarity index 100% rename from Godeps/_workspace/src/github.com/mesos/mesos-go/detector/zoo/client2.go rename to vendor/github.com/mesos/mesos-go/detector/zoo/client2.go diff --git a/Godeps/_workspace/src/github.com/mesos/mesos-go/detector/zoo/detect.go b/vendor/github.com/mesos/mesos-go/detector/zoo/detect.go similarity index 100% rename from Godeps/_workspace/src/github.com/mesos/mesos-go/detector/zoo/detect.go rename to vendor/github.com/mesos/mesos-go/detector/zoo/detect.go diff --git a/Godeps/_workspace/src/github.com/mesos/mesos-go/detector/zoo/doc.go b/vendor/github.com/mesos/mesos-go/detector/zoo/doc.go similarity index 100% rename from Godeps/_workspace/src/github.com/mesos/mesos-go/detector/zoo/doc.go rename to vendor/github.com/mesos/mesos-go/detector/zoo/doc.go diff --git a/Godeps/_workspace/src/github.com/mesos/mesos-go/detector/zoo/mocked_conn.go b/vendor/github.com/mesos/mesos-go/detector/zoo/mocked_conn.go similarity index 100% rename from Godeps/_workspace/src/github.com/mesos/mesos-go/detector/zoo/mocked_conn.go rename to vendor/github.com/mesos/mesos-go/detector/zoo/mocked_conn.go diff --git a/Godeps/_workspace/src/github.com/mesos/mesos-go/detector/zoo/plugin.go b/vendor/github.com/mesos/mesos-go/detector/zoo/plugin.go similarity index 100% rename from Godeps/_workspace/src/github.com/mesos/mesos-go/detector/zoo/plugin.go rename to vendor/github.com/mesos/mesos-go/detector/zoo/plugin.go diff --git a/Godeps/_workspace/src/github.com/mesos/mesos-go/detector/zoo/types.go b/vendor/github.com/mesos/mesos-go/detector/zoo/types.go similarity index 100% rename from Godeps/_workspace/src/github.com/mesos/mesos-go/detector/zoo/types.go rename to vendor/github.com/mesos/mesos-go/detector/zoo/types.go diff --git a/Godeps/_workspace/src/github.com/mesos/mesos-go/mesosproto/Makefile b/vendor/github.com/mesos/mesos-go/mesosproto/Makefile similarity index 100% rename from Godeps/_workspace/src/github.com/mesos/mesos-go/mesosproto/Makefile rename to vendor/github.com/mesos/mesos-go/mesosproto/Makefile diff --git a/Godeps/_workspace/src/github.com/mesos/mesos-go/mesosproto/authentication.pb.go b/vendor/github.com/mesos/mesos-go/mesosproto/authentication.pb.go similarity index 100% rename from Godeps/_workspace/src/github.com/mesos/mesos-go/mesosproto/authentication.pb.go rename to vendor/github.com/mesos/mesos-go/mesosproto/authentication.pb.go diff --git a/Godeps/_workspace/src/github.com/mesos/mesos-go/mesosproto/authentication.proto b/vendor/github.com/mesos/mesos-go/mesosproto/authentication.proto similarity index 100% rename from Godeps/_workspace/src/github.com/mesos/mesos-go/mesosproto/authentication.proto rename to vendor/github.com/mesos/mesos-go/mesosproto/authentication.proto diff --git a/Godeps/_workspace/src/github.com/mesos/mesos-go/mesosproto/authorizer.pb.go b/vendor/github.com/mesos/mesos-go/mesosproto/authorizer.pb.go similarity index 100% rename from Godeps/_workspace/src/github.com/mesos/mesos-go/mesosproto/authorizer.pb.go rename to vendor/github.com/mesos/mesos-go/mesosproto/authorizer.pb.go diff --git a/Godeps/_workspace/src/github.com/mesos/mesos-go/mesosproto/authorizer.proto b/vendor/github.com/mesos/mesos-go/mesosproto/authorizer.proto similarity index 100% rename from Godeps/_workspace/src/github.com/mesos/mesos-go/mesosproto/authorizer.proto rename to vendor/github.com/mesos/mesos-go/mesosproto/authorizer.proto diff --git a/Godeps/_workspace/src/github.com/mesos/mesos-go/mesosproto/containerizer.pb.go b/vendor/github.com/mesos/mesos-go/mesosproto/containerizer.pb.go similarity index 100% rename from Godeps/_workspace/src/github.com/mesos/mesos-go/mesosproto/containerizer.pb.go rename to vendor/github.com/mesos/mesos-go/mesosproto/containerizer.pb.go diff --git a/Godeps/_workspace/src/github.com/mesos/mesos-go/mesosproto/containerizer.proto b/vendor/github.com/mesos/mesos-go/mesosproto/containerizer.proto similarity index 100% rename from Godeps/_workspace/src/github.com/mesos/mesos-go/mesosproto/containerizer.proto rename to vendor/github.com/mesos/mesos-go/mesosproto/containerizer.proto diff --git a/Godeps/_workspace/src/github.com/mesos/mesos-go/mesosproto/internal.pb.go b/vendor/github.com/mesos/mesos-go/mesosproto/internal.pb.go similarity index 100% rename from Godeps/_workspace/src/github.com/mesos/mesos-go/mesosproto/internal.pb.go rename to vendor/github.com/mesos/mesos-go/mesosproto/internal.pb.go diff --git a/Godeps/_workspace/src/github.com/mesos/mesos-go/mesosproto/internal.proto b/vendor/github.com/mesos/mesos-go/mesosproto/internal.proto similarity index 100% rename from Godeps/_workspace/src/github.com/mesos/mesos-go/mesosproto/internal.proto rename to vendor/github.com/mesos/mesos-go/mesosproto/internal.proto diff --git a/Godeps/_workspace/src/github.com/mesos/mesos-go/mesosproto/log.pb.go b/vendor/github.com/mesos/mesos-go/mesosproto/log.pb.go similarity index 100% rename from Godeps/_workspace/src/github.com/mesos/mesos-go/mesosproto/log.pb.go rename to vendor/github.com/mesos/mesos-go/mesosproto/log.pb.go diff --git a/Godeps/_workspace/src/github.com/mesos/mesos-go/mesosproto/log.proto b/vendor/github.com/mesos/mesos-go/mesosproto/log.proto similarity index 100% rename from Godeps/_workspace/src/github.com/mesos/mesos-go/mesosproto/log.proto rename to vendor/github.com/mesos/mesos-go/mesosproto/log.proto diff --git a/Godeps/_workspace/src/github.com/mesos/mesos-go/mesosproto/mesos.pb.go b/vendor/github.com/mesos/mesos-go/mesosproto/mesos.pb.go similarity index 100% rename from Godeps/_workspace/src/github.com/mesos/mesos-go/mesosproto/mesos.pb.go rename to vendor/github.com/mesos/mesos-go/mesosproto/mesos.pb.go diff --git a/Godeps/_workspace/src/github.com/mesos/mesos-go/mesosproto/mesos.proto b/vendor/github.com/mesos/mesos-go/mesosproto/mesos.proto similarity index 100% rename from Godeps/_workspace/src/github.com/mesos/mesos-go/mesosproto/mesos.proto rename to vendor/github.com/mesos/mesos-go/mesosproto/mesos.proto diff --git a/Godeps/_workspace/src/github.com/mesos/mesos-go/mesosproto/messages.pb.go b/vendor/github.com/mesos/mesos-go/mesosproto/messages.pb.go similarity index 100% rename from Godeps/_workspace/src/github.com/mesos/mesos-go/mesosproto/messages.pb.go rename to vendor/github.com/mesos/mesos-go/mesosproto/messages.pb.go diff --git a/Godeps/_workspace/src/github.com/mesos/mesos-go/mesosproto/messages.proto b/vendor/github.com/mesos/mesos-go/mesosproto/messages.proto similarity index 100% rename from Godeps/_workspace/src/github.com/mesos/mesos-go/mesosproto/messages.proto rename to vendor/github.com/mesos/mesos-go/mesosproto/messages.proto diff --git a/Godeps/_workspace/src/github.com/mesos/mesos-go/mesosproto/registry.pb.go b/vendor/github.com/mesos/mesos-go/mesosproto/registry.pb.go similarity index 100% rename from Godeps/_workspace/src/github.com/mesos/mesos-go/mesosproto/registry.pb.go rename to vendor/github.com/mesos/mesos-go/mesosproto/registry.pb.go diff --git a/Godeps/_workspace/src/github.com/mesos/mesos-go/mesosproto/registry.proto b/vendor/github.com/mesos/mesos-go/mesosproto/registry.proto similarity index 100% rename from Godeps/_workspace/src/github.com/mesos/mesos-go/mesosproto/registry.proto rename to vendor/github.com/mesos/mesos-go/mesosproto/registry.proto diff --git a/Godeps/_workspace/src/github.com/mesos/mesos-go/mesosproto/scheduler.pb.go b/vendor/github.com/mesos/mesos-go/mesosproto/scheduler.pb.go similarity index 100% rename from Godeps/_workspace/src/github.com/mesos/mesos-go/mesosproto/scheduler.pb.go rename to vendor/github.com/mesos/mesos-go/mesosproto/scheduler.pb.go diff --git a/Godeps/_workspace/src/github.com/mesos/mesos-go/mesosproto/scheduler.proto b/vendor/github.com/mesos/mesos-go/mesosproto/scheduler.proto similarity index 100% rename from Godeps/_workspace/src/github.com/mesos/mesos-go/mesosproto/scheduler.proto rename to vendor/github.com/mesos/mesos-go/mesosproto/scheduler.proto diff --git a/Godeps/_workspace/src/github.com/mesos/mesos-go/mesosproto/state.pb.go b/vendor/github.com/mesos/mesos-go/mesosproto/state.pb.go similarity index 100% rename from Godeps/_workspace/src/github.com/mesos/mesos-go/mesosproto/state.pb.go rename to vendor/github.com/mesos/mesos-go/mesosproto/state.pb.go diff --git a/Godeps/_workspace/src/github.com/mesos/mesos-go/mesosproto/state.proto b/vendor/github.com/mesos/mesos-go/mesosproto/state.proto similarity index 100% rename from Godeps/_workspace/src/github.com/mesos/mesos-go/mesosproto/state.proto rename to vendor/github.com/mesos/mesos-go/mesosproto/state.proto diff --git a/Godeps/_workspace/src/github.com/mesos/mesos-go/mesosutil/constants.go b/vendor/github.com/mesos/mesos-go/mesosutil/constants.go similarity index 100% rename from Godeps/_workspace/src/github.com/mesos/mesos-go/mesosutil/constants.go rename to vendor/github.com/mesos/mesos-go/mesosutil/constants.go diff --git a/Godeps/_workspace/src/github.com/mesos/mesos-go/mesosutil/mesosprotoutil.go b/vendor/github.com/mesos/mesos-go/mesosutil/mesosprotoutil.go similarity index 100% rename from Godeps/_workspace/src/github.com/mesos/mesos-go/mesosutil/mesosprotoutil.go rename to vendor/github.com/mesos/mesos-go/mesosutil/mesosprotoutil.go diff --git a/Godeps/_workspace/src/github.com/mesos/mesos-go/mesosutil/node.go b/vendor/github.com/mesos/mesos-go/mesosutil/node.go similarity index 100% rename from Godeps/_workspace/src/github.com/mesos/mesos-go/mesosutil/node.go rename to vendor/github.com/mesos/mesos-go/mesosutil/node.go diff --git a/Godeps/_workspace/src/github.com/mesos/mesos-go/mesosutil/process/process.go b/vendor/github.com/mesos/mesos-go/mesosutil/process/process.go similarity index 100% rename from Godeps/_workspace/src/github.com/mesos/mesos-go/mesosutil/process/process.go rename to vendor/github.com/mesos/mesos-go/mesosutil/process/process.go diff --git a/Godeps/_workspace/src/github.com/mesos/mesos-go/messenger/README.md b/vendor/github.com/mesos/mesos-go/messenger/README.md similarity index 100% rename from Godeps/_workspace/src/github.com/mesos/mesos-go/messenger/README.md rename to vendor/github.com/mesos/mesos-go/messenger/README.md diff --git a/Godeps/_workspace/src/github.com/mesos/mesos-go/messenger/decoder.go b/vendor/github.com/mesos/mesos-go/messenger/decoder.go similarity index 100% rename from Godeps/_workspace/src/github.com/mesos/mesos-go/messenger/decoder.go rename to vendor/github.com/mesos/mesos-go/messenger/decoder.go diff --git a/Godeps/_workspace/src/github.com/mesos/mesos-go/messenger/doc.go b/vendor/github.com/mesos/mesos-go/messenger/doc.go similarity index 100% rename from Godeps/_workspace/src/github.com/mesos/mesos-go/messenger/doc.go rename to vendor/github.com/mesos/mesos-go/messenger/doc.go diff --git a/Godeps/_workspace/src/github.com/mesos/mesos-go/messenger/http_transporter.go b/vendor/github.com/mesos/mesos-go/messenger/http_transporter.go similarity index 100% rename from Godeps/_workspace/src/github.com/mesos/mesos-go/messenger/http_transporter.go rename to vendor/github.com/mesos/mesos-go/messenger/http_transporter.go diff --git a/Godeps/_workspace/src/github.com/mesos/mesos-go/messenger/message.go b/vendor/github.com/mesos/mesos-go/messenger/message.go similarity index 100% rename from Godeps/_workspace/src/github.com/mesos/mesos-go/messenger/message.go rename to vendor/github.com/mesos/mesos-go/messenger/message.go diff --git a/Godeps/_workspace/src/github.com/mesos/mesos-go/messenger/messenger.go b/vendor/github.com/mesos/mesos-go/messenger/messenger.go similarity index 100% rename from Godeps/_workspace/src/github.com/mesos/mesos-go/messenger/messenger.go rename to vendor/github.com/mesos/mesos-go/messenger/messenger.go diff --git a/Godeps/_workspace/src/github.com/mesos/mesos-go/messenger/mocked_messenger.go b/vendor/github.com/mesos/mesos-go/messenger/mocked_messenger.go similarity index 100% rename from Godeps/_workspace/src/github.com/mesos/mesos-go/messenger/mocked_messenger.go rename to vendor/github.com/mesos/mesos-go/messenger/mocked_messenger.go diff --git a/Godeps/_workspace/src/github.com/mesos/mesos-go/messenger/testmessage/Makefile b/vendor/github.com/mesos/mesos-go/messenger/testmessage/Makefile similarity index 100% rename from Godeps/_workspace/src/github.com/mesos/mesos-go/messenger/testmessage/Makefile rename to vendor/github.com/mesos/mesos-go/messenger/testmessage/Makefile diff --git a/Godeps/_workspace/src/github.com/mesos/mesos-go/messenger/testmessage/generator.go b/vendor/github.com/mesos/mesos-go/messenger/testmessage/generator.go similarity index 100% rename from Godeps/_workspace/src/github.com/mesos/mesos-go/messenger/testmessage/generator.go rename to vendor/github.com/mesos/mesos-go/messenger/testmessage/generator.go diff --git a/Godeps/_workspace/src/github.com/mesos/mesos-go/messenger/testmessage/testmessage.pb.go b/vendor/github.com/mesos/mesos-go/messenger/testmessage/testmessage.pb.go similarity index 100% rename from Godeps/_workspace/src/github.com/mesos/mesos-go/messenger/testmessage/testmessage.pb.go rename to vendor/github.com/mesos/mesos-go/messenger/testmessage/testmessage.pb.go diff --git a/Godeps/_workspace/src/github.com/mesos/mesos-go/messenger/testmessage/testmessage.proto b/vendor/github.com/mesos/mesos-go/messenger/testmessage/testmessage.proto similarity index 100% rename from Godeps/_workspace/src/github.com/mesos/mesos-go/messenger/testmessage/testmessage.proto rename to vendor/github.com/mesos/mesos-go/messenger/testmessage/testmessage.proto diff --git a/Godeps/_workspace/src/github.com/mesos/mesos-go/messenger/transporter.go b/vendor/github.com/mesos/mesos-go/messenger/transporter.go similarity index 100% rename from Godeps/_workspace/src/github.com/mesos/mesos-go/messenger/transporter.go rename to vendor/github.com/mesos/mesos-go/messenger/transporter.go diff --git a/Godeps/_workspace/src/github.com/mesos/mesos-go/scheduler/doc.go b/vendor/github.com/mesos/mesos-go/scheduler/doc.go similarity index 100% rename from Godeps/_workspace/src/github.com/mesos/mesos-go/scheduler/doc.go rename to vendor/github.com/mesos/mesos-go/scheduler/doc.go diff --git a/Godeps/_workspace/src/github.com/mesos/mesos-go/scheduler/handler.go b/vendor/github.com/mesos/mesos-go/scheduler/handler.go similarity index 100% rename from Godeps/_workspace/src/github.com/mesos/mesos-go/scheduler/handler.go rename to vendor/github.com/mesos/mesos-go/scheduler/handler.go diff --git a/Godeps/_workspace/src/github.com/mesos/mesos-go/scheduler/mock_scheduler.go b/vendor/github.com/mesos/mesos-go/scheduler/mock_scheduler.go similarity index 100% rename from Godeps/_workspace/src/github.com/mesos/mesos-go/scheduler/mock_scheduler.go rename to vendor/github.com/mesos/mesos-go/scheduler/mock_scheduler.go diff --git a/Godeps/_workspace/src/github.com/mesos/mesos-go/scheduler/plugins.go b/vendor/github.com/mesos/mesos-go/scheduler/plugins.go similarity index 100% rename from Godeps/_workspace/src/github.com/mesos/mesos-go/scheduler/plugins.go rename to vendor/github.com/mesos/mesos-go/scheduler/plugins.go diff --git a/Godeps/_workspace/src/github.com/mesos/mesos-go/scheduler/schedcache.go b/vendor/github.com/mesos/mesos-go/scheduler/schedcache.go similarity index 100% rename from Godeps/_workspace/src/github.com/mesos/mesos-go/scheduler/schedcache.go rename to vendor/github.com/mesos/mesos-go/scheduler/schedcache.go diff --git a/Godeps/_workspace/src/github.com/mesos/mesos-go/scheduler/schedtype.go b/vendor/github.com/mesos/mesos-go/scheduler/schedtype.go similarity index 100% rename from Godeps/_workspace/src/github.com/mesos/mesos-go/scheduler/schedtype.go rename to vendor/github.com/mesos/mesos-go/scheduler/schedtype.go diff --git a/Godeps/_workspace/src/github.com/mesos/mesos-go/scheduler/scheduler.go b/vendor/github.com/mesos/mesos-go/scheduler/scheduler.go similarity index 100% rename from Godeps/_workspace/src/github.com/mesos/mesos-go/scheduler/scheduler.go rename to vendor/github.com/mesos/mesos-go/scheduler/scheduler.go diff --git a/Godeps/_workspace/src/github.com/mesos/mesos-go/upid/doc.go b/vendor/github.com/mesos/mesos-go/upid/doc.go similarity index 100% rename from Godeps/_workspace/src/github.com/mesos/mesos-go/upid/doc.go rename to vendor/github.com/mesos/mesos-go/upid/doc.go diff --git a/Godeps/_workspace/src/github.com/mesos/mesos-go/upid/upid.go b/vendor/github.com/mesos/mesos-go/upid/upid.go similarity index 100% rename from Godeps/_workspace/src/github.com/mesos/mesos-go/upid/upid.go rename to vendor/github.com/mesos/mesos-go/upid/upid.go diff --git a/Godeps/_workspace/src/github.com/opencontainers/runc/LICENSE b/vendor/github.com/opencontainers/runc/LICENSE similarity index 100% rename from Godeps/_workspace/src/github.com/opencontainers/runc/LICENSE rename to vendor/github.com/opencontainers/runc/LICENSE diff --git a/Godeps/_workspace/src/github.com/opencontainers/runc/NOTICE b/vendor/github.com/opencontainers/runc/NOTICE similarity index 100% rename from Godeps/_workspace/src/github.com/opencontainers/runc/NOTICE rename to vendor/github.com/opencontainers/runc/NOTICE diff --git a/Godeps/_workspace/src/github.com/opencontainers/runc/libcontainer/user/MAINTAINERS b/vendor/github.com/opencontainers/runc/libcontainer/user/MAINTAINERS similarity index 100% rename from Godeps/_workspace/src/github.com/opencontainers/runc/libcontainer/user/MAINTAINERS rename to vendor/github.com/opencontainers/runc/libcontainer/user/MAINTAINERS diff --git a/Godeps/_workspace/src/github.com/opencontainers/runc/libcontainer/user/lookup.go b/vendor/github.com/opencontainers/runc/libcontainer/user/lookup.go similarity index 100% rename from Godeps/_workspace/src/github.com/opencontainers/runc/libcontainer/user/lookup.go rename to vendor/github.com/opencontainers/runc/libcontainer/user/lookup.go diff --git a/Godeps/_workspace/src/github.com/opencontainers/runc/libcontainer/user/lookup_unix.go b/vendor/github.com/opencontainers/runc/libcontainer/user/lookup_unix.go similarity index 100% rename from Godeps/_workspace/src/github.com/opencontainers/runc/libcontainer/user/lookup_unix.go rename to vendor/github.com/opencontainers/runc/libcontainer/user/lookup_unix.go diff --git a/Godeps/_workspace/src/github.com/opencontainers/runc/libcontainer/user/lookup_unsupported.go b/vendor/github.com/opencontainers/runc/libcontainer/user/lookup_unsupported.go similarity index 100% rename from Godeps/_workspace/src/github.com/opencontainers/runc/libcontainer/user/lookup_unsupported.go rename to vendor/github.com/opencontainers/runc/libcontainer/user/lookup_unsupported.go diff --git a/Godeps/_workspace/src/github.com/opencontainers/runc/libcontainer/user/user.go b/vendor/github.com/opencontainers/runc/libcontainer/user/user.go similarity index 100% rename from Godeps/_workspace/src/github.com/opencontainers/runc/libcontainer/user/user.go rename to vendor/github.com/opencontainers/runc/libcontainer/user/user.go diff --git a/Godeps/_workspace/src/github.com/pborman/uuid/CONTRIBUTORS b/vendor/github.com/pborman/uuid/CONTRIBUTORS similarity index 100% rename from Godeps/_workspace/src/github.com/pborman/uuid/CONTRIBUTORS rename to vendor/github.com/pborman/uuid/CONTRIBUTORS diff --git a/Godeps/_workspace/src/github.com/pborman/uuid/LICENSE b/vendor/github.com/pborman/uuid/LICENSE similarity index 100% rename from Godeps/_workspace/src/github.com/pborman/uuid/LICENSE rename to vendor/github.com/pborman/uuid/LICENSE diff --git a/Godeps/_workspace/src/github.com/pborman/uuid/dce.go b/vendor/github.com/pborman/uuid/dce.go similarity index 100% rename from Godeps/_workspace/src/github.com/pborman/uuid/dce.go rename to vendor/github.com/pborman/uuid/dce.go diff --git a/Godeps/_workspace/src/github.com/pborman/uuid/doc.go b/vendor/github.com/pborman/uuid/doc.go similarity index 100% rename from Godeps/_workspace/src/github.com/pborman/uuid/doc.go rename to vendor/github.com/pborman/uuid/doc.go diff --git a/Godeps/_workspace/src/github.com/pborman/uuid/hash.go b/vendor/github.com/pborman/uuid/hash.go similarity index 100% rename from Godeps/_workspace/src/github.com/pborman/uuid/hash.go rename to vendor/github.com/pborman/uuid/hash.go diff --git a/Godeps/_workspace/src/github.com/pborman/uuid/json.go b/vendor/github.com/pborman/uuid/json.go similarity index 100% rename from Godeps/_workspace/src/github.com/pborman/uuid/json.go rename to vendor/github.com/pborman/uuid/json.go diff --git a/Godeps/_workspace/src/github.com/pborman/uuid/node.go b/vendor/github.com/pborman/uuid/node.go similarity index 100% rename from Godeps/_workspace/src/github.com/pborman/uuid/node.go rename to vendor/github.com/pborman/uuid/node.go diff --git a/Godeps/_workspace/src/github.com/pborman/uuid/sql.go b/vendor/github.com/pborman/uuid/sql.go similarity index 100% rename from Godeps/_workspace/src/github.com/pborman/uuid/sql.go rename to vendor/github.com/pborman/uuid/sql.go diff --git a/Godeps/_workspace/src/github.com/pborman/uuid/time.go b/vendor/github.com/pborman/uuid/time.go similarity index 100% rename from Godeps/_workspace/src/github.com/pborman/uuid/time.go rename to vendor/github.com/pborman/uuid/time.go diff --git a/Godeps/_workspace/src/github.com/pborman/uuid/util.go b/vendor/github.com/pborman/uuid/util.go similarity index 100% rename from Godeps/_workspace/src/github.com/pborman/uuid/util.go rename to vendor/github.com/pborman/uuid/util.go diff --git a/Godeps/_workspace/src/github.com/pborman/uuid/uuid.go b/vendor/github.com/pborman/uuid/uuid.go similarity index 100% rename from Godeps/_workspace/src/github.com/pborman/uuid/uuid.go rename to vendor/github.com/pborman/uuid/uuid.go diff --git a/Godeps/_workspace/src/github.com/pborman/uuid/version1.go b/vendor/github.com/pborman/uuid/version1.go similarity index 100% rename from Godeps/_workspace/src/github.com/pborman/uuid/version1.go rename to vendor/github.com/pborman/uuid/version1.go diff --git a/Godeps/_workspace/src/github.com/pborman/uuid/version4.go b/vendor/github.com/pborman/uuid/version4.go similarity index 100% rename from Godeps/_workspace/src/github.com/pborman/uuid/version4.go rename to vendor/github.com/pborman/uuid/version4.go diff --git a/Godeps/_workspace/src/github.com/pmezard/go-difflib/LICENSE b/vendor/github.com/pmezard/go-difflib/LICENSE similarity index 100% rename from Godeps/_workspace/src/github.com/pmezard/go-difflib/LICENSE rename to vendor/github.com/pmezard/go-difflib/LICENSE diff --git a/Godeps/_workspace/src/github.com/pmezard/go-difflib/difflib/difflib.go b/vendor/github.com/pmezard/go-difflib/difflib/difflib.go similarity index 100% rename from Godeps/_workspace/src/github.com/pmezard/go-difflib/difflib/difflib.go rename to vendor/github.com/pmezard/go-difflib/difflib/difflib.go diff --git a/Godeps/_workspace/src/github.com/samalba/dockerclient/.gitignore b/vendor/github.com/samalba/dockerclient/.gitignore similarity index 100% rename from Godeps/_workspace/src/github.com/samalba/dockerclient/.gitignore rename to vendor/github.com/samalba/dockerclient/.gitignore diff --git a/Godeps/_workspace/src/github.com/samalba/dockerclient/LICENSE b/vendor/github.com/samalba/dockerclient/LICENSE similarity index 100% rename from Godeps/_workspace/src/github.com/samalba/dockerclient/LICENSE rename to vendor/github.com/samalba/dockerclient/LICENSE diff --git a/Godeps/_workspace/src/github.com/samalba/dockerclient/README.md b/vendor/github.com/samalba/dockerclient/README.md similarity index 100% rename from Godeps/_workspace/src/github.com/samalba/dockerclient/README.md rename to vendor/github.com/samalba/dockerclient/README.md diff --git a/Godeps/_workspace/src/github.com/samalba/dockerclient/auth.go b/vendor/github.com/samalba/dockerclient/auth.go similarity index 100% rename from Godeps/_workspace/src/github.com/samalba/dockerclient/auth.go rename to vendor/github.com/samalba/dockerclient/auth.go diff --git a/Godeps/_workspace/src/github.com/samalba/dockerclient/dockerclient.go b/vendor/github.com/samalba/dockerclient/dockerclient.go similarity index 100% rename from Godeps/_workspace/src/github.com/samalba/dockerclient/dockerclient.go rename to vendor/github.com/samalba/dockerclient/dockerclient.go diff --git a/Godeps/_workspace/src/github.com/samalba/dockerclient/example_responses.go b/vendor/github.com/samalba/dockerclient/example_responses.go similarity index 100% rename from Godeps/_workspace/src/github.com/samalba/dockerclient/example_responses.go rename to vendor/github.com/samalba/dockerclient/example_responses.go diff --git a/Godeps/_workspace/src/github.com/samalba/dockerclient/interface.go b/vendor/github.com/samalba/dockerclient/interface.go similarity index 100% rename from Godeps/_workspace/src/github.com/samalba/dockerclient/interface.go rename to vendor/github.com/samalba/dockerclient/interface.go diff --git a/Godeps/_workspace/src/github.com/samalba/dockerclient/mockclient/mock.go b/vendor/github.com/samalba/dockerclient/mockclient/mock.go similarity index 100% rename from Godeps/_workspace/src/github.com/samalba/dockerclient/mockclient/mock.go rename to vendor/github.com/samalba/dockerclient/mockclient/mock.go diff --git a/Godeps/_workspace/src/github.com/samalba/dockerclient/nopclient/nop.go b/vendor/github.com/samalba/dockerclient/nopclient/nop.go similarity index 100% rename from Godeps/_workspace/src/github.com/samalba/dockerclient/nopclient/nop.go rename to vendor/github.com/samalba/dockerclient/nopclient/nop.go diff --git a/Godeps/_workspace/src/github.com/samalba/dockerclient/tls.go b/vendor/github.com/samalba/dockerclient/tls.go similarity index 100% rename from Godeps/_workspace/src/github.com/samalba/dockerclient/tls.go rename to vendor/github.com/samalba/dockerclient/tls.go diff --git a/Godeps/_workspace/src/github.com/samalba/dockerclient/types.go b/vendor/github.com/samalba/dockerclient/types.go similarity index 100% rename from Godeps/_workspace/src/github.com/samalba/dockerclient/types.go rename to vendor/github.com/samalba/dockerclient/types.go diff --git a/Godeps/_workspace/src/github.com/samalba/dockerclient/utils.go b/vendor/github.com/samalba/dockerclient/utils.go similarity index 100% rename from Godeps/_workspace/src/github.com/samalba/dockerclient/utils.go rename to vendor/github.com/samalba/dockerclient/utils.go diff --git a/Godeps/_workspace/src/github.com/samuel/go-zookeeper/LICENSE b/vendor/github.com/samuel/go-zookeeper/LICENSE similarity index 100% rename from Godeps/_workspace/src/github.com/samuel/go-zookeeper/LICENSE rename to vendor/github.com/samuel/go-zookeeper/LICENSE diff --git a/Godeps/_workspace/src/github.com/samuel/go-zookeeper/zk/conn.go b/vendor/github.com/samuel/go-zookeeper/zk/conn.go similarity index 100% rename from Godeps/_workspace/src/github.com/samuel/go-zookeeper/zk/conn.go rename to vendor/github.com/samuel/go-zookeeper/zk/conn.go diff --git a/Godeps/_workspace/src/github.com/samuel/go-zookeeper/zk/constants.go b/vendor/github.com/samuel/go-zookeeper/zk/constants.go similarity index 100% rename from Godeps/_workspace/src/github.com/samuel/go-zookeeper/zk/constants.go rename to vendor/github.com/samuel/go-zookeeper/zk/constants.go diff --git a/Godeps/_workspace/src/github.com/samuel/go-zookeeper/zk/dnshostprovider.go b/vendor/github.com/samuel/go-zookeeper/zk/dnshostprovider.go similarity index 100% rename from Godeps/_workspace/src/github.com/samuel/go-zookeeper/zk/dnshostprovider.go rename to vendor/github.com/samuel/go-zookeeper/zk/dnshostprovider.go diff --git a/Godeps/_workspace/src/github.com/samuel/go-zookeeper/zk/flw.go b/vendor/github.com/samuel/go-zookeeper/zk/flw.go similarity index 100% rename from Godeps/_workspace/src/github.com/samuel/go-zookeeper/zk/flw.go rename to vendor/github.com/samuel/go-zookeeper/zk/flw.go diff --git a/Godeps/_workspace/src/github.com/samuel/go-zookeeper/zk/lock.go b/vendor/github.com/samuel/go-zookeeper/zk/lock.go similarity index 100% rename from Godeps/_workspace/src/github.com/samuel/go-zookeeper/zk/lock.go rename to vendor/github.com/samuel/go-zookeeper/zk/lock.go diff --git a/Godeps/_workspace/src/github.com/samuel/go-zookeeper/zk/server_help.go b/vendor/github.com/samuel/go-zookeeper/zk/server_help.go similarity index 100% rename from Godeps/_workspace/src/github.com/samuel/go-zookeeper/zk/server_help.go rename to vendor/github.com/samuel/go-zookeeper/zk/server_help.go diff --git a/Godeps/_workspace/src/github.com/samuel/go-zookeeper/zk/server_java.go b/vendor/github.com/samuel/go-zookeeper/zk/server_java.go similarity index 100% rename from Godeps/_workspace/src/github.com/samuel/go-zookeeper/zk/server_java.go rename to vendor/github.com/samuel/go-zookeeper/zk/server_java.go diff --git a/Godeps/_workspace/src/github.com/samuel/go-zookeeper/zk/structs.go b/vendor/github.com/samuel/go-zookeeper/zk/structs.go similarity index 100% rename from Godeps/_workspace/src/github.com/samuel/go-zookeeper/zk/structs.go rename to vendor/github.com/samuel/go-zookeeper/zk/structs.go diff --git a/Godeps/_workspace/src/github.com/samuel/go-zookeeper/zk/tracer.go b/vendor/github.com/samuel/go-zookeeper/zk/tracer.go similarity index 100% rename from Godeps/_workspace/src/github.com/samuel/go-zookeeper/zk/tracer.go rename to vendor/github.com/samuel/go-zookeeper/zk/tracer.go diff --git a/Godeps/_workspace/src/github.com/samuel/go-zookeeper/zk/util.go b/vendor/github.com/samuel/go-zookeeper/zk/util.go similarity index 100% rename from Godeps/_workspace/src/github.com/samuel/go-zookeeper/zk/util.go rename to vendor/github.com/samuel/go-zookeeper/zk/util.go diff --git a/Godeps/_workspace/src/github.com/skarademir/naturalsort/LICENSE.md b/vendor/github.com/skarademir/naturalsort/LICENSE.md similarity index 100% rename from Godeps/_workspace/src/github.com/skarademir/naturalsort/LICENSE.md rename to vendor/github.com/skarademir/naturalsort/LICENSE.md diff --git a/Godeps/_workspace/src/github.com/skarademir/naturalsort/README.md b/vendor/github.com/skarademir/naturalsort/README.md similarity index 100% rename from Godeps/_workspace/src/github.com/skarademir/naturalsort/README.md rename to vendor/github.com/skarademir/naturalsort/README.md diff --git a/Godeps/_workspace/src/github.com/skarademir/naturalsort/naturalsort.go b/vendor/github.com/skarademir/naturalsort/naturalsort.go similarity index 100% rename from Godeps/_workspace/src/github.com/skarademir/naturalsort/naturalsort.go rename to vendor/github.com/skarademir/naturalsort/naturalsort.go diff --git a/Godeps/_workspace/src/github.com/stretchr/objx/.gitignore b/vendor/github.com/stretchr/objx/.gitignore similarity index 100% rename from Godeps/_workspace/src/github.com/stretchr/objx/.gitignore rename to vendor/github.com/stretchr/objx/.gitignore diff --git a/Godeps/_workspace/src/github.com/stretchr/objx/LICENSE.md b/vendor/github.com/stretchr/objx/LICENSE.md similarity index 100% rename from Godeps/_workspace/src/github.com/stretchr/objx/LICENSE.md rename to vendor/github.com/stretchr/objx/LICENSE.md diff --git a/Godeps/_workspace/src/github.com/stretchr/objx/README.md b/vendor/github.com/stretchr/objx/README.md similarity index 100% rename from Godeps/_workspace/src/github.com/stretchr/objx/README.md rename to vendor/github.com/stretchr/objx/README.md diff --git a/Godeps/_workspace/src/github.com/stretchr/objx/accessors.go b/vendor/github.com/stretchr/objx/accessors.go similarity index 100% rename from Godeps/_workspace/src/github.com/stretchr/objx/accessors.go rename to vendor/github.com/stretchr/objx/accessors.go diff --git a/Godeps/_workspace/src/github.com/stretchr/objx/codegen/array-access.txt b/vendor/github.com/stretchr/objx/codegen/array-access.txt similarity index 100% rename from Godeps/_workspace/src/github.com/stretchr/objx/codegen/array-access.txt rename to vendor/github.com/stretchr/objx/codegen/array-access.txt diff --git a/Godeps/_workspace/src/github.com/stretchr/objx/codegen/index.html b/vendor/github.com/stretchr/objx/codegen/index.html similarity index 100% rename from Godeps/_workspace/src/github.com/stretchr/objx/codegen/index.html rename to vendor/github.com/stretchr/objx/codegen/index.html diff --git a/Godeps/_workspace/src/github.com/stretchr/objx/codegen/template.txt b/vendor/github.com/stretchr/objx/codegen/template.txt similarity index 100% rename from Godeps/_workspace/src/github.com/stretchr/objx/codegen/template.txt rename to vendor/github.com/stretchr/objx/codegen/template.txt diff --git a/Godeps/_workspace/src/github.com/stretchr/objx/codegen/types_list.txt b/vendor/github.com/stretchr/objx/codegen/types_list.txt similarity index 100% rename from Godeps/_workspace/src/github.com/stretchr/objx/codegen/types_list.txt rename to vendor/github.com/stretchr/objx/codegen/types_list.txt diff --git a/Godeps/_workspace/src/github.com/stretchr/objx/constants.go b/vendor/github.com/stretchr/objx/constants.go similarity index 100% rename from Godeps/_workspace/src/github.com/stretchr/objx/constants.go rename to vendor/github.com/stretchr/objx/constants.go diff --git a/Godeps/_workspace/src/github.com/stretchr/objx/conversions.go b/vendor/github.com/stretchr/objx/conversions.go similarity index 100% rename from Godeps/_workspace/src/github.com/stretchr/objx/conversions.go rename to vendor/github.com/stretchr/objx/conversions.go diff --git a/Godeps/_workspace/src/github.com/stretchr/objx/doc.go b/vendor/github.com/stretchr/objx/doc.go similarity index 100% rename from Godeps/_workspace/src/github.com/stretchr/objx/doc.go rename to vendor/github.com/stretchr/objx/doc.go diff --git a/Godeps/_workspace/src/github.com/stretchr/objx/map.go b/vendor/github.com/stretchr/objx/map.go similarity index 100% rename from Godeps/_workspace/src/github.com/stretchr/objx/map.go rename to vendor/github.com/stretchr/objx/map.go diff --git a/Godeps/_workspace/src/github.com/stretchr/objx/mutations.go b/vendor/github.com/stretchr/objx/mutations.go similarity index 100% rename from Godeps/_workspace/src/github.com/stretchr/objx/mutations.go rename to vendor/github.com/stretchr/objx/mutations.go diff --git a/Godeps/_workspace/src/github.com/stretchr/objx/security.go b/vendor/github.com/stretchr/objx/security.go similarity index 100% rename from Godeps/_workspace/src/github.com/stretchr/objx/security.go rename to vendor/github.com/stretchr/objx/security.go diff --git a/Godeps/_workspace/src/github.com/stretchr/objx/tests.go b/vendor/github.com/stretchr/objx/tests.go similarity index 100% rename from Godeps/_workspace/src/github.com/stretchr/objx/tests.go rename to vendor/github.com/stretchr/objx/tests.go diff --git a/Godeps/_workspace/src/github.com/stretchr/objx/type_specific_codegen.go b/vendor/github.com/stretchr/objx/type_specific_codegen.go similarity index 100% rename from Godeps/_workspace/src/github.com/stretchr/objx/type_specific_codegen.go rename to vendor/github.com/stretchr/objx/type_specific_codegen.go diff --git a/Godeps/_workspace/src/github.com/stretchr/objx/value.go b/vendor/github.com/stretchr/objx/value.go similarity index 100% rename from Godeps/_workspace/src/github.com/stretchr/objx/value.go rename to vendor/github.com/stretchr/objx/value.go diff --git a/Godeps/_workspace/src/github.com/stretchr/testify/LICENSE b/vendor/github.com/stretchr/testify/LICENSE similarity index 100% rename from Godeps/_workspace/src/github.com/stretchr/testify/LICENSE rename to vendor/github.com/stretchr/testify/LICENSE diff --git a/Godeps/_workspace/src/github.com/stretchr/testify/assert/assertion_forward.go b/vendor/github.com/stretchr/testify/assert/assertion_forward.go similarity index 100% rename from Godeps/_workspace/src/github.com/stretchr/testify/assert/assertion_forward.go rename to vendor/github.com/stretchr/testify/assert/assertion_forward.go diff --git a/Godeps/_workspace/src/github.com/stretchr/testify/assert/assertion_forward.go.tmpl b/vendor/github.com/stretchr/testify/assert/assertion_forward.go.tmpl similarity index 100% rename from Godeps/_workspace/src/github.com/stretchr/testify/assert/assertion_forward.go.tmpl rename to vendor/github.com/stretchr/testify/assert/assertion_forward.go.tmpl diff --git a/Godeps/_workspace/src/github.com/stretchr/testify/assert/assertions.go b/vendor/github.com/stretchr/testify/assert/assertions.go similarity index 100% rename from Godeps/_workspace/src/github.com/stretchr/testify/assert/assertions.go rename to vendor/github.com/stretchr/testify/assert/assertions.go diff --git a/Godeps/_workspace/src/github.com/stretchr/testify/assert/doc.go b/vendor/github.com/stretchr/testify/assert/doc.go similarity index 100% rename from Godeps/_workspace/src/github.com/stretchr/testify/assert/doc.go rename to vendor/github.com/stretchr/testify/assert/doc.go diff --git a/Godeps/_workspace/src/github.com/stretchr/testify/assert/errors.go b/vendor/github.com/stretchr/testify/assert/errors.go similarity index 100% rename from Godeps/_workspace/src/github.com/stretchr/testify/assert/errors.go rename to vendor/github.com/stretchr/testify/assert/errors.go diff --git a/Godeps/_workspace/src/github.com/stretchr/testify/assert/forward_assertions.go b/vendor/github.com/stretchr/testify/assert/forward_assertions.go similarity index 100% rename from Godeps/_workspace/src/github.com/stretchr/testify/assert/forward_assertions.go rename to vendor/github.com/stretchr/testify/assert/forward_assertions.go diff --git a/Godeps/_workspace/src/github.com/stretchr/testify/assert/http_assertions.go b/vendor/github.com/stretchr/testify/assert/http_assertions.go similarity index 100% rename from Godeps/_workspace/src/github.com/stretchr/testify/assert/http_assertions.go rename to vendor/github.com/stretchr/testify/assert/http_assertions.go diff --git a/Godeps/_workspace/src/github.com/stretchr/testify/mock/doc.go b/vendor/github.com/stretchr/testify/mock/doc.go similarity index 100% rename from Godeps/_workspace/src/github.com/stretchr/testify/mock/doc.go rename to vendor/github.com/stretchr/testify/mock/doc.go diff --git a/Godeps/_workspace/src/github.com/stretchr/testify/mock/mock.go b/vendor/github.com/stretchr/testify/mock/mock.go similarity index 100% rename from Godeps/_workspace/src/github.com/stretchr/testify/mock/mock.go rename to vendor/github.com/stretchr/testify/mock/mock.go diff --git a/Godeps/_workspace/src/github.com/stretchr/testify/vendor/github.com/davecgh/go-spew/LICENSE b/vendor/github.com/stretchr/testify/vendor/github.com/davecgh/go-spew/LICENSE similarity index 100% rename from Godeps/_workspace/src/github.com/stretchr/testify/vendor/github.com/davecgh/go-spew/LICENSE rename to vendor/github.com/stretchr/testify/vendor/github.com/davecgh/go-spew/LICENSE diff --git a/Godeps/_workspace/src/github.com/stretchr/testify/vendor/github.com/pmezard/go-difflib/LICENSE b/vendor/github.com/stretchr/testify/vendor/github.com/pmezard/go-difflib/LICENSE similarity index 100% rename from Godeps/_workspace/src/github.com/stretchr/testify/vendor/github.com/pmezard/go-difflib/LICENSE rename to vendor/github.com/stretchr/testify/vendor/github.com/pmezard/go-difflib/LICENSE diff --git a/Godeps/_workspace/src/github.com/stretchr/testify/vendor/github.com/stretchr/objx/LICENSE.md b/vendor/github.com/stretchr/testify/vendor/github.com/stretchr/objx/LICENSE.md similarity index 100% rename from Godeps/_workspace/src/github.com/stretchr/testify/vendor/github.com/stretchr/objx/LICENSE.md rename to vendor/github.com/stretchr/testify/vendor/github.com/stretchr/objx/LICENSE.md diff --git a/Godeps/_workspace/src/github.com/ugorji/go/LICENSE b/vendor/github.com/ugorji/go/LICENSE similarity index 100% rename from Godeps/_workspace/src/github.com/ugorji/go/LICENSE rename to vendor/github.com/ugorji/go/LICENSE diff --git a/Godeps/_workspace/src/github.com/ugorji/go/codec/0doc.go b/vendor/github.com/ugorji/go/codec/0doc.go similarity index 100% rename from Godeps/_workspace/src/github.com/ugorji/go/codec/0doc.go rename to vendor/github.com/ugorji/go/codec/0doc.go diff --git a/Godeps/_workspace/src/github.com/ugorji/go/codec/README.md b/vendor/github.com/ugorji/go/codec/README.md similarity index 100% rename from Godeps/_workspace/src/github.com/ugorji/go/codec/README.md rename to vendor/github.com/ugorji/go/codec/README.md diff --git a/Godeps/_workspace/src/github.com/ugorji/go/codec/binc.go b/vendor/github.com/ugorji/go/codec/binc.go similarity index 100% rename from Godeps/_workspace/src/github.com/ugorji/go/codec/binc.go rename to vendor/github.com/ugorji/go/codec/binc.go diff --git a/Godeps/_workspace/src/github.com/ugorji/go/codec/cbor.go b/vendor/github.com/ugorji/go/codec/cbor.go similarity index 100% rename from Godeps/_workspace/src/github.com/ugorji/go/codec/cbor.go rename to vendor/github.com/ugorji/go/codec/cbor.go diff --git a/Godeps/_workspace/src/github.com/ugorji/go/codec/codecgen/README.md b/vendor/github.com/ugorji/go/codec/codecgen/README.md similarity index 100% rename from Godeps/_workspace/src/github.com/ugorji/go/codec/codecgen/README.md rename to vendor/github.com/ugorji/go/codec/codecgen/README.md diff --git a/Godeps/_workspace/src/github.com/ugorji/go/codec/codecgen/gen.go b/vendor/github.com/ugorji/go/codec/codecgen/gen.go similarity index 100% rename from Godeps/_workspace/src/github.com/ugorji/go/codec/codecgen/gen.go rename to vendor/github.com/ugorji/go/codec/codecgen/gen.go diff --git a/Godeps/_workspace/src/github.com/ugorji/go/codec/codecgen/z.go b/vendor/github.com/ugorji/go/codec/codecgen/z.go similarity index 100% rename from Godeps/_workspace/src/github.com/ugorji/go/codec/codecgen/z.go rename to vendor/github.com/ugorji/go/codec/codecgen/z.go diff --git a/Godeps/_workspace/src/github.com/ugorji/go/codec/decode.go b/vendor/github.com/ugorji/go/codec/decode.go similarity index 100% rename from Godeps/_workspace/src/github.com/ugorji/go/codec/decode.go rename to vendor/github.com/ugorji/go/codec/decode.go diff --git a/Godeps/_workspace/src/github.com/ugorji/go/codec/encode.go b/vendor/github.com/ugorji/go/codec/encode.go similarity index 100% rename from Godeps/_workspace/src/github.com/ugorji/go/codec/encode.go rename to vendor/github.com/ugorji/go/codec/encode.go diff --git a/Godeps/_workspace/src/github.com/ugorji/go/codec/fast-path.generated.go b/vendor/github.com/ugorji/go/codec/fast-path.generated.go similarity index 100% rename from Godeps/_workspace/src/github.com/ugorji/go/codec/fast-path.generated.go rename to vendor/github.com/ugorji/go/codec/fast-path.generated.go diff --git a/Godeps/_workspace/src/github.com/ugorji/go/codec/fast-path.go.tmpl b/vendor/github.com/ugorji/go/codec/fast-path.go.tmpl similarity index 100% rename from Godeps/_workspace/src/github.com/ugorji/go/codec/fast-path.go.tmpl rename to vendor/github.com/ugorji/go/codec/fast-path.go.tmpl diff --git a/Godeps/_workspace/src/github.com/ugorji/go/codec/fast-path.not.go b/vendor/github.com/ugorji/go/codec/fast-path.not.go similarity index 100% rename from Godeps/_workspace/src/github.com/ugorji/go/codec/fast-path.not.go rename to vendor/github.com/ugorji/go/codec/fast-path.not.go diff --git a/Godeps/_workspace/src/github.com/ugorji/go/codec/gen-dec-array.go.tmpl b/vendor/github.com/ugorji/go/codec/gen-dec-array.go.tmpl similarity index 100% rename from Godeps/_workspace/src/github.com/ugorji/go/codec/gen-dec-array.go.tmpl rename to vendor/github.com/ugorji/go/codec/gen-dec-array.go.tmpl diff --git a/Godeps/_workspace/src/github.com/ugorji/go/codec/gen-dec-map.go.tmpl b/vendor/github.com/ugorji/go/codec/gen-dec-map.go.tmpl similarity index 100% rename from Godeps/_workspace/src/github.com/ugorji/go/codec/gen-dec-map.go.tmpl rename to vendor/github.com/ugorji/go/codec/gen-dec-map.go.tmpl diff --git a/Godeps/_workspace/src/github.com/ugorji/go/codec/gen-helper.generated.go b/vendor/github.com/ugorji/go/codec/gen-helper.generated.go similarity index 100% rename from Godeps/_workspace/src/github.com/ugorji/go/codec/gen-helper.generated.go rename to vendor/github.com/ugorji/go/codec/gen-helper.generated.go diff --git a/Godeps/_workspace/src/github.com/ugorji/go/codec/gen-helper.go.tmpl b/vendor/github.com/ugorji/go/codec/gen-helper.go.tmpl similarity index 100% rename from Godeps/_workspace/src/github.com/ugorji/go/codec/gen-helper.go.tmpl rename to vendor/github.com/ugorji/go/codec/gen-helper.go.tmpl diff --git a/Godeps/_workspace/src/github.com/ugorji/go/codec/gen.generated.go b/vendor/github.com/ugorji/go/codec/gen.generated.go similarity index 100% rename from Godeps/_workspace/src/github.com/ugorji/go/codec/gen.generated.go rename to vendor/github.com/ugorji/go/codec/gen.generated.go diff --git a/Godeps/_workspace/src/github.com/ugorji/go/codec/gen.go b/vendor/github.com/ugorji/go/codec/gen.go similarity index 100% rename from Godeps/_workspace/src/github.com/ugorji/go/codec/gen.go rename to vendor/github.com/ugorji/go/codec/gen.go diff --git a/Godeps/_workspace/src/github.com/ugorji/go/codec/helper.go b/vendor/github.com/ugorji/go/codec/helper.go similarity index 100% rename from Godeps/_workspace/src/github.com/ugorji/go/codec/helper.go rename to vendor/github.com/ugorji/go/codec/helper.go diff --git a/Godeps/_workspace/src/github.com/ugorji/go/codec/helper_internal.go b/vendor/github.com/ugorji/go/codec/helper_internal.go similarity index 100% rename from Godeps/_workspace/src/github.com/ugorji/go/codec/helper_internal.go rename to vendor/github.com/ugorji/go/codec/helper_internal.go diff --git a/Godeps/_workspace/src/github.com/ugorji/go/codec/helper_not_unsafe.go b/vendor/github.com/ugorji/go/codec/helper_not_unsafe.go similarity index 100% rename from Godeps/_workspace/src/github.com/ugorji/go/codec/helper_not_unsafe.go rename to vendor/github.com/ugorji/go/codec/helper_not_unsafe.go diff --git a/Godeps/_workspace/src/github.com/ugorji/go/codec/helper_unsafe.go b/vendor/github.com/ugorji/go/codec/helper_unsafe.go similarity index 100% rename from Godeps/_workspace/src/github.com/ugorji/go/codec/helper_unsafe.go rename to vendor/github.com/ugorji/go/codec/helper_unsafe.go diff --git a/Godeps/_workspace/src/github.com/ugorji/go/codec/json.go b/vendor/github.com/ugorji/go/codec/json.go similarity index 100% rename from Godeps/_workspace/src/github.com/ugorji/go/codec/json.go rename to vendor/github.com/ugorji/go/codec/json.go diff --git a/Godeps/_workspace/src/github.com/ugorji/go/codec/msgpack.go b/vendor/github.com/ugorji/go/codec/msgpack.go similarity index 100% rename from Godeps/_workspace/src/github.com/ugorji/go/codec/msgpack.go rename to vendor/github.com/ugorji/go/codec/msgpack.go diff --git a/Godeps/_workspace/src/github.com/ugorji/go/codec/noop.go b/vendor/github.com/ugorji/go/codec/noop.go similarity index 100% rename from Godeps/_workspace/src/github.com/ugorji/go/codec/noop.go rename to vendor/github.com/ugorji/go/codec/noop.go diff --git a/Godeps/_workspace/src/github.com/ugorji/go/codec/prebuild.go b/vendor/github.com/ugorji/go/codec/prebuild.go similarity index 100% rename from Godeps/_workspace/src/github.com/ugorji/go/codec/prebuild.go rename to vendor/github.com/ugorji/go/codec/prebuild.go diff --git a/Godeps/_workspace/src/github.com/ugorji/go/codec/prebuild.sh b/vendor/github.com/ugorji/go/codec/prebuild.sh similarity index 100% rename from Godeps/_workspace/src/github.com/ugorji/go/codec/prebuild.sh rename to vendor/github.com/ugorji/go/codec/prebuild.sh diff --git a/Godeps/_workspace/src/github.com/ugorji/go/codec/rpc.go b/vendor/github.com/ugorji/go/codec/rpc.go similarity index 100% rename from Godeps/_workspace/src/github.com/ugorji/go/codec/rpc.go rename to vendor/github.com/ugorji/go/codec/rpc.go diff --git a/Godeps/_workspace/src/github.com/ugorji/go/codec/simple.go b/vendor/github.com/ugorji/go/codec/simple.go similarity index 100% rename from Godeps/_workspace/src/github.com/ugorji/go/codec/simple.go rename to vendor/github.com/ugorji/go/codec/simple.go diff --git a/Godeps/_workspace/src/github.com/ugorji/go/codec/test-cbor-goldens.json b/vendor/github.com/ugorji/go/codec/test-cbor-goldens.json similarity index 100% rename from Godeps/_workspace/src/github.com/ugorji/go/codec/test-cbor-goldens.json rename to vendor/github.com/ugorji/go/codec/test-cbor-goldens.json diff --git a/Godeps/_workspace/src/github.com/ugorji/go/codec/test.py b/vendor/github.com/ugorji/go/codec/test.py similarity index 100% rename from Godeps/_workspace/src/github.com/ugorji/go/codec/test.py rename to vendor/github.com/ugorji/go/codec/test.py diff --git a/Godeps/_workspace/src/github.com/ugorji/go/codec/tests.sh b/vendor/github.com/ugorji/go/codec/tests.sh similarity index 100% rename from Godeps/_workspace/src/github.com/ugorji/go/codec/tests.sh rename to vendor/github.com/ugorji/go/codec/tests.sh diff --git a/Godeps/_workspace/src/github.com/ugorji/go/codec/time.go b/vendor/github.com/ugorji/go/codec/time.go similarity index 100% rename from Godeps/_workspace/src/github.com/ugorji/go/codec/time.go rename to vendor/github.com/ugorji/go/codec/time.go diff --git a/Godeps/_workspace/src/golang.org/x/net/LICENSE b/vendor/golang.org/x/net/LICENSE similarity index 100% rename from Godeps/_workspace/src/golang.org/x/net/LICENSE rename to vendor/golang.org/x/net/LICENSE diff --git a/Godeps/_workspace/src/golang.org/x/net/PATENTS b/vendor/golang.org/x/net/PATENTS similarity index 100% rename from Godeps/_workspace/src/golang.org/x/net/PATENTS rename to vendor/golang.org/x/net/PATENTS diff --git a/Godeps/_workspace/src/golang.org/x/net/context/context.go b/vendor/golang.org/x/net/context/context.go similarity index 100% rename from Godeps/_workspace/src/golang.org/x/net/context/context.go rename to vendor/golang.org/x/net/context/context.go diff --git a/Godeps/_workspace/src/golang.org/x/net/context/ctxhttp/cancelreq.go b/vendor/golang.org/x/net/context/ctxhttp/cancelreq.go similarity index 100% rename from Godeps/_workspace/src/golang.org/x/net/context/ctxhttp/cancelreq.go rename to vendor/golang.org/x/net/context/ctxhttp/cancelreq.go diff --git a/Godeps/_workspace/src/golang.org/x/net/context/ctxhttp/cancelreq_go14.go b/vendor/golang.org/x/net/context/ctxhttp/cancelreq_go14.go similarity index 100% rename from Godeps/_workspace/src/golang.org/x/net/context/ctxhttp/cancelreq_go14.go rename to vendor/golang.org/x/net/context/ctxhttp/cancelreq_go14.go diff --git a/Godeps/_workspace/src/golang.org/x/net/context/ctxhttp/ctxhttp.go b/vendor/golang.org/x/net/context/ctxhttp/ctxhttp.go similarity index 100% rename from Godeps/_workspace/src/golang.org/x/net/context/ctxhttp/ctxhttp.go rename to vendor/golang.org/x/net/context/ctxhttp/ctxhttp.go diff --git a/Godeps/_workspace/src/golang.org/x/net/proxy/direct.go b/vendor/golang.org/x/net/proxy/direct.go similarity index 100% rename from Godeps/_workspace/src/golang.org/x/net/proxy/direct.go rename to vendor/golang.org/x/net/proxy/direct.go diff --git a/Godeps/_workspace/src/golang.org/x/net/proxy/per_host.go b/vendor/golang.org/x/net/proxy/per_host.go similarity index 100% rename from Godeps/_workspace/src/golang.org/x/net/proxy/per_host.go rename to vendor/golang.org/x/net/proxy/per_host.go diff --git a/Godeps/_workspace/src/golang.org/x/net/proxy/proxy.go b/vendor/golang.org/x/net/proxy/proxy.go similarity index 100% rename from Godeps/_workspace/src/golang.org/x/net/proxy/proxy.go rename to vendor/golang.org/x/net/proxy/proxy.go diff --git a/Godeps/_workspace/src/golang.org/x/net/proxy/socks5.go b/vendor/golang.org/x/net/proxy/socks5.go similarity index 100% rename from Godeps/_workspace/src/golang.org/x/net/proxy/socks5.go rename to vendor/golang.org/x/net/proxy/socks5.go diff --git a/Godeps/_workspace/src/golang.org/x/sys/LICENSE b/vendor/golang.org/x/sys/LICENSE similarity index 100% rename from Godeps/_workspace/src/golang.org/x/sys/LICENSE rename to vendor/golang.org/x/sys/LICENSE diff --git a/Godeps/_workspace/src/golang.org/x/sys/PATENTS b/vendor/golang.org/x/sys/PATENTS similarity index 100% rename from Godeps/_workspace/src/golang.org/x/sys/PATENTS rename to vendor/golang.org/x/sys/PATENTS diff --git a/Godeps/_workspace/src/golang.org/x/sys/unix/.gitignore b/vendor/golang.org/x/sys/unix/.gitignore similarity index 100% rename from Godeps/_workspace/src/golang.org/x/sys/unix/.gitignore rename to vendor/golang.org/x/sys/unix/.gitignore diff --git a/Godeps/_workspace/src/golang.org/x/sys/unix/asm.s b/vendor/golang.org/x/sys/unix/asm.s similarity index 100% rename from Godeps/_workspace/src/golang.org/x/sys/unix/asm.s rename to vendor/golang.org/x/sys/unix/asm.s diff --git a/Godeps/_workspace/src/golang.org/x/sys/unix/asm_darwin_386.s b/vendor/golang.org/x/sys/unix/asm_darwin_386.s similarity index 100% rename from Godeps/_workspace/src/golang.org/x/sys/unix/asm_darwin_386.s rename to vendor/golang.org/x/sys/unix/asm_darwin_386.s diff --git a/Godeps/_workspace/src/golang.org/x/sys/unix/asm_darwin_amd64.s b/vendor/golang.org/x/sys/unix/asm_darwin_amd64.s similarity index 100% rename from Godeps/_workspace/src/golang.org/x/sys/unix/asm_darwin_amd64.s rename to vendor/golang.org/x/sys/unix/asm_darwin_amd64.s diff --git a/Godeps/_workspace/src/golang.org/x/sys/unix/asm_darwin_arm.s b/vendor/golang.org/x/sys/unix/asm_darwin_arm.s similarity index 100% rename from Godeps/_workspace/src/golang.org/x/sys/unix/asm_darwin_arm.s rename to vendor/golang.org/x/sys/unix/asm_darwin_arm.s diff --git a/Godeps/_workspace/src/golang.org/x/sys/unix/asm_darwin_arm64.s b/vendor/golang.org/x/sys/unix/asm_darwin_arm64.s similarity index 100% rename from Godeps/_workspace/src/golang.org/x/sys/unix/asm_darwin_arm64.s rename to vendor/golang.org/x/sys/unix/asm_darwin_arm64.s diff --git a/Godeps/_workspace/src/golang.org/x/sys/unix/asm_dragonfly_386.s b/vendor/golang.org/x/sys/unix/asm_dragonfly_386.s similarity index 100% rename from Godeps/_workspace/src/golang.org/x/sys/unix/asm_dragonfly_386.s rename to vendor/golang.org/x/sys/unix/asm_dragonfly_386.s diff --git a/Godeps/_workspace/src/golang.org/x/sys/unix/asm_dragonfly_amd64.s b/vendor/golang.org/x/sys/unix/asm_dragonfly_amd64.s similarity index 100% rename from Godeps/_workspace/src/golang.org/x/sys/unix/asm_dragonfly_amd64.s rename to vendor/golang.org/x/sys/unix/asm_dragonfly_amd64.s diff --git a/Godeps/_workspace/src/golang.org/x/sys/unix/asm_freebsd_386.s b/vendor/golang.org/x/sys/unix/asm_freebsd_386.s similarity index 100% rename from Godeps/_workspace/src/golang.org/x/sys/unix/asm_freebsd_386.s rename to vendor/golang.org/x/sys/unix/asm_freebsd_386.s diff --git a/Godeps/_workspace/src/golang.org/x/sys/unix/asm_freebsd_amd64.s b/vendor/golang.org/x/sys/unix/asm_freebsd_amd64.s similarity index 100% rename from Godeps/_workspace/src/golang.org/x/sys/unix/asm_freebsd_amd64.s rename to vendor/golang.org/x/sys/unix/asm_freebsd_amd64.s diff --git a/Godeps/_workspace/src/golang.org/x/sys/unix/asm_freebsd_arm.s b/vendor/golang.org/x/sys/unix/asm_freebsd_arm.s similarity index 100% rename from Godeps/_workspace/src/golang.org/x/sys/unix/asm_freebsd_arm.s rename to vendor/golang.org/x/sys/unix/asm_freebsd_arm.s diff --git a/Godeps/_workspace/src/golang.org/x/sys/unix/asm_linux_386.s b/vendor/golang.org/x/sys/unix/asm_linux_386.s similarity index 100% rename from Godeps/_workspace/src/golang.org/x/sys/unix/asm_linux_386.s rename to vendor/golang.org/x/sys/unix/asm_linux_386.s diff --git a/Godeps/_workspace/src/golang.org/x/sys/unix/asm_linux_amd64.s b/vendor/golang.org/x/sys/unix/asm_linux_amd64.s similarity index 100% rename from Godeps/_workspace/src/golang.org/x/sys/unix/asm_linux_amd64.s rename to vendor/golang.org/x/sys/unix/asm_linux_amd64.s diff --git a/Godeps/_workspace/src/golang.org/x/sys/unix/asm_linux_arm.s b/vendor/golang.org/x/sys/unix/asm_linux_arm.s similarity index 100% rename from Godeps/_workspace/src/golang.org/x/sys/unix/asm_linux_arm.s rename to vendor/golang.org/x/sys/unix/asm_linux_arm.s diff --git a/Godeps/_workspace/src/golang.org/x/sys/unix/asm_linux_arm64.s b/vendor/golang.org/x/sys/unix/asm_linux_arm64.s similarity index 100% rename from Godeps/_workspace/src/golang.org/x/sys/unix/asm_linux_arm64.s rename to vendor/golang.org/x/sys/unix/asm_linux_arm64.s diff --git a/Godeps/_workspace/src/golang.org/x/sys/unix/asm_linux_ppc64x.s b/vendor/golang.org/x/sys/unix/asm_linux_ppc64x.s similarity index 100% rename from Godeps/_workspace/src/golang.org/x/sys/unix/asm_linux_ppc64x.s rename to vendor/golang.org/x/sys/unix/asm_linux_ppc64x.s diff --git a/Godeps/_workspace/src/golang.org/x/sys/unix/asm_netbsd_386.s b/vendor/golang.org/x/sys/unix/asm_netbsd_386.s similarity index 100% rename from Godeps/_workspace/src/golang.org/x/sys/unix/asm_netbsd_386.s rename to vendor/golang.org/x/sys/unix/asm_netbsd_386.s diff --git a/Godeps/_workspace/src/golang.org/x/sys/unix/asm_netbsd_amd64.s b/vendor/golang.org/x/sys/unix/asm_netbsd_amd64.s similarity index 100% rename from Godeps/_workspace/src/golang.org/x/sys/unix/asm_netbsd_amd64.s rename to vendor/golang.org/x/sys/unix/asm_netbsd_amd64.s diff --git a/Godeps/_workspace/src/golang.org/x/sys/unix/asm_netbsd_arm.s b/vendor/golang.org/x/sys/unix/asm_netbsd_arm.s similarity index 100% rename from Godeps/_workspace/src/golang.org/x/sys/unix/asm_netbsd_arm.s rename to vendor/golang.org/x/sys/unix/asm_netbsd_arm.s diff --git a/Godeps/_workspace/src/golang.org/x/sys/unix/asm_openbsd_386.s b/vendor/golang.org/x/sys/unix/asm_openbsd_386.s similarity index 100% rename from Godeps/_workspace/src/golang.org/x/sys/unix/asm_openbsd_386.s rename to vendor/golang.org/x/sys/unix/asm_openbsd_386.s diff --git a/Godeps/_workspace/src/golang.org/x/sys/unix/asm_openbsd_amd64.s b/vendor/golang.org/x/sys/unix/asm_openbsd_amd64.s similarity index 100% rename from Godeps/_workspace/src/golang.org/x/sys/unix/asm_openbsd_amd64.s rename to vendor/golang.org/x/sys/unix/asm_openbsd_amd64.s diff --git a/Godeps/_workspace/src/golang.org/x/sys/unix/asm_solaris_amd64.s b/vendor/golang.org/x/sys/unix/asm_solaris_amd64.s similarity index 100% rename from Godeps/_workspace/src/golang.org/x/sys/unix/asm_solaris_amd64.s rename to vendor/golang.org/x/sys/unix/asm_solaris_amd64.s diff --git a/Godeps/_workspace/src/golang.org/x/sys/unix/constants.go b/vendor/golang.org/x/sys/unix/constants.go similarity index 100% rename from Godeps/_workspace/src/golang.org/x/sys/unix/constants.go rename to vendor/golang.org/x/sys/unix/constants.go diff --git a/Godeps/_workspace/src/golang.org/x/sys/unix/env_unix.go b/vendor/golang.org/x/sys/unix/env_unix.go similarity index 100% rename from Godeps/_workspace/src/golang.org/x/sys/unix/env_unix.go rename to vendor/golang.org/x/sys/unix/env_unix.go diff --git a/Godeps/_workspace/src/golang.org/x/sys/unix/env_unset.go b/vendor/golang.org/x/sys/unix/env_unset.go similarity index 100% rename from Godeps/_workspace/src/golang.org/x/sys/unix/env_unset.go rename to vendor/golang.org/x/sys/unix/env_unset.go diff --git a/Godeps/_workspace/src/golang.org/x/sys/unix/flock.go b/vendor/golang.org/x/sys/unix/flock.go similarity index 100% rename from Godeps/_workspace/src/golang.org/x/sys/unix/flock.go rename to vendor/golang.org/x/sys/unix/flock.go diff --git a/Godeps/_workspace/src/golang.org/x/sys/unix/flock_linux_32bit.go b/vendor/golang.org/x/sys/unix/flock_linux_32bit.go similarity index 100% rename from Godeps/_workspace/src/golang.org/x/sys/unix/flock_linux_32bit.go rename to vendor/golang.org/x/sys/unix/flock_linux_32bit.go diff --git a/Godeps/_workspace/src/golang.org/x/sys/unix/gccgo.go b/vendor/golang.org/x/sys/unix/gccgo.go similarity index 100% rename from Godeps/_workspace/src/golang.org/x/sys/unix/gccgo.go rename to vendor/golang.org/x/sys/unix/gccgo.go diff --git a/Godeps/_workspace/src/golang.org/x/sys/unix/gccgo_c.c b/vendor/golang.org/x/sys/unix/gccgo_c.c similarity index 100% rename from Godeps/_workspace/src/golang.org/x/sys/unix/gccgo_c.c rename to vendor/golang.org/x/sys/unix/gccgo_c.c diff --git a/Godeps/_workspace/src/golang.org/x/sys/unix/gccgo_linux_amd64.go b/vendor/golang.org/x/sys/unix/gccgo_linux_amd64.go similarity index 100% rename from Godeps/_workspace/src/golang.org/x/sys/unix/gccgo_linux_amd64.go rename to vendor/golang.org/x/sys/unix/gccgo_linux_amd64.go diff --git a/Godeps/_workspace/src/golang.org/x/sys/unix/mkall.sh b/vendor/golang.org/x/sys/unix/mkall.sh similarity index 100% rename from Godeps/_workspace/src/golang.org/x/sys/unix/mkall.sh rename to vendor/golang.org/x/sys/unix/mkall.sh diff --git a/Godeps/_workspace/src/golang.org/x/sys/unix/mkerrors.sh b/vendor/golang.org/x/sys/unix/mkerrors.sh similarity index 100% rename from Godeps/_workspace/src/golang.org/x/sys/unix/mkerrors.sh rename to vendor/golang.org/x/sys/unix/mkerrors.sh diff --git a/Godeps/_workspace/src/golang.org/x/sys/unix/mksyscall.pl b/vendor/golang.org/x/sys/unix/mksyscall.pl similarity index 100% rename from Godeps/_workspace/src/golang.org/x/sys/unix/mksyscall.pl rename to vendor/golang.org/x/sys/unix/mksyscall.pl diff --git a/Godeps/_workspace/src/golang.org/x/sys/unix/mksyscall_solaris.pl b/vendor/golang.org/x/sys/unix/mksyscall_solaris.pl similarity index 100% rename from Godeps/_workspace/src/golang.org/x/sys/unix/mksyscall_solaris.pl rename to vendor/golang.org/x/sys/unix/mksyscall_solaris.pl diff --git a/Godeps/_workspace/src/golang.org/x/sys/unix/mksysctl_openbsd.pl b/vendor/golang.org/x/sys/unix/mksysctl_openbsd.pl similarity index 100% rename from Godeps/_workspace/src/golang.org/x/sys/unix/mksysctl_openbsd.pl rename to vendor/golang.org/x/sys/unix/mksysctl_openbsd.pl diff --git a/Godeps/_workspace/src/golang.org/x/sys/unix/mksysnum_darwin.pl b/vendor/golang.org/x/sys/unix/mksysnum_darwin.pl similarity index 100% rename from Godeps/_workspace/src/golang.org/x/sys/unix/mksysnum_darwin.pl rename to vendor/golang.org/x/sys/unix/mksysnum_darwin.pl diff --git a/Godeps/_workspace/src/golang.org/x/sys/unix/mksysnum_dragonfly.pl b/vendor/golang.org/x/sys/unix/mksysnum_dragonfly.pl similarity index 100% rename from Godeps/_workspace/src/golang.org/x/sys/unix/mksysnum_dragonfly.pl rename to vendor/golang.org/x/sys/unix/mksysnum_dragonfly.pl diff --git a/Godeps/_workspace/src/golang.org/x/sys/unix/mksysnum_freebsd.pl b/vendor/golang.org/x/sys/unix/mksysnum_freebsd.pl similarity index 100% rename from Godeps/_workspace/src/golang.org/x/sys/unix/mksysnum_freebsd.pl rename to vendor/golang.org/x/sys/unix/mksysnum_freebsd.pl diff --git a/Godeps/_workspace/src/golang.org/x/sys/unix/mksysnum_linux.pl b/vendor/golang.org/x/sys/unix/mksysnum_linux.pl similarity index 100% rename from Godeps/_workspace/src/golang.org/x/sys/unix/mksysnum_linux.pl rename to vendor/golang.org/x/sys/unix/mksysnum_linux.pl diff --git a/Godeps/_workspace/src/golang.org/x/sys/unix/mksysnum_netbsd.pl b/vendor/golang.org/x/sys/unix/mksysnum_netbsd.pl similarity index 100% rename from Godeps/_workspace/src/golang.org/x/sys/unix/mksysnum_netbsd.pl rename to vendor/golang.org/x/sys/unix/mksysnum_netbsd.pl diff --git a/Godeps/_workspace/src/golang.org/x/sys/unix/mksysnum_openbsd.pl b/vendor/golang.org/x/sys/unix/mksysnum_openbsd.pl similarity index 100% rename from Godeps/_workspace/src/golang.org/x/sys/unix/mksysnum_openbsd.pl rename to vendor/golang.org/x/sys/unix/mksysnum_openbsd.pl diff --git a/Godeps/_workspace/src/golang.org/x/sys/unix/race.go b/vendor/golang.org/x/sys/unix/race.go similarity index 100% rename from Godeps/_workspace/src/golang.org/x/sys/unix/race.go rename to vendor/golang.org/x/sys/unix/race.go diff --git a/Godeps/_workspace/src/golang.org/x/sys/unix/race0.go b/vendor/golang.org/x/sys/unix/race0.go similarity index 100% rename from Godeps/_workspace/src/golang.org/x/sys/unix/race0.go rename to vendor/golang.org/x/sys/unix/race0.go diff --git a/Godeps/_workspace/src/golang.org/x/sys/unix/sockcmsg_linux.go b/vendor/golang.org/x/sys/unix/sockcmsg_linux.go similarity index 100% rename from Godeps/_workspace/src/golang.org/x/sys/unix/sockcmsg_linux.go rename to vendor/golang.org/x/sys/unix/sockcmsg_linux.go diff --git a/Godeps/_workspace/src/golang.org/x/sys/unix/sockcmsg_unix.go b/vendor/golang.org/x/sys/unix/sockcmsg_unix.go similarity index 100% rename from Godeps/_workspace/src/golang.org/x/sys/unix/sockcmsg_unix.go rename to vendor/golang.org/x/sys/unix/sockcmsg_unix.go diff --git a/Godeps/_workspace/src/golang.org/x/sys/unix/str.go b/vendor/golang.org/x/sys/unix/str.go similarity index 100% rename from Godeps/_workspace/src/golang.org/x/sys/unix/str.go rename to vendor/golang.org/x/sys/unix/str.go diff --git a/Godeps/_workspace/src/golang.org/x/sys/unix/syscall.go b/vendor/golang.org/x/sys/unix/syscall.go similarity index 100% rename from Godeps/_workspace/src/golang.org/x/sys/unix/syscall.go rename to vendor/golang.org/x/sys/unix/syscall.go diff --git a/Godeps/_workspace/src/golang.org/x/sys/unix/syscall_bsd.go b/vendor/golang.org/x/sys/unix/syscall_bsd.go similarity index 100% rename from Godeps/_workspace/src/golang.org/x/sys/unix/syscall_bsd.go rename to vendor/golang.org/x/sys/unix/syscall_bsd.go diff --git a/Godeps/_workspace/src/golang.org/x/sys/unix/syscall_darwin.go b/vendor/golang.org/x/sys/unix/syscall_darwin.go similarity index 100% rename from Godeps/_workspace/src/golang.org/x/sys/unix/syscall_darwin.go rename to vendor/golang.org/x/sys/unix/syscall_darwin.go diff --git a/Godeps/_workspace/src/golang.org/x/sys/unix/syscall_darwin_386.go b/vendor/golang.org/x/sys/unix/syscall_darwin_386.go similarity index 100% rename from Godeps/_workspace/src/golang.org/x/sys/unix/syscall_darwin_386.go rename to vendor/golang.org/x/sys/unix/syscall_darwin_386.go diff --git a/Godeps/_workspace/src/golang.org/x/sys/unix/syscall_darwin_amd64.go b/vendor/golang.org/x/sys/unix/syscall_darwin_amd64.go similarity index 100% rename from Godeps/_workspace/src/golang.org/x/sys/unix/syscall_darwin_amd64.go rename to vendor/golang.org/x/sys/unix/syscall_darwin_amd64.go diff --git a/Godeps/_workspace/src/golang.org/x/sys/unix/syscall_darwin_arm.go b/vendor/golang.org/x/sys/unix/syscall_darwin_arm.go similarity index 100% rename from Godeps/_workspace/src/golang.org/x/sys/unix/syscall_darwin_arm.go rename to vendor/golang.org/x/sys/unix/syscall_darwin_arm.go diff --git a/Godeps/_workspace/src/golang.org/x/sys/unix/syscall_darwin_arm64.go b/vendor/golang.org/x/sys/unix/syscall_darwin_arm64.go similarity index 100% rename from Godeps/_workspace/src/golang.org/x/sys/unix/syscall_darwin_arm64.go rename to vendor/golang.org/x/sys/unix/syscall_darwin_arm64.go diff --git a/Godeps/_workspace/src/golang.org/x/sys/unix/syscall_dragonfly.go b/vendor/golang.org/x/sys/unix/syscall_dragonfly.go similarity index 100% rename from Godeps/_workspace/src/golang.org/x/sys/unix/syscall_dragonfly.go rename to vendor/golang.org/x/sys/unix/syscall_dragonfly.go diff --git a/Godeps/_workspace/src/golang.org/x/sys/unix/syscall_dragonfly_386.go b/vendor/golang.org/x/sys/unix/syscall_dragonfly_386.go similarity index 100% rename from Godeps/_workspace/src/golang.org/x/sys/unix/syscall_dragonfly_386.go rename to vendor/golang.org/x/sys/unix/syscall_dragonfly_386.go diff --git a/Godeps/_workspace/src/golang.org/x/sys/unix/syscall_dragonfly_amd64.go b/vendor/golang.org/x/sys/unix/syscall_dragonfly_amd64.go similarity index 100% rename from Godeps/_workspace/src/golang.org/x/sys/unix/syscall_dragonfly_amd64.go rename to vendor/golang.org/x/sys/unix/syscall_dragonfly_amd64.go diff --git a/Godeps/_workspace/src/golang.org/x/sys/unix/syscall_freebsd.go b/vendor/golang.org/x/sys/unix/syscall_freebsd.go similarity index 100% rename from Godeps/_workspace/src/golang.org/x/sys/unix/syscall_freebsd.go rename to vendor/golang.org/x/sys/unix/syscall_freebsd.go diff --git a/Godeps/_workspace/src/golang.org/x/sys/unix/syscall_freebsd_386.go b/vendor/golang.org/x/sys/unix/syscall_freebsd_386.go similarity index 100% rename from Godeps/_workspace/src/golang.org/x/sys/unix/syscall_freebsd_386.go rename to vendor/golang.org/x/sys/unix/syscall_freebsd_386.go diff --git a/Godeps/_workspace/src/golang.org/x/sys/unix/syscall_freebsd_amd64.go b/vendor/golang.org/x/sys/unix/syscall_freebsd_amd64.go similarity index 100% rename from Godeps/_workspace/src/golang.org/x/sys/unix/syscall_freebsd_amd64.go rename to vendor/golang.org/x/sys/unix/syscall_freebsd_amd64.go diff --git a/Godeps/_workspace/src/golang.org/x/sys/unix/syscall_freebsd_arm.go b/vendor/golang.org/x/sys/unix/syscall_freebsd_arm.go similarity index 100% rename from Godeps/_workspace/src/golang.org/x/sys/unix/syscall_freebsd_arm.go rename to vendor/golang.org/x/sys/unix/syscall_freebsd_arm.go diff --git a/Godeps/_workspace/src/golang.org/x/sys/unix/syscall_linux.go b/vendor/golang.org/x/sys/unix/syscall_linux.go similarity index 100% rename from Godeps/_workspace/src/golang.org/x/sys/unix/syscall_linux.go rename to vendor/golang.org/x/sys/unix/syscall_linux.go diff --git a/Godeps/_workspace/src/golang.org/x/sys/unix/syscall_linux_386.go b/vendor/golang.org/x/sys/unix/syscall_linux_386.go similarity index 100% rename from Godeps/_workspace/src/golang.org/x/sys/unix/syscall_linux_386.go rename to vendor/golang.org/x/sys/unix/syscall_linux_386.go diff --git a/Godeps/_workspace/src/golang.org/x/sys/unix/syscall_linux_amd64.go b/vendor/golang.org/x/sys/unix/syscall_linux_amd64.go similarity index 100% rename from Godeps/_workspace/src/golang.org/x/sys/unix/syscall_linux_amd64.go rename to vendor/golang.org/x/sys/unix/syscall_linux_amd64.go diff --git a/Godeps/_workspace/src/golang.org/x/sys/unix/syscall_linux_arm.go b/vendor/golang.org/x/sys/unix/syscall_linux_arm.go similarity index 100% rename from Godeps/_workspace/src/golang.org/x/sys/unix/syscall_linux_arm.go rename to vendor/golang.org/x/sys/unix/syscall_linux_arm.go diff --git a/Godeps/_workspace/src/golang.org/x/sys/unix/syscall_linux_arm64.go b/vendor/golang.org/x/sys/unix/syscall_linux_arm64.go similarity index 100% rename from Godeps/_workspace/src/golang.org/x/sys/unix/syscall_linux_arm64.go rename to vendor/golang.org/x/sys/unix/syscall_linux_arm64.go diff --git a/Godeps/_workspace/src/golang.org/x/sys/unix/syscall_linux_ppc64x.go b/vendor/golang.org/x/sys/unix/syscall_linux_ppc64x.go similarity index 100% rename from Godeps/_workspace/src/golang.org/x/sys/unix/syscall_linux_ppc64x.go rename to vendor/golang.org/x/sys/unix/syscall_linux_ppc64x.go diff --git a/Godeps/_workspace/src/golang.org/x/sys/unix/syscall_netbsd.go b/vendor/golang.org/x/sys/unix/syscall_netbsd.go similarity index 100% rename from Godeps/_workspace/src/golang.org/x/sys/unix/syscall_netbsd.go rename to vendor/golang.org/x/sys/unix/syscall_netbsd.go diff --git a/Godeps/_workspace/src/golang.org/x/sys/unix/syscall_netbsd_386.go b/vendor/golang.org/x/sys/unix/syscall_netbsd_386.go similarity index 100% rename from Godeps/_workspace/src/golang.org/x/sys/unix/syscall_netbsd_386.go rename to vendor/golang.org/x/sys/unix/syscall_netbsd_386.go diff --git a/Godeps/_workspace/src/golang.org/x/sys/unix/syscall_netbsd_amd64.go b/vendor/golang.org/x/sys/unix/syscall_netbsd_amd64.go similarity index 100% rename from Godeps/_workspace/src/golang.org/x/sys/unix/syscall_netbsd_amd64.go rename to vendor/golang.org/x/sys/unix/syscall_netbsd_amd64.go diff --git a/Godeps/_workspace/src/golang.org/x/sys/unix/syscall_netbsd_arm.go b/vendor/golang.org/x/sys/unix/syscall_netbsd_arm.go similarity index 100% rename from Godeps/_workspace/src/golang.org/x/sys/unix/syscall_netbsd_arm.go rename to vendor/golang.org/x/sys/unix/syscall_netbsd_arm.go diff --git a/Godeps/_workspace/src/golang.org/x/sys/unix/syscall_no_getwd.go b/vendor/golang.org/x/sys/unix/syscall_no_getwd.go similarity index 100% rename from Godeps/_workspace/src/golang.org/x/sys/unix/syscall_no_getwd.go rename to vendor/golang.org/x/sys/unix/syscall_no_getwd.go diff --git a/Godeps/_workspace/src/golang.org/x/sys/unix/syscall_openbsd.go b/vendor/golang.org/x/sys/unix/syscall_openbsd.go similarity index 100% rename from Godeps/_workspace/src/golang.org/x/sys/unix/syscall_openbsd.go rename to vendor/golang.org/x/sys/unix/syscall_openbsd.go diff --git a/Godeps/_workspace/src/golang.org/x/sys/unix/syscall_openbsd_386.go b/vendor/golang.org/x/sys/unix/syscall_openbsd_386.go similarity index 100% rename from Godeps/_workspace/src/golang.org/x/sys/unix/syscall_openbsd_386.go rename to vendor/golang.org/x/sys/unix/syscall_openbsd_386.go diff --git a/Godeps/_workspace/src/golang.org/x/sys/unix/syscall_openbsd_amd64.go b/vendor/golang.org/x/sys/unix/syscall_openbsd_amd64.go similarity index 100% rename from Godeps/_workspace/src/golang.org/x/sys/unix/syscall_openbsd_amd64.go rename to vendor/golang.org/x/sys/unix/syscall_openbsd_amd64.go diff --git a/Godeps/_workspace/src/golang.org/x/sys/unix/syscall_solaris.go b/vendor/golang.org/x/sys/unix/syscall_solaris.go similarity index 100% rename from Godeps/_workspace/src/golang.org/x/sys/unix/syscall_solaris.go rename to vendor/golang.org/x/sys/unix/syscall_solaris.go diff --git a/Godeps/_workspace/src/golang.org/x/sys/unix/syscall_solaris_amd64.go b/vendor/golang.org/x/sys/unix/syscall_solaris_amd64.go similarity index 100% rename from Godeps/_workspace/src/golang.org/x/sys/unix/syscall_solaris_amd64.go rename to vendor/golang.org/x/sys/unix/syscall_solaris_amd64.go diff --git a/Godeps/_workspace/src/golang.org/x/sys/unix/syscall_unix.go b/vendor/golang.org/x/sys/unix/syscall_unix.go similarity index 100% rename from Godeps/_workspace/src/golang.org/x/sys/unix/syscall_unix.go rename to vendor/golang.org/x/sys/unix/syscall_unix.go diff --git a/Godeps/_workspace/src/golang.org/x/sys/unix/types_darwin.go b/vendor/golang.org/x/sys/unix/types_darwin.go similarity index 100% rename from Godeps/_workspace/src/golang.org/x/sys/unix/types_darwin.go rename to vendor/golang.org/x/sys/unix/types_darwin.go diff --git a/Godeps/_workspace/src/golang.org/x/sys/unix/types_dragonfly.go b/vendor/golang.org/x/sys/unix/types_dragonfly.go similarity index 100% rename from Godeps/_workspace/src/golang.org/x/sys/unix/types_dragonfly.go rename to vendor/golang.org/x/sys/unix/types_dragonfly.go diff --git a/Godeps/_workspace/src/golang.org/x/sys/unix/types_freebsd.go b/vendor/golang.org/x/sys/unix/types_freebsd.go similarity index 100% rename from Godeps/_workspace/src/golang.org/x/sys/unix/types_freebsd.go rename to vendor/golang.org/x/sys/unix/types_freebsd.go diff --git a/Godeps/_workspace/src/golang.org/x/sys/unix/types_linux.go b/vendor/golang.org/x/sys/unix/types_linux.go similarity index 100% rename from Godeps/_workspace/src/golang.org/x/sys/unix/types_linux.go rename to vendor/golang.org/x/sys/unix/types_linux.go diff --git a/Godeps/_workspace/src/golang.org/x/sys/unix/types_netbsd.go b/vendor/golang.org/x/sys/unix/types_netbsd.go similarity index 100% rename from Godeps/_workspace/src/golang.org/x/sys/unix/types_netbsd.go rename to vendor/golang.org/x/sys/unix/types_netbsd.go diff --git a/Godeps/_workspace/src/golang.org/x/sys/unix/types_openbsd.go b/vendor/golang.org/x/sys/unix/types_openbsd.go similarity index 100% rename from Godeps/_workspace/src/golang.org/x/sys/unix/types_openbsd.go rename to vendor/golang.org/x/sys/unix/types_openbsd.go diff --git a/Godeps/_workspace/src/golang.org/x/sys/unix/types_solaris.go b/vendor/golang.org/x/sys/unix/types_solaris.go similarity index 100% rename from Godeps/_workspace/src/golang.org/x/sys/unix/types_solaris.go rename to vendor/golang.org/x/sys/unix/types_solaris.go diff --git a/Godeps/_workspace/src/golang.org/x/sys/unix/zerrors_darwin_386.go b/vendor/golang.org/x/sys/unix/zerrors_darwin_386.go similarity index 100% rename from Godeps/_workspace/src/golang.org/x/sys/unix/zerrors_darwin_386.go rename to vendor/golang.org/x/sys/unix/zerrors_darwin_386.go diff --git a/Godeps/_workspace/src/golang.org/x/sys/unix/zerrors_darwin_amd64.go b/vendor/golang.org/x/sys/unix/zerrors_darwin_amd64.go similarity index 100% rename from Godeps/_workspace/src/golang.org/x/sys/unix/zerrors_darwin_amd64.go rename to vendor/golang.org/x/sys/unix/zerrors_darwin_amd64.go diff --git a/Godeps/_workspace/src/golang.org/x/sys/unix/zerrors_darwin_arm.go b/vendor/golang.org/x/sys/unix/zerrors_darwin_arm.go similarity index 100% rename from Godeps/_workspace/src/golang.org/x/sys/unix/zerrors_darwin_arm.go rename to vendor/golang.org/x/sys/unix/zerrors_darwin_arm.go diff --git a/Godeps/_workspace/src/golang.org/x/sys/unix/zerrors_darwin_arm64.go b/vendor/golang.org/x/sys/unix/zerrors_darwin_arm64.go similarity index 100% rename from Godeps/_workspace/src/golang.org/x/sys/unix/zerrors_darwin_arm64.go rename to vendor/golang.org/x/sys/unix/zerrors_darwin_arm64.go diff --git a/Godeps/_workspace/src/golang.org/x/sys/unix/zerrors_dragonfly_386.go b/vendor/golang.org/x/sys/unix/zerrors_dragonfly_386.go similarity index 100% rename from Godeps/_workspace/src/golang.org/x/sys/unix/zerrors_dragonfly_386.go rename to vendor/golang.org/x/sys/unix/zerrors_dragonfly_386.go diff --git a/Godeps/_workspace/src/golang.org/x/sys/unix/zerrors_dragonfly_amd64.go b/vendor/golang.org/x/sys/unix/zerrors_dragonfly_amd64.go similarity index 100% rename from Godeps/_workspace/src/golang.org/x/sys/unix/zerrors_dragonfly_amd64.go rename to vendor/golang.org/x/sys/unix/zerrors_dragonfly_amd64.go diff --git a/Godeps/_workspace/src/golang.org/x/sys/unix/zerrors_freebsd_386.go b/vendor/golang.org/x/sys/unix/zerrors_freebsd_386.go similarity index 100% rename from Godeps/_workspace/src/golang.org/x/sys/unix/zerrors_freebsd_386.go rename to vendor/golang.org/x/sys/unix/zerrors_freebsd_386.go diff --git a/Godeps/_workspace/src/golang.org/x/sys/unix/zerrors_freebsd_amd64.go b/vendor/golang.org/x/sys/unix/zerrors_freebsd_amd64.go similarity index 100% rename from Godeps/_workspace/src/golang.org/x/sys/unix/zerrors_freebsd_amd64.go rename to vendor/golang.org/x/sys/unix/zerrors_freebsd_amd64.go diff --git a/Godeps/_workspace/src/golang.org/x/sys/unix/zerrors_freebsd_arm.go b/vendor/golang.org/x/sys/unix/zerrors_freebsd_arm.go similarity index 100% rename from Godeps/_workspace/src/golang.org/x/sys/unix/zerrors_freebsd_arm.go rename to vendor/golang.org/x/sys/unix/zerrors_freebsd_arm.go diff --git a/Godeps/_workspace/src/golang.org/x/sys/unix/zerrors_linux_386.go b/vendor/golang.org/x/sys/unix/zerrors_linux_386.go similarity index 100% rename from Godeps/_workspace/src/golang.org/x/sys/unix/zerrors_linux_386.go rename to vendor/golang.org/x/sys/unix/zerrors_linux_386.go diff --git a/Godeps/_workspace/src/golang.org/x/sys/unix/zerrors_linux_amd64.go b/vendor/golang.org/x/sys/unix/zerrors_linux_amd64.go similarity index 100% rename from Godeps/_workspace/src/golang.org/x/sys/unix/zerrors_linux_amd64.go rename to vendor/golang.org/x/sys/unix/zerrors_linux_amd64.go diff --git a/Godeps/_workspace/src/golang.org/x/sys/unix/zerrors_linux_arm.go b/vendor/golang.org/x/sys/unix/zerrors_linux_arm.go similarity index 100% rename from Godeps/_workspace/src/golang.org/x/sys/unix/zerrors_linux_arm.go rename to vendor/golang.org/x/sys/unix/zerrors_linux_arm.go diff --git a/Godeps/_workspace/src/golang.org/x/sys/unix/zerrors_linux_arm64.go b/vendor/golang.org/x/sys/unix/zerrors_linux_arm64.go similarity index 100% rename from Godeps/_workspace/src/golang.org/x/sys/unix/zerrors_linux_arm64.go rename to vendor/golang.org/x/sys/unix/zerrors_linux_arm64.go diff --git a/Godeps/_workspace/src/golang.org/x/sys/unix/zerrors_linux_ppc64.go b/vendor/golang.org/x/sys/unix/zerrors_linux_ppc64.go similarity index 100% rename from Godeps/_workspace/src/golang.org/x/sys/unix/zerrors_linux_ppc64.go rename to vendor/golang.org/x/sys/unix/zerrors_linux_ppc64.go diff --git a/Godeps/_workspace/src/golang.org/x/sys/unix/zerrors_linux_ppc64le.go b/vendor/golang.org/x/sys/unix/zerrors_linux_ppc64le.go similarity index 100% rename from Godeps/_workspace/src/golang.org/x/sys/unix/zerrors_linux_ppc64le.go rename to vendor/golang.org/x/sys/unix/zerrors_linux_ppc64le.go diff --git a/Godeps/_workspace/src/golang.org/x/sys/unix/zerrors_netbsd_386.go b/vendor/golang.org/x/sys/unix/zerrors_netbsd_386.go similarity index 100% rename from Godeps/_workspace/src/golang.org/x/sys/unix/zerrors_netbsd_386.go rename to vendor/golang.org/x/sys/unix/zerrors_netbsd_386.go diff --git a/Godeps/_workspace/src/golang.org/x/sys/unix/zerrors_netbsd_amd64.go b/vendor/golang.org/x/sys/unix/zerrors_netbsd_amd64.go similarity index 100% rename from Godeps/_workspace/src/golang.org/x/sys/unix/zerrors_netbsd_amd64.go rename to vendor/golang.org/x/sys/unix/zerrors_netbsd_amd64.go diff --git a/Godeps/_workspace/src/golang.org/x/sys/unix/zerrors_netbsd_arm.go b/vendor/golang.org/x/sys/unix/zerrors_netbsd_arm.go similarity index 100% rename from Godeps/_workspace/src/golang.org/x/sys/unix/zerrors_netbsd_arm.go rename to vendor/golang.org/x/sys/unix/zerrors_netbsd_arm.go diff --git a/Godeps/_workspace/src/golang.org/x/sys/unix/zerrors_openbsd_386.go b/vendor/golang.org/x/sys/unix/zerrors_openbsd_386.go similarity index 100% rename from Godeps/_workspace/src/golang.org/x/sys/unix/zerrors_openbsd_386.go rename to vendor/golang.org/x/sys/unix/zerrors_openbsd_386.go diff --git a/Godeps/_workspace/src/golang.org/x/sys/unix/zerrors_openbsd_amd64.go b/vendor/golang.org/x/sys/unix/zerrors_openbsd_amd64.go similarity index 100% rename from Godeps/_workspace/src/golang.org/x/sys/unix/zerrors_openbsd_amd64.go rename to vendor/golang.org/x/sys/unix/zerrors_openbsd_amd64.go diff --git a/Godeps/_workspace/src/golang.org/x/sys/unix/zerrors_solaris_amd64.go b/vendor/golang.org/x/sys/unix/zerrors_solaris_amd64.go similarity index 100% rename from Godeps/_workspace/src/golang.org/x/sys/unix/zerrors_solaris_amd64.go rename to vendor/golang.org/x/sys/unix/zerrors_solaris_amd64.go diff --git a/Godeps/_workspace/src/golang.org/x/sys/unix/zsyscall_darwin_386.go b/vendor/golang.org/x/sys/unix/zsyscall_darwin_386.go similarity index 100% rename from Godeps/_workspace/src/golang.org/x/sys/unix/zsyscall_darwin_386.go rename to vendor/golang.org/x/sys/unix/zsyscall_darwin_386.go diff --git a/Godeps/_workspace/src/golang.org/x/sys/unix/zsyscall_darwin_amd64.go b/vendor/golang.org/x/sys/unix/zsyscall_darwin_amd64.go similarity index 100% rename from Godeps/_workspace/src/golang.org/x/sys/unix/zsyscall_darwin_amd64.go rename to vendor/golang.org/x/sys/unix/zsyscall_darwin_amd64.go diff --git a/Godeps/_workspace/src/golang.org/x/sys/unix/zsyscall_darwin_arm.go b/vendor/golang.org/x/sys/unix/zsyscall_darwin_arm.go similarity index 100% rename from Godeps/_workspace/src/golang.org/x/sys/unix/zsyscall_darwin_arm.go rename to vendor/golang.org/x/sys/unix/zsyscall_darwin_arm.go diff --git a/Godeps/_workspace/src/golang.org/x/sys/unix/zsyscall_darwin_arm64.go b/vendor/golang.org/x/sys/unix/zsyscall_darwin_arm64.go similarity index 100% rename from Godeps/_workspace/src/golang.org/x/sys/unix/zsyscall_darwin_arm64.go rename to vendor/golang.org/x/sys/unix/zsyscall_darwin_arm64.go diff --git a/Godeps/_workspace/src/golang.org/x/sys/unix/zsyscall_dragonfly_386.go b/vendor/golang.org/x/sys/unix/zsyscall_dragonfly_386.go similarity index 100% rename from Godeps/_workspace/src/golang.org/x/sys/unix/zsyscall_dragonfly_386.go rename to vendor/golang.org/x/sys/unix/zsyscall_dragonfly_386.go diff --git a/Godeps/_workspace/src/golang.org/x/sys/unix/zsyscall_dragonfly_amd64.go b/vendor/golang.org/x/sys/unix/zsyscall_dragonfly_amd64.go similarity index 100% rename from Godeps/_workspace/src/golang.org/x/sys/unix/zsyscall_dragonfly_amd64.go rename to vendor/golang.org/x/sys/unix/zsyscall_dragonfly_amd64.go diff --git a/Godeps/_workspace/src/golang.org/x/sys/unix/zsyscall_freebsd_386.go b/vendor/golang.org/x/sys/unix/zsyscall_freebsd_386.go similarity index 100% rename from Godeps/_workspace/src/golang.org/x/sys/unix/zsyscall_freebsd_386.go rename to vendor/golang.org/x/sys/unix/zsyscall_freebsd_386.go diff --git a/Godeps/_workspace/src/golang.org/x/sys/unix/zsyscall_freebsd_amd64.go b/vendor/golang.org/x/sys/unix/zsyscall_freebsd_amd64.go similarity index 100% rename from Godeps/_workspace/src/golang.org/x/sys/unix/zsyscall_freebsd_amd64.go rename to vendor/golang.org/x/sys/unix/zsyscall_freebsd_amd64.go diff --git a/Godeps/_workspace/src/golang.org/x/sys/unix/zsyscall_freebsd_arm.go b/vendor/golang.org/x/sys/unix/zsyscall_freebsd_arm.go similarity index 100% rename from Godeps/_workspace/src/golang.org/x/sys/unix/zsyscall_freebsd_arm.go rename to vendor/golang.org/x/sys/unix/zsyscall_freebsd_arm.go diff --git a/Godeps/_workspace/src/golang.org/x/sys/unix/zsyscall_linux_386.go b/vendor/golang.org/x/sys/unix/zsyscall_linux_386.go similarity index 100% rename from Godeps/_workspace/src/golang.org/x/sys/unix/zsyscall_linux_386.go rename to vendor/golang.org/x/sys/unix/zsyscall_linux_386.go diff --git a/Godeps/_workspace/src/golang.org/x/sys/unix/zsyscall_linux_amd64.go b/vendor/golang.org/x/sys/unix/zsyscall_linux_amd64.go similarity index 100% rename from Godeps/_workspace/src/golang.org/x/sys/unix/zsyscall_linux_amd64.go rename to vendor/golang.org/x/sys/unix/zsyscall_linux_amd64.go diff --git a/Godeps/_workspace/src/golang.org/x/sys/unix/zsyscall_linux_arm.go b/vendor/golang.org/x/sys/unix/zsyscall_linux_arm.go similarity index 100% rename from Godeps/_workspace/src/golang.org/x/sys/unix/zsyscall_linux_arm.go rename to vendor/golang.org/x/sys/unix/zsyscall_linux_arm.go diff --git a/Godeps/_workspace/src/golang.org/x/sys/unix/zsyscall_linux_arm64.go b/vendor/golang.org/x/sys/unix/zsyscall_linux_arm64.go similarity index 100% rename from Godeps/_workspace/src/golang.org/x/sys/unix/zsyscall_linux_arm64.go rename to vendor/golang.org/x/sys/unix/zsyscall_linux_arm64.go diff --git a/Godeps/_workspace/src/golang.org/x/sys/unix/zsyscall_linux_ppc64.go b/vendor/golang.org/x/sys/unix/zsyscall_linux_ppc64.go similarity index 100% rename from Godeps/_workspace/src/golang.org/x/sys/unix/zsyscall_linux_ppc64.go rename to vendor/golang.org/x/sys/unix/zsyscall_linux_ppc64.go diff --git a/Godeps/_workspace/src/golang.org/x/sys/unix/zsyscall_linux_ppc64le.go b/vendor/golang.org/x/sys/unix/zsyscall_linux_ppc64le.go similarity index 100% rename from Godeps/_workspace/src/golang.org/x/sys/unix/zsyscall_linux_ppc64le.go rename to vendor/golang.org/x/sys/unix/zsyscall_linux_ppc64le.go diff --git a/Godeps/_workspace/src/golang.org/x/sys/unix/zsyscall_netbsd_386.go b/vendor/golang.org/x/sys/unix/zsyscall_netbsd_386.go similarity index 100% rename from Godeps/_workspace/src/golang.org/x/sys/unix/zsyscall_netbsd_386.go rename to vendor/golang.org/x/sys/unix/zsyscall_netbsd_386.go diff --git a/Godeps/_workspace/src/golang.org/x/sys/unix/zsyscall_netbsd_amd64.go b/vendor/golang.org/x/sys/unix/zsyscall_netbsd_amd64.go similarity index 100% rename from Godeps/_workspace/src/golang.org/x/sys/unix/zsyscall_netbsd_amd64.go rename to vendor/golang.org/x/sys/unix/zsyscall_netbsd_amd64.go diff --git a/Godeps/_workspace/src/golang.org/x/sys/unix/zsyscall_netbsd_arm.go b/vendor/golang.org/x/sys/unix/zsyscall_netbsd_arm.go similarity index 100% rename from Godeps/_workspace/src/golang.org/x/sys/unix/zsyscall_netbsd_arm.go rename to vendor/golang.org/x/sys/unix/zsyscall_netbsd_arm.go diff --git a/Godeps/_workspace/src/golang.org/x/sys/unix/zsyscall_openbsd_386.go b/vendor/golang.org/x/sys/unix/zsyscall_openbsd_386.go similarity index 100% rename from Godeps/_workspace/src/golang.org/x/sys/unix/zsyscall_openbsd_386.go rename to vendor/golang.org/x/sys/unix/zsyscall_openbsd_386.go diff --git a/Godeps/_workspace/src/golang.org/x/sys/unix/zsyscall_openbsd_amd64.go b/vendor/golang.org/x/sys/unix/zsyscall_openbsd_amd64.go similarity index 100% rename from Godeps/_workspace/src/golang.org/x/sys/unix/zsyscall_openbsd_amd64.go rename to vendor/golang.org/x/sys/unix/zsyscall_openbsd_amd64.go diff --git a/Godeps/_workspace/src/golang.org/x/sys/unix/zsyscall_solaris_amd64.go b/vendor/golang.org/x/sys/unix/zsyscall_solaris_amd64.go similarity index 100% rename from Godeps/_workspace/src/golang.org/x/sys/unix/zsyscall_solaris_amd64.go rename to vendor/golang.org/x/sys/unix/zsyscall_solaris_amd64.go diff --git a/Godeps/_workspace/src/golang.org/x/sys/unix/zsysctl_openbsd.go b/vendor/golang.org/x/sys/unix/zsysctl_openbsd.go similarity index 100% rename from Godeps/_workspace/src/golang.org/x/sys/unix/zsysctl_openbsd.go rename to vendor/golang.org/x/sys/unix/zsysctl_openbsd.go diff --git a/Godeps/_workspace/src/golang.org/x/sys/unix/zsysnum_darwin_386.go b/vendor/golang.org/x/sys/unix/zsysnum_darwin_386.go similarity index 100% rename from Godeps/_workspace/src/golang.org/x/sys/unix/zsysnum_darwin_386.go rename to vendor/golang.org/x/sys/unix/zsysnum_darwin_386.go diff --git a/Godeps/_workspace/src/golang.org/x/sys/unix/zsysnum_darwin_amd64.go b/vendor/golang.org/x/sys/unix/zsysnum_darwin_amd64.go similarity index 100% rename from Godeps/_workspace/src/golang.org/x/sys/unix/zsysnum_darwin_amd64.go rename to vendor/golang.org/x/sys/unix/zsysnum_darwin_amd64.go diff --git a/Godeps/_workspace/src/golang.org/x/sys/unix/zsysnum_darwin_arm.go b/vendor/golang.org/x/sys/unix/zsysnum_darwin_arm.go similarity index 100% rename from Godeps/_workspace/src/golang.org/x/sys/unix/zsysnum_darwin_arm.go rename to vendor/golang.org/x/sys/unix/zsysnum_darwin_arm.go diff --git a/Godeps/_workspace/src/golang.org/x/sys/unix/zsysnum_darwin_arm64.go b/vendor/golang.org/x/sys/unix/zsysnum_darwin_arm64.go similarity index 100% rename from Godeps/_workspace/src/golang.org/x/sys/unix/zsysnum_darwin_arm64.go rename to vendor/golang.org/x/sys/unix/zsysnum_darwin_arm64.go diff --git a/Godeps/_workspace/src/golang.org/x/sys/unix/zsysnum_dragonfly_386.go b/vendor/golang.org/x/sys/unix/zsysnum_dragonfly_386.go similarity index 100% rename from Godeps/_workspace/src/golang.org/x/sys/unix/zsysnum_dragonfly_386.go rename to vendor/golang.org/x/sys/unix/zsysnum_dragonfly_386.go diff --git a/Godeps/_workspace/src/golang.org/x/sys/unix/zsysnum_dragonfly_amd64.go b/vendor/golang.org/x/sys/unix/zsysnum_dragonfly_amd64.go similarity index 100% rename from Godeps/_workspace/src/golang.org/x/sys/unix/zsysnum_dragonfly_amd64.go rename to vendor/golang.org/x/sys/unix/zsysnum_dragonfly_amd64.go diff --git a/Godeps/_workspace/src/golang.org/x/sys/unix/zsysnum_freebsd_386.go b/vendor/golang.org/x/sys/unix/zsysnum_freebsd_386.go similarity index 100% rename from Godeps/_workspace/src/golang.org/x/sys/unix/zsysnum_freebsd_386.go rename to vendor/golang.org/x/sys/unix/zsysnum_freebsd_386.go diff --git a/Godeps/_workspace/src/golang.org/x/sys/unix/zsysnum_freebsd_amd64.go b/vendor/golang.org/x/sys/unix/zsysnum_freebsd_amd64.go similarity index 100% rename from Godeps/_workspace/src/golang.org/x/sys/unix/zsysnum_freebsd_amd64.go rename to vendor/golang.org/x/sys/unix/zsysnum_freebsd_amd64.go diff --git a/Godeps/_workspace/src/golang.org/x/sys/unix/zsysnum_freebsd_arm.go b/vendor/golang.org/x/sys/unix/zsysnum_freebsd_arm.go similarity index 100% rename from Godeps/_workspace/src/golang.org/x/sys/unix/zsysnum_freebsd_arm.go rename to vendor/golang.org/x/sys/unix/zsysnum_freebsd_arm.go diff --git a/Godeps/_workspace/src/golang.org/x/sys/unix/zsysnum_linux_386.go b/vendor/golang.org/x/sys/unix/zsysnum_linux_386.go similarity index 100% rename from Godeps/_workspace/src/golang.org/x/sys/unix/zsysnum_linux_386.go rename to vendor/golang.org/x/sys/unix/zsysnum_linux_386.go diff --git a/Godeps/_workspace/src/golang.org/x/sys/unix/zsysnum_linux_amd64.go b/vendor/golang.org/x/sys/unix/zsysnum_linux_amd64.go similarity index 100% rename from Godeps/_workspace/src/golang.org/x/sys/unix/zsysnum_linux_amd64.go rename to vendor/golang.org/x/sys/unix/zsysnum_linux_amd64.go diff --git a/Godeps/_workspace/src/golang.org/x/sys/unix/zsysnum_linux_arm.go b/vendor/golang.org/x/sys/unix/zsysnum_linux_arm.go similarity index 100% rename from Godeps/_workspace/src/golang.org/x/sys/unix/zsysnum_linux_arm.go rename to vendor/golang.org/x/sys/unix/zsysnum_linux_arm.go diff --git a/Godeps/_workspace/src/golang.org/x/sys/unix/zsysnum_linux_arm64.go b/vendor/golang.org/x/sys/unix/zsysnum_linux_arm64.go similarity index 100% rename from Godeps/_workspace/src/golang.org/x/sys/unix/zsysnum_linux_arm64.go rename to vendor/golang.org/x/sys/unix/zsysnum_linux_arm64.go diff --git a/Godeps/_workspace/src/golang.org/x/sys/unix/zsysnum_linux_ppc64.go b/vendor/golang.org/x/sys/unix/zsysnum_linux_ppc64.go similarity index 100% rename from Godeps/_workspace/src/golang.org/x/sys/unix/zsysnum_linux_ppc64.go rename to vendor/golang.org/x/sys/unix/zsysnum_linux_ppc64.go diff --git a/Godeps/_workspace/src/golang.org/x/sys/unix/zsysnum_linux_ppc64le.go b/vendor/golang.org/x/sys/unix/zsysnum_linux_ppc64le.go similarity index 100% rename from Godeps/_workspace/src/golang.org/x/sys/unix/zsysnum_linux_ppc64le.go rename to vendor/golang.org/x/sys/unix/zsysnum_linux_ppc64le.go diff --git a/Godeps/_workspace/src/golang.org/x/sys/unix/zsysnum_netbsd_386.go b/vendor/golang.org/x/sys/unix/zsysnum_netbsd_386.go similarity index 100% rename from Godeps/_workspace/src/golang.org/x/sys/unix/zsysnum_netbsd_386.go rename to vendor/golang.org/x/sys/unix/zsysnum_netbsd_386.go diff --git a/Godeps/_workspace/src/golang.org/x/sys/unix/zsysnum_netbsd_amd64.go b/vendor/golang.org/x/sys/unix/zsysnum_netbsd_amd64.go similarity index 100% rename from Godeps/_workspace/src/golang.org/x/sys/unix/zsysnum_netbsd_amd64.go rename to vendor/golang.org/x/sys/unix/zsysnum_netbsd_amd64.go diff --git a/Godeps/_workspace/src/golang.org/x/sys/unix/zsysnum_netbsd_arm.go b/vendor/golang.org/x/sys/unix/zsysnum_netbsd_arm.go similarity index 100% rename from Godeps/_workspace/src/golang.org/x/sys/unix/zsysnum_netbsd_arm.go rename to vendor/golang.org/x/sys/unix/zsysnum_netbsd_arm.go diff --git a/Godeps/_workspace/src/golang.org/x/sys/unix/zsysnum_openbsd_386.go b/vendor/golang.org/x/sys/unix/zsysnum_openbsd_386.go similarity index 100% rename from Godeps/_workspace/src/golang.org/x/sys/unix/zsysnum_openbsd_386.go rename to vendor/golang.org/x/sys/unix/zsysnum_openbsd_386.go diff --git a/Godeps/_workspace/src/golang.org/x/sys/unix/zsysnum_openbsd_amd64.go b/vendor/golang.org/x/sys/unix/zsysnum_openbsd_amd64.go similarity index 100% rename from Godeps/_workspace/src/golang.org/x/sys/unix/zsysnum_openbsd_amd64.go rename to vendor/golang.org/x/sys/unix/zsysnum_openbsd_amd64.go diff --git a/Godeps/_workspace/src/golang.org/x/sys/unix/zsysnum_solaris_amd64.go b/vendor/golang.org/x/sys/unix/zsysnum_solaris_amd64.go similarity index 100% rename from Godeps/_workspace/src/golang.org/x/sys/unix/zsysnum_solaris_amd64.go rename to vendor/golang.org/x/sys/unix/zsysnum_solaris_amd64.go diff --git a/Godeps/_workspace/src/golang.org/x/sys/unix/ztypes_darwin_386.go b/vendor/golang.org/x/sys/unix/ztypes_darwin_386.go similarity index 100% rename from Godeps/_workspace/src/golang.org/x/sys/unix/ztypes_darwin_386.go rename to vendor/golang.org/x/sys/unix/ztypes_darwin_386.go diff --git a/Godeps/_workspace/src/golang.org/x/sys/unix/ztypes_darwin_amd64.go b/vendor/golang.org/x/sys/unix/ztypes_darwin_amd64.go similarity index 100% rename from Godeps/_workspace/src/golang.org/x/sys/unix/ztypes_darwin_amd64.go rename to vendor/golang.org/x/sys/unix/ztypes_darwin_amd64.go diff --git a/Godeps/_workspace/src/golang.org/x/sys/unix/ztypes_darwin_arm.go b/vendor/golang.org/x/sys/unix/ztypes_darwin_arm.go similarity index 100% rename from Godeps/_workspace/src/golang.org/x/sys/unix/ztypes_darwin_arm.go rename to vendor/golang.org/x/sys/unix/ztypes_darwin_arm.go diff --git a/Godeps/_workspace/src/golang.org/x/sys/unix/ztypes_darwin_arm64.go b/vendor/golang.org/x/sys/unix/ztypes_darwin_arm64.go similarity index 100% rename from Godeps/_workspace/src/golang.org/x/sys/unix/ztypes_darwin_arm64.go rename to vendor/golang.org/x/sys/unix/ztypes_darwin_arm64.go diff --git a/Godeps/_workspace/src/golang.org/x/sys/unix/ztypes_dragonfly_386.go b/vendor/golang.org/x/sys/unix/ztypes_dragonfly_386.go similarity index 100% rename from Godeps/_workspace/src/golang.org/x/sys/unix/ztypes_dragonfly_386.go rename to vendor/golang.org/x/sys/unix/ztypes_dragonfly_386.go diff --git a/Godeps/_workspace/src/golang.org/x/sys/unix/ztypes_dragonfly_amd64.go b/vendor/golang.org/x/sys/unix/ztypes_dragonfly_amd64.go similarity index 100% rename from Godeps/_workspace/src/golang.org/x/sys/unix/ztypes_dragonfly_amd64.go rename to vendor/golang.org/x/sys/unix/ztypes_dragonfly_amd64.go diff --git a/Godeps/_workspace/src/golang.org/x/sys/unix/ztypes_freebsd_386.go b/vendor/golang.org/x/sys/unix/ztypes_freebsd_386.go similarity index 100% rename from Godeps/_workspace/src/golang.org/x/sys/unix/ztypes_freebsd_386.go rename to vendor/golang.org/x/sys/unix/ztypes_freebsd_386.go diff --git a/Godeps/_workspace/src/golang.org/x/sys/unix/ztypes_freebsd_amd64.go b/vendor/golang.org/x/sys/unix/ztypes_freebsd_amd64.go similarity index 100% rename from Godeps/_workspace/src/golang.org/x/sys/unix/ztypes_freebsd_amd64.go rename to vendor/golang.org/x/sys/unix/ztypes_freebsd_amd64.go diff --git a/Godeps/_workspace/src/golang.org/x/sys/unix/ztypes_freebsd_arm.go b/vendor/golang.org/x/sys/unix/ztypes_freebsd_arm.go similarity index 100% rename from Godeps/_workspace/src/golang.org/x/sys/unix/ztypes_freebsd_arm.go rename to vendor/golang.org/x/sys/unix/ztypes_freebsd_arm.go diff --git a/Godeps/_workspace/src/golang.org/x/sys/unix/ztypes_linux_386.go b/vendor/golang.org/x/sys/unix/ztypes_linux_386.go similarity index 100% rename from Godeps/_workspace/src/golang.org/x/sys/unix/ztypes_linux_386.go rename to vendor/golang.org/x/sys/unix/ztypes_linux_386.go diff --git a/Godeps/_workspace/src/golang.org/x/sys/unix/ztypes_linux_amd64.go b/vendor/golang.org/x/sys/unix/ztypes_linux_amd64.go similarity index 100% rename from Godeps/_workspace/src/golang.org/x/sys/unix/ztypes_linux_amd64.go rename to vendor/golang.org/x/sys/unix/ztypes_linux_amd64.go diff --git a/Godeps/_workspace/src/golang.org/x/sys/unix/ztypes_linux_arm.go b/vendor/golang.org/x/sys/unix/ztypes_linux_arm.go similarity index 100% rename from Godeps/_workspace/src/golang.org/x/sys/unix/ztypes_linux_arm.go rename to vendor/golang.org/x/sys/unix/ztypes_linux_arm.go diff --git a/Godeps/_workspace/src/golang.org/x/sys/unix/ztypes_linux_arm64.go b/vendor/golang.org/x/sys/unix/ztypes_linux_arm64.go similarity index 100% rename from Godeps/_workspace/src/golang.org/x/sys/unix/ztypes_linux_arm64.go rename to vendor/golang.org/x/sys/unix/ztypes_linux_arm64.go diff --git a/Godeps/_workspace/src/golang.org/x/sys/unix/ztypes_linux_ppc64.go b/vendor/golang.org/x/sys/unix/ztypes_linux_ppc64.go similarity index 100% rename from Godeps/_workspace/src/golang.org/x/sys/unix/ztypes_linux_ppc64.go rename to vendor/golang.org/x/sys/unix/ztypes_linux_ppc64.go diff --git a/Godeps/_workspace/src/golang.org/x/sys/unix/ztypes_linux_ppc64le.go b/vendor/golang.org/x/sys/unix/ztypes_linux_ppc64le.go similarity index 100% rename from Godeps/_workspace/src/golang.org/x/sys/unix/ztypes_linux_ppc64le.go rename to vendor/golang.org/x/sys/unix/ztypes_linux_ppc64le.go diff --git a/Godeps/_workspace/src/golang.org/x/sys/unix/ztypes_netbsd_386.go b/vendor/golang.org/x/sys/unix/ztypes_netbsd_386.go similarity index 100% rename from Godeps/_workspace/src/golang.org/x/sys/unix/ztypes_netbsd_386.go rename to vendor/golang.org/x/sys/unix/ztypes_netbsd_386.go diff --git a/Godeps/_workspace/src/golang.org/x/sys/unix/ztypes_netbsd_amd64.go b/vendor/golang.org/x/sys/unix/ztypes_netbsd_amd64.go similarity index 100% rename from Godeps/_workspace/src/golang.org/x/sys/unix/ztypes_netbsd_amd64.go rename to vendor/golang.org/x/sys/unix/ztypes_netbsd_amd64.go diff --git a/Godeps/_workspace/src/golang.org/x/sys/unix/ztypes_netbsd_arm.go b/vendor/golang.org/x/sys/unix/ztypes_netbsd_arm.go similarity index 100% rename from Godeps/_workspace/src/golang.org/x/sys/unix/ztypes_netbsd_arm.go rename to vendor/golang.org/x/sys/unix/ztypes_netbsd_arm.go diff --git a/Godeps/_workspace/src/golang.org/x/sys/unix/ztypes_openbsd_386.go b/vendor/golang.org/x/sys/unix/ztypes_openbsd_386.go similarity index 100% rename from Godeps/_workspace/src/golang.org/x/sys/unix/ztypes_openbsd_386.go rename to vendor/golang.org/x/sys/unix/ztypes_openbsd_386.go diff --git a/Godeps/_workspace/src/golang.org/x/sys/unix/ztypes_openbsd_amd64.go b/vendor/golang.org/x/sys/unix/ztypes_openbsd_amd64.go similarity index 100% rename from Godeps/_workspace/src/golang.org/x/sys/unix/ztypes_openbsd_amd64.go rename to vendor/golang.org/x/sys/unix/ztypes_openbsd_amd64.go diff --git a/Godeps/_workspace/src/golang.org/x/sys/unix/ztypes_solaris_amd64.go b/vendor/golang.org/x/sys/unix/ztypes_solaris_amd64.go similarity index 100% rename from Godeps/_workspace/src/golang.org/x/sys/unix/ztypes_solaris_amd64.go rename to vendor/golang.org/x/sys/unix/ztypes_solaris_amd64.go