diff --git a/.gitignore b/.gitignore index afc8b2285..f037d684e 100644 --- a/.gitignore +++ b/.gitignore @@ -1,8 +1,2 @@ -/.gopath -/restic -/restic.debug -/dirdiff -cmd/dirdiff/dirdiff -cmd/gentestdata/gentestdata -cmd/restic/restic -/.vagrant +/pkg +/bin diff --git a/Godeps/Godeps.json b/Godeps/Godeps.json deleted file mode 100644 index 9b36036ab..000000000 --- a/Godeps/Godeps.json +++ /dev/null @@ -1,59 +0,0 @@ -{ - "ImportPath": "github.com/restic/restic", - "GoVersion": "go1.5", - "Packages": [ - "./..." - ], - "Deps": [ - { - "ImportPath": "bazil.org/fuse", - "Rev": "18419ee53958df28fcfc9490fe6123bd59e237bb" - }, - { - "ImportPath": "github.com/jessevdk/go-flags", - "Comment": "v1-297-g1b89bf7", - "Rev": "1b89bf73cd2c3a911d7b2a279ab085c4a18cf539" - }, - { - "ImportPath": "github.com/juju/errors", - "Rev": "4567a5e69fd3130ca0d89f69478e7ac025b67452" - }, - { - "ImportPath": "github.com/kr/fs", - "Rev": "2788f0dbd16903de03cb8186e5c7d97b69ad387b" - }, - { - "ImportPath": "github.com/minio/minio-go", - "Comment": "v0.2.5-251-ga4cd3ca", - "Rev": "a4cd3caabd5f9c35ac100110eb60c2b80798f1af" - }, - { - "ImportPath": "github.com/pkg/sftp", - "Rev": "e84cc8c755ca39b7b64f510fe1fffc1b51f210a5" - }, - { - "ImportPath": "github.com/restic/chunker", - "Rev": "fc45043175c38d59374024a38fb7123c40a64f20" - }, - { - "ImportPath": "golang.org/x/crypto/pbkdf2", - "Rev": "cc04154d65fb9296747569b107cfd05380b1ea3e" - }, - { - "ImportPath": "golang.org/x/crypto/poly1305", - "Rev": "cc04154d65fb9296747569b107cfd05380b1ea3e" - }, - { - "ImportPath": "golang.org/x/crypto/scrypt", - "Rev": "cc04154d65fb9296747569b107cfd05380b1ea3e" - }, - { - "ImportPath": "golang.org/x/crypto/ssh", - "Rev": "cc04154d65fb9296747569b107cfd05380b1ea3e" - }, - { - "ImportPath": "golang.org/x/net/context", - "Rev": "7654728e381988afd88e58cabfd6363a5ea91810" - } - ] -} diff --git a/Godeps/Readme b/Godeps/Readme deleted file mode 100644 index 4cdaa53d5..000000000 --- a/Godeps/Readme +++ /dev/null @@ -1,5 +0,0 @@ -This directory tree is generated automatically by godep. - -Please do not edit. - -See https://github.com/tools/godep for more information. diff --git a/Godeps/_workspace/.gitignore b/Godeps/_workspace/.gitignore deleted file mode 100644 index f037d684e..000000000 --- a/Godeps/_workspace/.gitignore +++ /dev/null @@ -1,2 +0,0 @@ -/pkg -/bin diff --git a/.hound.yml b/src/github.com/restic/restic/.hound.yml similarity index 100% rename from .hound.yml rename to src/github.com/restic/restic/.hound.yml diff --git a/.travis.yml b/src/github.com/restic/restic/.travis.yml similarity index 100% rename from .travis.yml rename to src/github.com/restic/restic/.travis.yml diff --git a/CONTRIBUTING.md b/src/github.com/restic/restic/CONTRIBUTING.md similarity index 100% rename from CONTRIBUTING.md rename to src/github.com/restic/restic/CONTRIBUTING.md diff --git a/Dockerfile b/src/github.com/restic/restic/Dockerfile similarity index 100% rename from Dockerfile rename to src/github.com/restic/restic/Dockerfile diff --git a/Godeps/_workspace/src/github.com/restic/chunker/LICENSE b/src/github.com/restic/restic/LICENSE similarity index 100% rename from Godeps/_workspace/src/github.com/restic/chunker/LICENSE rename to src/github.com/restic/restic/LICENSE diff --git a/Makefile b/src/github.com/restic/restic/Makefile similarity index 100% rename from Makefile rename to src/github.com/restic/restic/Makefile diff --git a/README.md b/src/github.com/restic/restic/README.md similarity index 100% rename from README.md rename to src/github.com/restic/restic/README.md diff --git a/VERSION b/src/github.com/restic/restic/VERSION similarity index 100% rename from VERSION rename to src/github.com/restic/restic/VERSION diff --git a/Vagrantfile b/src/github.com/restic/restic/Vagrantfile similarity index 100% rename from Vagrantfile rename to src/github.com/restic/restic/Vagrantfile diff --git a/appveyor.yml b/src/github.com/restic/restic/appveyor.yml similarity index 100% rename from appveyor.yml rename to src/github.com/restic/restic/appveyor.yml diff --git a/archiver.go b/src/github.com/restic/restic/archiver.go similarity index 100% rename from archiver.go rename to src/github.com/restic/restic/archiver.go diff --git a/archiver_duplication_test.go b/src/github.com/restic/restic/archiver_duplication_test.go similarity index 100% rename from archiver_duplication_test.go rename to src/github.com/restic/restic/archiver_duplication_test.go diff --git a/archiver_int_test.go b/src/github.com/restic/restic/archiver_int_test.go similarity index 100% rename from archiver_int_test.go rename to src/github.com/restic/restic/archiver_int_test.go diff --git a/archiver_test.go b/src/github.com/restic/restic/archiver_test.go similarity index 100% rename from archiver_test.go rename to src/github.com/restic/restic/archiver_test.go diff --git a/backend/doc.go b/src/github.com/restic/restic/backend/doc.go similarity index 100% rename from backend/doc.go rename to src/github.com/restic/restic/backend/doc.go diff --git a/backend/generic.go b/src/github.com/restic/restic/backend/generic.go similarity index 100% rename from backend/generic.go rename to src/github.com/restic/restic/backend/generic.go diff --git a/backend/generic_test.go b/src/github.com/restic/restic/backend/generic_test.go similarity index 100% rename from backend/generic_test.go rename to src/github.com/restic/restic/backend/generic_test.go diff --git a/backend/handle.go b/src/github.com/restic/restic/backend/handle.go similarity index 100% rename from backend/handle.go rename to src/github.com/restic/restic/backend/handle.go diff --git a/backend/handle_test.go b/src/github.com/restic/restic/backend/handle_test.go similarity index 100% rename from backend/handle_test.go rename to src/github.com/restic/restic/backend/handle_test.go diff --git a/backend/id.go b/src/github.com/restic/restic/backend/id.go similarity index 100% rename from backend/id.go rename to src/github.com/restic/restic/backend/id.go diff --git a/backend/id_int_test.go b/src/github.com/restic/restic/backend/id_int_test.go similarity index 100% rename from backend/id_int_test.go rename to src/github.com/restic/restic/backend/id_int_test.go diff --git a/backend/id_test.go b/src/github.com/restic/restic/backend/id_test.go similarity index 100% rename from backend/id_test.go rename to src/github.com/restic/restic/backend/id_test.go diff --git a/backend/ids.go b/src/github.com/restic/restic/backend/ids.go similarity index 100% rename from backend/ids.go rename to src/github.com/restic/restic/backend/ids.go diff --git a/backend/ids_test.go b/src/github.com/restic/restic/backend/ids_test.go similarity index 100% rename from backend/ids_test.go rename to src/github.com/restic/restic/backend/ids_test.go diff --git a/backend/idset.go b/src/github.com/restic/restic/backend/idset.go similarity index 100% rename from backend/idset.go rename to src/github.com/restic/restic/backend/idset.go diff --git a/backend/idset_test.go b/src/github.com/restic/restic/backend/idset_test.go similarity index 100% rename from backend/idset_test.go rename to src/github.com/restic/restic/backend/idset_test.go diff --git a/backend/interface.go b/src/github.com/restic/restic/backend/interface.go similarity index 100% rename from backend/interface.go rename to src/github.com/restic/restic/backend/interface.go diff --git a/backend/local/backend_test.go b/src/github.com/restic/restic/backend/local/backend_test.go similarity index 100% rename from backend/local/backend_test.go rename to src/github.com/restic/restic/backend/local/backend_test.go diff --git a/backend/local/config.go b/src/github.com/restic/restic/backend/local/config.go similarity index 100% rename from backend/local/config.go rename to src/github.com/restic/restic/backend/local/config.go diff --git a/backend/local/doc.go b/src/github.com/restic/restic/backend/local/doc.go similarity index 100% rename from backend/local/doc.go rename to src/github.com/restic/restic/backend/local/doc.go diff --git a/backend/local/local.go b/src/github.com/restic/restic/backend/local/local.go similarity index 100% rename from backend/local/local.go rename to src/github.com/restic/restic/backend/local/local.go diff --git a/backend/local/local_test.go b/src/github.com/restic/restic/backend/local/local_test.go similarity index 100% rename from backend/local/local_test.go rename to src/github.com/restic/restic/backend/local/local_test.go diff --git a/backend/local/local_unix.go b/src/github.com/restic/restic/backend/local/local_unix.go similarity index 100% rename from backend/local/local_unix.go rename to src/github.com/restic/restic/backend/local/local_unix.go diff --git a/backend/local/local_windows.go b/src/github.com/restic/restic/backend/local/local_windows.go similarity index 100% rename from backend/local/local_windows.go rename to src/github.com/restic/restic/backend/local/local_windows.go diff --git a/backend/mem/backend_test.go b/src/github.com/restic/restic/backend/mem/backend_test.go similarity index 100% rename from backend/mem/backend_test.go rename to src/github.com/restic/restic/backend/mem/backend_test.go diff --git a/backend/mem/mem_backend.go b/src/github.com/restic/restic/backend/mem/mem_backend.go similarity index 100% rename from backend/mem/mem_backend.go rename to src/github.com/restic/restic/backend/mem/mem_backend.go diff --git a/backend/mem/mem_backend_test.go b/src/github.com/restic/restic/backend/mem/mem_backend_test.go similarity index 100% rename from backend/mem/mem_backend_test.go rename to src/github.com/restic/restic/backend/mem/mem_backend_test.go diff --git a/backend/mock_backend.go b/src/github.com/restic/restic/backend/mock_backend.go similarity index 100% rename from backend/mock_backend.go rename to src/github.com/restic/restic/backend/mock_backend.go diff --git a/backend/paths.go b/src/github.com/restic/restic/backend/paths.go similarity index 100% rename from backend/paths.go rename to src/github.com/restic/restic/backend/paths.go diff --git a/backend/s3/backend_test.go b/src/github.com/restic/restic/backend/s3/backend_test.go similarity index 100% rename from backend/s3/backend_test.go rename to src/github.com/restic/restic/backend/s3/backend_test.go diff --git a/backend/s3/config.go b/src/github.com/restic/restic/backend/s3/config.go similarity index 100% rename from backend/s3/config.go rename to src/github.com/restic/restic/backend/s3/config.go diff --git a/backend/s3/config_test.go b/src/github.com/restic/restic/backend/s3/config_test.go similarity index 100% rename from backend/s3/config_test.go rename to src/github.com/restic/restic/backend/s3/config_test.go diff --git a/backend/s3/s3.go b/src/github.com/restic/restic/backend/s3/s3.go similarity index 100% rename from backend/s3/s3.go rename to src/github.com/restic/restic/backend/s3/s3.go diff --git a/backend/s3/s3_test.go b/src/github.com/restic/restic/backend/s3/s3_test.go similarity index 100% rename from backend/s3/s3_test.go rename to src/github.com/restic/restic/backend/s3/s3_test.go diff --git a/backend/sftp/backend_test.go b/src/github.com/restic/restic/backend/sftp/backend_test.go similarity index 100% rename from backend/sftp/backend_test.go rename to src/github.com/restic/restic/backend/sftp/backend_test.go diff --git a/backend/sftp/config.go b/src/github.com/restic/restic/backend/sftp/config.go similarity index 100% rename from backend/sftp/config.go rename to src/github.com/restic/restic/backend/sftp/config.go diff --git a/backend/sftp/config_test.go b/src/github.com/restic/restic/backend/sftp/config_test.go similarity index 100% rename from backend/sftp/config_test.go rename to src/github.com/restic/restic/backend/sftp/config_test.go diff --git a/backend/sftp/doc.go b/src/github.com/restic/restic/backend/sftp/doc.go similarity index 100% rename from backend/sftp/doc.go rename to src/github.com/restic/restic/backend/sftp/doc.go diff --git a/backend/sftp/sftp.go b/src/github.com/restic/restic/backend/sftp/sftp.go similarity index 100% rename from backend/sftp/sftp.go rename to src/github.com/restic/restic/backend/sftp/sftp.go diff --git a/backend/sftp/sftp_backend_test.go b/src/github.com/restic/restic/backend/sftp/sftp_backend_test.go similarity index 100% rename from backend/sftp/sftp_backend_test.go rename to src/github.com/restic/restic/backend/sftp/sftp_backend_test.go diff --git a/backend/sftp/sftp_unix.go b/src/github.com/restic/restic/backend/sftp/sftp_unix.go similarity index 100% rename from backend/sftp/sftp_unix.go rename to src/github.com/restic/restic/backend/sftp/sftp_unix.go diff --git a/backend/sftp/sftp_windows.go b/src/github.com/restic/restic/backend/sftp/sftp_windows.go similarity index 100% rename from backend/sftp/sftp_windows.go rename to src/github.com/restic/restic/backend/sftp/sftp_windows.go diff --git a/backend/test/backend_test.go b/src/github.com/restic/restic/backend/test/backend_test.go similarity index 100% rename from backend/test/backend_test.go rename to src/github.com/restic/restic/backend/test/backend_test.go diff --git a/backend/test/generate_backend_tests.go b/src/github.com/restic/restic/backend/test/generate_backend_tests.go similarity index 100% rename from backend/test/generate_backend_tests.go rename to src/github.com/restic/restic/backend/test/generate_backend_tests.go diff --git a/backend/test/tests.go b/src/github.com/restic/restic/backend/test/tests.go similarity index 100% rename from backend/test/tests.go rename to src/github.com/restic/restic/backend/test/tests.go diff --git a/backend/test/tests_test.go b/src/github.com/restic/restic/backend/test/tests_test.go similarity index 100% rename from backend/test/tests_test.go rename to src/github.com/restic/restic/backend/test/tests_test.go diff --git a/backend/utils.go b/src/github.com/restic/restic/backend/utils.go similarity index 100% rename from backend/utils.go rename to src/github.com/restic/restic/backend/utils.go diff --git a/backend/utils_test.go b/src/github.com/restic/restic/backend/utils_test.go similarity index 100% rename from backend/utils_test.go rename to src/github.com/restic/restic/backend/utils_test.go diff --git a/build.go b/src/github.com/restic/restic/build.go similarity index 100% rename from build.go rename to src/github.com/restic/restic/build.go diff --git a/cache.go b/src/github.com/restic/restic/cache.go similarity index 100% rename from cache.go rename to src/github.com/restic/restic/cache.go diff --git a/cache_test.go b/src/github.com/restic/restic/cache_test.go similarity index 100% rename from cache_test.go rename to src/github.com/restic/restic/cache_test.go diff --git a/checker/checker.go b/src/github.com/restic/restic/checker/checker.go similarity index 100% rename from checker/checker.go rename to src/github.com/restic/restic/checker/checker.go diff --git a/checker/checker_test.go b/src/github.com/restic/restic/checker/checker_test.go similarity index 100% rename from checker/checker_test.go rename to src/github.com/restic/restic/checker/checker_test.go diff --git a/checker/repacker.go b/src/github.com/restic/restic/checker/repacker.go similarity index 100% rename from checker/repacker.go rename to src/github.com/restic/restic/checker/repacker.go diff --git a/checker/repacker_test.go b/src/github.com/restic/restic/checker/repacker_test.go similarity index 100% rename from checker/repacker_test.go rename to src/github.com/restic/restic/checker/repacker_test.go diff --git a/checker/testdata/checker-test-repo.tar.gz b/src/github.com/restic/restic/checker/testdata/checker-test-repo.tar.gz similarity index 100% rename from checker/testdata/checker-test-repo.tar.gz rename to src/github.com/restic/restic/checker/testdata/checker-test-repo.tar.gz diff --git a/checker/testdata/duplicate-packs-in-index-test-repo.tar.gz b/src/github.com/restic/restic/checker/testdata/duplicate-packs-in-index-test-repo.tar.gz similarity index 100% rename from checker/testdata/duplicate-packs-in-index-test-repo.tar.gz rename to src/github.com/restic/restic/checker/testdata/duplicate-packs-in-index-test-repo.tar.gz diff --git a/cmd/restic/.gitignore b/src/github.com/restic/restic/cmd/restic/.gitignore similarity index 100% rename from cmd/restic/.gitignore rename to src/github.com/restic/restic/cmd/restic/.gitignore diff --git a/cmd/restic/cleanup.go b/src/github.com/restic/restic/cmd/restic/cleanup.go similarity index 100% rename from cmd/restic/cleanup.go rename to src/github.com/restic/restic/cmd/restic/cleanup.go diff --git a/cmd/restic/cmd_backup.go b/src/github.com/restic/restic/cmd/restic/cmd_backup.go similarity index 100% rename from cmd/restic/cmd_backup.go rename to src/github.com/restic/restic/cmd/restic/cmd_backup.go diff --git a/cmd/restic/cmd_cache.go b/src/github.com/restic/restic/cmd/restic/cmd_cache.go similarity index 100% rename from cmd/restic/cmd_cache.go rename to src/github.com/restic/restic/cmd/restic/cmd_cache.go diff --git a/cmd/restic/cmd_cat.go b/src/github.com/restic/restic/cmd/restic/cmd_cat.go similarity index 100% rename from cmd/restic/cmd_cat.go rename to src/github.com/restic/restic/cmd/restic/cmd_cat.go diff --git a/cmd/restic/cmd_check.go b/src/github.com/restic/restic/cmd/restic/cmd_check.go similarity index 100% rename from cmd/restic/cmd_check.go rename to src/github.com/restic/restic/cmd/restic/cmd_check.go diff --git a/cmd/restic/cmd_dump.go b/src/github.com/restic/restic/cmd/restic/cmd_dump.go similarity index 100% rename from cmd/restic/cmd_dump.go rename to src/github.com/restic/restic/cmd/restic/cmd_dump.go diff --git a/cmd/restic/cmd_find.go b/src/github.com/restic/restic/cmd/restic/cmd_find.go similarity index 100% rename from cmd/restic/cmd_find.go rename to src/github.com/restic/restic/cmd/restic/cmd_find.go diff --git a/cmd/restic/cmd_init.go b/src/github.com/restic/restic/cmd/restic/cmd_init.go similarity index 100% rename from cmd/restic/cmd_init.go rename to src/github.com/restic/restic/cmd/restic/cmd_init.go diff --git a/cmd/restic/cmd_key.go b/src/github.com/restic/restic/cmd/restic/cmd_key.go similarity index 100% rename from cmd/restic/cmd_key.go rename to src/github.com/restic/restic/cmd/restic/cmd_key.go diff --git a/cmd/restic/cmd_list.go b/src/github.com/restic/restic/cmd/restic/cmd_list.go similarity index 100% rename from cmd/restic/cmd_list.go rename to src/github.com/restic/restic/cmd/restic/cmd_list.go diff --git a/cmd/restic/cmd_ls.go b/src/github.com/restic/restic/cmd/restic/cmd_ls.go similarity index 100% rename from cmd/restic/cmd_ls.go rename to src/github.com/restic/restic/cmd/restic/cmd_ls.go diff --git a/cmd/restic/cmd_mount.go b/src/github.com/restic/restic/cmd/restic/cmd_mount.go similarity index 100% rename from cmd/restic/cmd_mount.go rename to src/github.com/restic/restic/cmd/restic/cmd_mount.go diff --git a/cmd/restic/cmd_optimize.go b/src/github.com/restic/restic/cmd/restic/cmd_optimize.go similarity index 100% rename from cmd/restic/cmd_optimize.go rename to src/github.com/restic/restic/cmd/restic/cmd_optimize.go diff --git a/cmd/restic/cmd_rebuild_index.go b/src/github.com/restic/restic/cmd/restic/cmd_rebuild_index.go similarity index 100% rename from cmd/restic/cmd_rebuild_index.go rename to src/github.com/restic/restic/cmd/restic/cmd_rebuild_index.go diff --git a/cmd/restic/cmd_restore.go b/src/github.com/restic/restic/cmd/restic/cmd_restore.go similarity index 100% rename from cmd/restic/cmd_restore.go rename to src/github.com/restic/restic/cmd/restic/cmd_restore.go diff --git a/cmd/restic/cmd_snapshots.go b/src/github.com/restic/restic/cmd/restic/cmd_snapshots.go similarity index 100% rename from cmd/restic/cmd_snapshots.go rename to src/github.com/restic/restic/cmd/restic/cmd_snapshots.go diff --git a/cmd/restic/cmd_unlock.go b/src/github.com/restic/restic/cmd/restic/cmd_unlock.go similarity index 100% rename from cmd/restic/cmd_unlock.go rename to src/github.com/restic/restic/cmd/restic/cmd_unlock.go diff --git a/cmd/restic/cmd_version.go b/src/github.com/restic/restic/cmd/restic/cmd_version.go similarity index 100% rename from cmd/restic/cmd_version.go rename to src/github.com/restic/restic/cmd/restic/cmd_version.go diff --git a/cmd/restic/doc.go b/src/github.com/restic/restic/cmd/restic/doc.go similarity index 100% rename from cmd/restic/doc.go rename to src/github.com/restic/restic/cmd/restic/doc.go diff --git a/cmd/restic/global.go b/src/github.com/restic/restic/cmd/restic/global.go similarity index 100% rename from cmd/restic/global.go rename to src/github.com/restic/restic/cmd/restic/global.go diff --git a/cmd/restic/integration_fuse_test.go b/src/github.com/restic/restic/cmd/restic/integration_fuse_test.go similarity index 100% rename from cmd/restic/integration_fuse_test.go rename to src/github.com/restic/restic/cmd/restic/integration_fuse_test.go diff --git a/cmd/restic/integration_helpers_test.go b/src/github.com/restic/restic/cmd/restic/integration_helpers_test.go similarity index 100% rename from cmd/restic/integration_helpers_test.go rename to src/github.com/restic/restic/cmd/restic/integration_helpers_test.go diff --git a/cmd/restic/integration_helpers_unix_test.go b/src/github.com/restic/restic/cmd/restic/integration_helpers_unix_test.go similarity index 100% rename from cmd/restic/integration_helpers_unix_test.go rename to src/github.com/restic/restic/cmd/restic/integration_helpers_unix_test.go diff --git a/cmd/restic/integration_helpers_windows_test.go b/src/github.com/restic/restic/cmd/restic/integration_helpers_windows_test.go similarity index 100% rename from cmd/restic/integration_helpers_windows_test.go rename to src/github.com/restic/restic/cmd/restic/integration_helpers_windows_test.go diff --git a/cmd/restic/integration_test.go b/src/github.com/restic/restic/cmd/restic/integration_test.go similarity index 100% rename from cmd/restic/integration_test.go rename to src/github.com/restic/restic/cmd/restic/integration_test.go diff --git a/cmd/restic/lock.go b/src/github.com/restic/restic/cmd/restic/lock.go similarity index 100% rename from cmd/restic/lock.go rename to src/github.com/restic/restic/cmd/restic/lock.go diff --git a/cmd/restic/main.go b/src/github.com/restic/restic/cmd/restic/main.go similarity index 100% rename from cmd/restic/main.go rename to src/github.com/restic/restic/cmd/restic/main.go diff --git a/cmd/restic/testdata/backup-data.tar.gz b/src/github.com/restic/restic/cmd/restic/testdata/backup-data.tar.gz similarity index 100% rename from cmd/restic/testdata/backup-data.tar.gz rename to src/github.com/restic/restic/cmd/restic/testdata/backup-data.tar.gz diff --git a/cmd/restic/testdata/old-index-repo.tar.gz b/src/github.com/restic/restic/cmd/restic/testdata/old-index-repo.tar.gz similarity index 100% rename from cmd/restic/testdata/old-index-repo.tar.gz rename to src/github.com/restic/restic/cmd/restic/testdata/old-index-repo.tar.gz diff --git a/cmd/restic/testdata/repo-restore-permissions-test.tar.gz b/src/github.com/restic/restic/cmd/restic/testdata/repo-restore-permissions-test.tar.gz similarity index 100% rename from cmd/restic/testdata/repo-restore-permissions-test.tar.gz rename to src/github.com/restic/restic/cmd/restic/testdata/repo-restore-permissions-test.tar.gz diff --git a/cmd/restic/testdata/small-repo.tar.gz b/src/github.com/restic/restic/cmd/restic/testdata/small-repo.tar.gz similarity index 100% rename from cmd/restic/testdata/small-repo.tar.gz rename to src/github.com/restic/restic/cmd/restic/testdata/small-repo.tar.gz diff --git a/crypto/buffer_pool.go b/src/github.com/restic/restic/crypto/buffer_pool.go similarity index 100% rename from crypto/buffer_pool.go rename to src/github.com/restic/restic/crypto/buffer_pool.go diff --git a/crypto/crypto.go b/src/github.com/restic/restic/crypto/crypto.go similarity index 100% rename from crypto/crypto.go rename to src/github.com/restic/restic/crypto/crypto.go diff --git a/crypto/crypto_int_test.go b/src/github.com/restic/restic/crypto/crypto_int_test.go similarity index 100% rename from crypto/crypto_int_test.go rename to src/github.com/restic/restic/crypto/crypto_int_test.go diff --git a/crypto/crypto_test.go b/src/github.com/restic/restic/crypto/crypto_test.go similarity index 100% rename from crypto/crypto_test.go rename to src/github.com/restic/restic/crypto/crypto_test.go diff --git a/crypto/doc.go b/src/github.com/restic/restic/crypto/doc.go similarity index 100% rename from crypto/doc.go rename to src/github.com/restic/restic/crypto/doc.go diff --git a/crypto/reader.go b/src/github.com/restic/restic/crypto/reader.go similarity index 100% rename from crypto/reader.go rename to src/github.com/restic/restic/crypto/reader.go diff --git a/crypto/writer.go b/src/github.com/restic/restic/crypto/writer.go similarity index 100% rename from crypto/writer.go rename to src/github.com/restic/restic/crypto/writer.go diff --git a/debug/debug.go b/src/github.com/restic/restic/debug/debug.go similarity index 100% rename from debug/debug.go rename to src/github.com/restic/restic/debug/debug.go diff --git a/debug/debug_release.go b/src/github.com/restic/restic/debug/debug_release.go similarity index 100% rename from debug/debug_release.go rename to src/github.com/restic/restic/debug/debug_release.go diff --git a/debug/doc.go b/src/github.com/restic/restic/debug/doc.go similarity index 100% rename from debug/doc.go rename to src/github.com/restic/restic/debug/doc.go diff --git a/debug/hooks.go b/src/github.com/restic/restic/debug/hooks.go similarity index 100% rename from debug/hooks.go rename to src/github.com/restic/restic/debug/hooks.go diff --git a/debug/hooks_release.go b/src/github.com/restic/restic/debug/hooks_release.go similarity index 100% rename from debug/hooks_release.go rename to src/github.com/restic/restic/debug/hooks_release.go diff --git a/doc.go b/src/github.com/restic/restic/doc.go similarity index 100% rename from doc.go rename to src/github.com/restic/restic/doc.go diff --git a/doc/Design.md b/src/github.com/restic/restic/doc/Design.md similarity index 100% rename from doc/Design.md rename to src/github.com/restic/restic/doc/Design.md diff --git a/doc/PKGBUILD b/src/github.com/restic/restic/doc/PKGBUILD similarity index 100% rename from doc/PKGBUILD rename to src/github.com/restic/restic/doc/PKGBUILD diff --git a/doc/logo/font/Lemon-Regular.ttf b/src/github.com/restic/restic/doc/logo/font/Lemon-Regular.ttf similarity index 100% rename from doc/logo/font/Lemon-Regular.ttf rename to src/github.com/restic/restic/doc/logo/font/Lemon-Regular.ttf diff --git a/doc/logo/font/OFL.txt b/src/github.com/restic/restic/doc/logo/font/OFL.txt similarity index 100% rename from doc/logo/font/OFL.txt rename to src/github.com/restic/restic/doc/logo/font/OFL.txt diff --git a/doc/logo/logo.png b/src/github.com/restic/restic/doc/logo/logo.png similarity index 100% rename from doc/logo/logo.png rename to src/github.com/restic/restic/doc/logo/logo.png diff --git a/doc/logo/logo.svg b/src/github.com/restic/restic/doc/logo/logo.svg similarity index 100% rename from doc/logo/logo.svg rename to src/github.com/restic/restic/doc/logo/logo.svg diff --git a/doc/structure.svg b/src/github.com/restic/restic/doc/structure.svg similarity index 100% rename from doc/structure.svg rename to src/github.com/restic/restic/doc/structure.svg diff --git a/doc/test_irreducibility.gap b/src/github.com/restic/restic/doc/test_irreducibility.gap similarity index 100% rename from doc/test_irreducibility.gap rename to src/github.com/restic/restic/doc/test_irreducibility.gap diff --git a/filter/doc.go b/src/github.com/restic/restic/filter/doc.go similarity index 100% rename from filter/doc.go rename to src/github.com/restic/restic/filter/doc.go diff --git a/filter/filter.go b/src/github.com/restic/restic/filter/filter.go similarity index 100% rename from filter/filter.go rename to src/github.com/restic/restic/filter/filter.go diff --git a/filter/filter_test.go b/src/github.com/restic/restic/filter/filter_test.go similarity index 100% rename from filter/filter_test.go rename to src/github.com/restic/restic/filter/filter_test.go diff --git a/filter/testdata/libreoffice.txt.bz2 b/src/github.com/restic/restic/filter/testdata/libreoffice.txt.bz2 similarity index 100% rename from filter/testdata/libreoffice.txt.bz2 rename to src/github.com/restic/restic/filter/testdata/libreoffice.txt.bz2 diff --git a/fuse/dir.go b/src/github.com/restic/restic/fuse/dir.go similarity index 100% rename from fuse/dir.go rename to src/github.com/restic/restic/fuse/dir.go diff --git a/fuse/file.go b/src/github.com/restic/restic/fuse/file.go similarity index 100% rename from fuse/file.go rename to src/github.com/restic/restic/fuse/file.go diff --git a/fuse/file_test.go b/src/github.com/restic/restic/fuse/file_test.go similarity index 100% rename from fuse/file_test.go rename to src/github.com/restic/restic/fuse/file_test.go diff --git a/fuse/fuse.go b/src/github.com/restic/restic/fuse/fuse.go similarity index 100% rename from fuse/fuse.go rename to src/github.com/restic/restic/fuse/fuse.go diff --git a/fuse/link.go b/src/github.com/restic/restic/fuse/link.go similarity index 100% rename from fuse/link.go rename to src/github.com/restic/restic/fuse/link.go diff --git a/fuse/snapshot.go b/src/github.com/restic/restic/fuse/snapshot.go similarity index 100% rename from fuse/snapshot.go rename to src/github.com/restic/restic/fuse/snapshot.go diff --git a/location/location.go b/src/github.com/restic/restic/location/location.go similarity index 100% rename from location/location.go rename to src/github.com/restic/restic/location/location.go diff --git a/location/location_test.go b/src/github.com/restic/restic/location/location_test.go similarity index 100% rename from location/location_test.go rename to src/github.com/restic/restic/location/location_test.go diff --git a/lock.go b/src/github.com/restic/restic/lock.go similarity index 100% rename from lock.go rename to src/github.com/restic/restic/lock.go diff --git a/lock_test.go b/src/github.com/restic/restic/lock_test.go similarity index 100% rename from lock_test.go rename to src/github.com/restic/restic/lock_test.go diff --git a/lock_unix.go b/src/github.com/restic/restic/lock_unix.go similarity index 100% rename from lock_unix.go rename to src/github.com/restic/restic/lock_unix.go diff --git a/lock_windows.go b/src/github.com/restic/restic/lock_windows.go similarity index 100% rename from lock_windows.go rename to src/github.com/restic/restic/lock_windows.go diff --git a/node.go b/src/github.com/restic/restic/node.go similarity index 100% rename from node.go rename to src/github.com/restic/restic/node.go diff --git a/node_darwin.go b/src/github.com/restic/restic/node_darwin.go similarity index 100% rename from node_darwin.go rename to src/github.com/restic/restic/node_darwin.go diff --git a/node_freebsd.go b/src/github.com/restic/restic/node_freebsd.go similarity index 100% rename from node_freebsd.go rename to src/github.com/restic/restic/node_freebsd.go diff --git a/node_linux.go b/src/github.com/restic/restic/node_linux.go similarity index 100% rename from node_linux.go rename to src/github.com/restic/restic/node_linux.go diff --git a/node_openbsd.go b/src/github.com/restic/restic/node_openbsd.go similarity index 100% rename from node_openbsd.go rename to src/github.com/restic/restic/node_openbsd.go diff --git a/node_test.go b/src/github.com/restic/restic/node_test.go similarity index 100% rename from node_test.go rename to src/github.com/restic/restic/node_test.go diff --git a/node_unix.go b/src/github.com/restic/restic/node_unix.go similarity index 100% rename from node_unix.go rename to src/github.com/restic/restic/node_unix.go diff --git a/node_windows.go b/src/github.com/restic/restic/node_windows.go similarity index 100% rename from node_windows.go rename to src/github.com/restic/restic/node_windows.go diff --git a/pack/doc.go b/src/github.com/restic/restic/pack/doc.go similarity index 100% rename from pack/doc.go rename to src/github.com/restic/restic/pack/doc.go diff --git a/pack/pack.go b/src/github.com/restic/restic/pack/pack.go similarity index 100% rename from pack/pack.go rename to src/github.com/restic/restic/pack/pack.go diff --git a/pack/pack_test.go b/src/github.com/restic/restic/pack/pack_test.go similarity index 100% rename from pack/pack_test.go rename to src/github.com/restic/restic/pack/pack_test.go diff --git a/pipe/doc.go b/src/github.com/restic/restic/pipe/doc.go similarity index 100% rename from pipe/doc.go rename to src/github.com/restic/restic/pipe/doc.go diff --git a/pipe/pipe.go b/src/github.com/restic/restic/pipe/pipe.go similarity index 100% rename from pipe/pipe.go rename to src/github.com/restic/restic/pipe/pipe.go diff --git a/pipe/pipe_test.go b/src/github.com/restic/restic/pipe/pipe_test.go similarity index 100% rename from pipe/pipe_test.go rename to src/github.com/restic/restic/pipe/pipe_test.go diff --git a/progress.go b/src/github.com/restic/restic/progress.go similarity index 100% rename from progress.go rename to src/github.com/restic/restic/progress.go diff --git a/repository/blob.go b/src/github.com/restic/restic/repository/blob.go similarity index 100% rename from repository/blob.go rename to src/github.com/restic/restic/repository/blob.go diff --git a/repository/config.go b/src/github.com/restic/restic/repository/config.go similarity index 100% rename from repository/config.go rename to src/github.com/restic/restic/repository/config.go diff --git a/repository/config_test.go b/src/github.com/restic/restic/repository/config_test.go similarity index 100% rename from repository/config_test.go rename to src/github.com/restic/restic/repository/config_test.go diff --git a/repository/doc.go b/src/github.com/restic/restic/repository/doc.go similarity index 100% rename from repository/doc.go rename to src/github.com/restic/restic/repository/doc.go diff --git a/repository/index.go b/src/github.com/restic/restic/repository/index.go similarity index 100% rename from repository/index.go rename to src/github.com/restic/restic/repository/index.go diff --git a/repository/index_test.go b/src/github.com/restic/restic/repository/index_test.go similarity index 100% rename from repository/index_test.go rename to src/github.com/restic/restic/repository/index_test.go diff --git a/repository/key.go b/src/github.com/restic/restic/repository/key.go similarity index 100% rename from repository/key.go rename to src/github.com/restic/restic/repository/key.go diff --git a/repository/master_index.go b/src/github.com/restic/restic/repository/master_index.go similarity index 100% rename from repository/master_index.go rename to src/github.com/restic/restic/repository/master_index.go diff --git a/repository/packer_manager.go b/src/github.com/restic/restic/repository/packer_manager.go similarity index 100% rename from repository/packer_manager.go rename to src/github.com/restic/restic/repository/packer_manager.go diff --git a/repository/parallel.go b/src/github.com/restic/restic/repository/parallel.go similarity index 100% rename from repository/parallel.go rename to src/github.com/restic/restic/repository/parallel.go diff --git a/repository/parallel_test.go b/src/github.com/restic/restic/repository/parallel_test.go similarity index 100% rename from repository/parallel_test.go rename to src/github.com/restic/restic/repository/parallel_test.go diff --git a/repository/pool.go b/src/github.com/restic/restic/repository/pool.go similarity index 100% rename from repository/pool.go rename to src/github.com/restic/restic/repository/pool.go diff --git a/repository/repository.go b/src/github.com/restic/restic/repository/repository.go similarity index 100% rename from repository/repository.go rename to src/github.com/restic/restic/repository/repository.go diff --git a/repository/repository_test.go b/src/github.com/restic/restic/repository/repository_test.go similarity index 100% rename from repository/repository_test.go rename to src/github.com/restic/restic/repository/repository_test.go diff --git a/repository/testdata/test-repo.tar.gz b/src/github.com/restic/restic/repository/testdata/test-repo.tar.gz similarity index 100% rename from repository/testdata/test-repo.tar.gz rename to src/github.com/restic/restic/repository/testdata/test-repo.tar.gz diff --git a/restorer.go b/src/github.com/restic/restic/restorer.go similarity index 100% rename from restorer.go rename to src/github.com/restic/restic/restorer.go diff --git a/run_integration_tests.go b/src/github.com/restic/restic/run_integration_tests.go similarity index 100% rename from run_integration_tests.go rename to src/github.com/restic/restic/run_integration_tests.go diff --git a/snapshot.go b/src/github.com/restic/restic/snapshot.go similarity index 100% rename from snapshot.go rename to src/github.com/restic/restic/snapshot.go diff --git a/snapshot_test.go b/src/github.com/restic/restic/snapshot_test.go similarity index 100% rename from snapshot_test.go rename to src/github.com/restic/restic/snapshot_test.go diff --git a/test/backend.go b/src/github.com/restic/restic/test/backend.go similarity index 100% rename from test/backend.go rename to src/github.com/restic/restic/test/backend.go diff --git a/test/doc.go b/src/github.com/restic/restic/test/doc.go similarity index 100% rename from test/doc.go rename to src/github.com/restic/restic/test/doc.go diff --git a/test/helpers.go b/src/github.com/restic/restic/test/helpers.go similarity index 100% rename from test/helpers.go rename to src/github.com/restic/restic/test/helpers.go diff --git a/testdata/walktree-test-repo.tar.gz b/src/github.com/restic/restic/testdata/walktree-test-repo.tar.gz similarity index 100% rename from testdata/walktree-test-repo.tar.gz rename to src/github.com/restic/restic/testdata/walktree-test-repo.tar.gz diff --git a/tree.go b/src/github.com/restic/restic/tree.go similarity index 100% rename from tree.go rename to src/github.com/restic/restic/tree.go diff --git a/tree_test.go b/src/github.com/restic/restic/tree_test.go similarity index 100% rename from tree_test.go rename to src/github.com/restic/restic/tree_test.go diff --git a/walk.go b/src/github.com/restic/restic/walk.go similarity index 100% rename from walk.go rename to src/github.com/restic/restic/walk.go diff --git a/walk_test.go b/src/github.com/restic/restic/walk_test.go similarity index 100% rename from walk_test.go rename to src/github.com/restic/restic/walk_test.go diff --git a/Godeps/_workspace/src/bazil.org/fuse/.gitattributes b/vendor/src/bazil.org/fuse/.gitattributes similarity index 100% rename from Godeps/_workspace/src/bazil.org/fuse/.gitattributes rename to vendor/src/bazil.org/fuse/.gitattributes diff --git a/Godeps/_workspace/src/bazil.org/fuse/.gitignore b/vendor/src/bazil.org/fuse/.gitignore similarity index 100% rename from Godeps/_workspace/src/bazil.org/fuse/.gitignore rename to vendor/src/bazil.org/fuse/.gitignore diff --git a/Godeps/_workspace/src/bazil.org/fuse/LICENSE b/vendor/src/bazil.org/fuse/LICENSE similarity index 100% rename from Godeps/_workspace/src/bazil.org/fuse/LICENSE rename to vendor/src/bazil.org/fuse/LICENSE diff --git a/Godeps/_workspace/src/bazil.org/fuse/README.md b/vendor/src/bazil.org/fuse/README.md similarity index 100% rename from Godeps/_workspace/src/bazil.org/fuse/README.md rename to vendor/src/bazil.org/fuse/README.md diff --git a/Godeps/_workspace/src/bazil.org/fuse/buffer.go b/vendor/src/bazil.org/fuse/buffer.go similarity index 100% rename from Godeps/_workspace/src/bazil.org/fuse/buffer.go rename to vendor/src/bazil.org/fuse/buffer.go diff --git a/Godeps/_workspace/src/bazil.org/fuse/debug.go b/vendor/src/bazil.org/fuse/debug.go similarity index 100% rename from Godeps/_workspace/src/bazil.org/fuse/debug.go rename to vendor/src/bazil.org/fuse/debug.go diff --git a/Godeps/_workspace/src/bazil.org/fuse/doc/.gitignore b/vendor/src/bazil.org/fuse/doc/.gitignore similarity index 100% rename from Godeps/_workspace/src/bazil.org/fuse/doc/.gitignore rename to vendor/src/bazil.org/fuse/doc/.gitignore diff --git a/Godeps/_workspace/src/bazil.org/fuse/doc/README.md b/vendor/src/bazil.org/fuse/doc/README.md similarity index 100% rename from Godeps/_workspace/src/bazil.org/fuse/doc/README.md rename to vendor/src/bazil.org/fuse/doc/README.md diff --git a/Godeps/_workspace/src/bazil.org/fuse/doc/mount-linux-error-init.seq b/vendor/src/bazil.org/fuse/doc/mount-linux-error-init.seq similarity index 100% rename from Godeps/_workspace/src/bazil.org/fuse/doc/mount-linux-error-init.seq rename to vendor/src/bazil.org/fuse/doc/mount-linux-error-init.seq diff --git a/Godeps/_workspace/src/bazil.org/fuse/doc/mount-linux-error-init.seq.png b/vendor/src/bazil.org/fuse/doc/mount-linux-error-init.seq.png similarity index 100% rename from Godeps/_workspace/src/bazil.org/fuse/doc/mount-linux-error-init.seq.png rename to vendor/src/bazil.org/fuse/doc/mount-linux-error-init.seq.png diff --git a/Godeps/_workspace/src/bazil.org/fuse/doc/mount-linux.seq b/vendor/src/bazil.org/fuse/doc/mount-linux.seq similarity index 100% rename from Godeps/_workspace/src/bazil.org/fuse/doc/mount-linux.seq rename to vendor/src/bazil.org/fuse/doc/mount-linux.seq diff --git a/Godeps/_workspace/src/bazil.org/fuse/doc/mount-linux.seq.png b/vendor/src/bazil.org/fuse/doc/mount-linux.seq.png similarity index 100% rename from Godeps/_workspace/src/bazil.org/fuse/doc/mount-linux.seq.png rename to vendor/src/bazil.org/fuse/doc/mount-linux.seq.png diff --git a/Godeps/_workspace/src/bazil.org/fuse/doc/mount-osx-error-init.seq b/vendor/src/bazil.org/fuse/doc/mount-osx-error-init.seq similarity index 100% rename from Godeps/_workspace/src/bazil.org/fuse/doc/mount-osx-error-init.seq rename to vendor/src/bazil.org/fuse/doc/mount-osx-error-init.seq diff --git a/Godeps/_workspace/src/bazil.org/fuse/doc/mount-osx-error-init.seq.png b/vendor/src/bazil.org/fuse/doc/mount-osx-error-init.seq.png similarity index 100% rename from Godeps/_workspace/src/bazil.org/fuse/doc/mount-osx-error-init.seq.png rename to vendor/src/bazil.org/fuse/doc/mount-osx-error-init.seq.png diff --git a/Godeps/_workspace/src/bazil.org/fuse/doc/mount-osx.seq b/vendor/src/bazil.org/fuse/doc/mount-osx.seq similarity index 100% rename from Godeps/_workspace/src/bazil.org/fuse/doc/mount-osx.seq rename to vendor/src/bazil.org/fuse/doc/mount-osx.seq diff --git a/Godeps/_workspace/src/bazil.org/fuse/doc/mount-osx.seq.png b/vendor/src/bazil.org/fuse/doc/mount-osx.seq.png similarity index 100% rename from Godeps/_workspace/src/bazil.org/fuse/doc/mount-osx.seq.png rename to vendor/src/bazil.org/fuse/doc/mount-osx.seq.png diff --git a/Godeps/_workspace/src/bazil.org/fuse/doc/mount-sequence.md b/vendor/src/bazil.org/fuse/doc/mount-sequence.md similarity index 100% rename from Godeps/_workspace/src/bazil.org/fuse/doc/mount-sequence.md rename to vendor/src/bazil.org/fuse/doc/mount-sequence.md diff --git a/Godeps/_workspace/src/bazil.org/fuse/doc/writing-docs.md b/vendor/src/bazil.org/fuse/doc/writing-docs.md similarity index 100% rename from Godeps/_workspace/src/bazil.org/fuse/doc/writing-docs.md rename to vendor/src/bazil.org/fuse/doc/writing-docs.md diff --git a/Godeps/_workspace/src/bazil.org/fuse/error_darwin.go b/vendor/src/bazil.org/fuse/error_darwin.go similarity index 100% rename from Godeps/_workspace/src/bazil.org/fuse/error_darwin.go rename to vendor/src/bazil.org/fuse/error_darwin.go diff --git a/Godeps/_workspace/src/bazil.org/fuse/error_freebsd.go b/vendor/src/bazil.org/fuse/error_freebsd.go similarity index 100% rename from Godeps/_workspace/src/bazil.org/fuse/error_freebsd.go rename to vendor/src/bazil.org/fuse/error_freebsd.go diff --git a/Godeps/_workspace/src/bazil.org/fuse/error_linux.go b/vendor/src/bazil.org/fuse/error_linux.go similarity index 100% rename from Godeps/_workspace/src/bazil.org/fuse/error_linux.go rename to vendor/src/bazil.org/fuse/error_linux.go diff --git a/Godeps/_workspace/src/bazil.org/fuse/error_std.go b/vendor/src/bazil.org/fuse/error_std.go similarity index 100% rename from Godeps/_workspace/src/bazil.org/fuse/error_std.go rename to vendor/src/bazil.org/fuse/error_std.go diff --git a/Godeps/_workspace/src/bazil.org/fuse/examples/clockfs/clockfs.go b/vendor/src/bazil.org/fuse/examples/clockfs/clockfs.go similarity index 100% rename from Godeps/_workspace/src/bazil.org/fuse/examples/clockfs/clockfs.go rename to vendor/src/bazil.org/fuse/examples/clockfs/clockfs.go diff --git a/Godeps/_workspace/src/bazil.org/fuse/examples/hellofs/hello.go b/vendor/src/bazil.org/fuse/examples/hellofs/hello.go similarity index 100% rename from Godeps/_workspace/src/bazil.org/fuse/examples/hellofs/hello.go rename to vendor/src/bazil.org/fuse/examples/hellofs/hello.go diff --git a/Godeps/_workspace/src/bazil.org/fuse/fs/bench/bench_test.go b/vendor/src/bazil.org/fuse/fs/bench/bench_test.go similarity index 100% rename from Godeps/_workspace/src/bazil.org/fuse/fs/bench/bench_test.go rename to vendor/src/bazil.org/fuse/fs/bench/bench_test.go diff --git a/Godeps/_workspace/src/bazil.org/fuse/fs/bench/doc.go b/vendor/src/bazil.org/fuse/fs/bench/doc.go similarity index 100% rename from Godeps/_workspace/src/bazil.org/fuse/fs/bench/doc.go rename to vendor/src/bazil.org/fuse/fs/bench/doc.go diff --git a/Godeps/_workspace/src/bazil.org/fuse/fs/fstestutil/debug.go b/vendor/src/bazil.org/fuse/fs/fstestutil/debug.go similarity index 100% rename from Godeps/_workspace/src/bazil.org/fuse/fs/fstestutil/debug.go rename to vendor/src/bazil.org/fuse/fs/fstestutil/debug.go diff --git a/Godeps/_workspace/src/bazil.org/fuse/fs/fstestutil/doc.go b/vendor/src/bazil.org/fuse/fs/fstestutil/doc.go similarity index 100% rename from Godeps/_workspace/src/bazil.org/fuse/fs/fstestutil/doc.go rename to vendor/src/bazil.org/fuse/fs/fstestutil/doc.go diff --git a/Godeps/_workspace/src/bazil.org/fuse/fs/fstestutil/mounted.go b/vendor/src/bazil.org/fuse/fs/fstestutil/mounted.go similarity index 100% rename from Godeps/_workspace/src/bazil.org/fuse/fs/fstestutil/mounted.go rename to vendor/src/bazil.org/fuse/fs/fstestutil/mounted.go diff --git a/Godeps/_workspace/src/bazil.org/fuse/fs/fstestutil/mountinfo.go b/vendor/src/bazil.org/fuse/fs/fstestutil/mountinfo.go similarity index 100% rename from Godeps/_workspace/src/bazil.org/fuse/fs/fstestutil/mountinfo.go rename to vendor/src/bazil.org/fuse/fs/fstestutil/mountinfo.go diff --git a/Godeps/_workspace/src/bazil.org/fuse/fs/fstestutil/mountinfo_darwin.go b/vendor/src/bazil.org/fuse/fs/fstestutil/mountinfo_darwin.go similarity index 100% rename from Godeps/_workspace/src/bazil.org/fuse/fs/fstestutil/mountinfo_darwin.go rename to vendor/src/bazil.org/fuse/fs/fstestutil/mountinfo_darwin.go diff --git a/Godeps/_workspace/src/bazil.org/fuse/fs/fstestutil/mountinfo_freebsd.go b/vendor/src/bazil.org/fuse/fs/fstestutil/mountinfo_freebsd.go similarity index 100% rename from Godeps/_workspace/src/bazil.org/fuse/fs/fstestutil/mountinfo_freebsd.go rename to vendor/src/bazil.org/fuse/fs/fstestutil/mountinfo_freebsd.go diff --git a/Godeps/_workspace/src/bazil.org/fuse/fs/fstestutil/mountinfo_linux.go b/vendor/src/bazil.org/fuse/fs/fstestutil/mountinfo_linux.go similarity index 100% rename from Godeps/_workspace/src/bazil.org/fuse/fs/fstestutil/mountinfo_linux.go rename to vendor/src/bazil.org/fuse/fs/fstestutil/mountinfo_linux.go diff --git a/Godeps/_workspace/src/bazil.org/fuse/fs/fstestutil/record/buffer.go b/vendor/src/bazil.org/fuse/fs/fstestutil/record/buffer.go similarity index 100% rename from Godeps/_workspace/src/bazil.org/fuse/fs/fstestutil/record/buffer.go rename to vendor/src/bazil.org/fuse/fs/fstestutil/record/buffer.go diff --git a/Godeps/_workspace/src/bazil.org/fuse/fs/fstestutil/record/record.go b/vendor/src/bazil.org/fuse/fs/fstestutil/record/record.go similarity index 100% rename from Godeps/_workspace/src/bazil.org/fuse/fs/fstestutil/record/record.go rename to vendor/src/bazil.org/fuse/fs/fstestutil/record/record.go diff --git a/Godeps/_workspace/src/bazil.org/fuse/fs/fstestutil/record/wait.go b/vendor/src/bazil.org/fuse/fs/fstestutil/record/wait.go similarity index 100% rename from Godeps/_workspace/src/bazil.org/fuse/fs/fstestutil/record/wait.go rename to vendor/src/bazil.org/fuse/fs/fstestutil/record/wait.go diff --git a/Godeps/_workspace/src/bazil.org/fuse/fs/fstestutil/testfs.go b/vendor/src/bazil.org/fuse/fs/fstestutil/testfs.go similarity index 100% rename from Godeps/_workspace/src/bazil.org/fuse/fs/fstestutil/testfs.go rename to vendor/src/bazil.org/fuse/fs/fstestutil/testfs.go diff --git a/Godeps/_workspace/src/bazil.org/fuse/fs/helpers_test.go b/vendor/src/bazil.org/fuse/fs/helpers_test.go similarity index 100% rename from Godeps/_workspace/src/bazil.org/fuse/fs/helpers_test.go rename to vendor/src/bazil.org/fuse/fs/helpers_test.go diff --git a/Godeps/_workspace/src/bazil.org/fuse/fs/serve.go b/vendor/src/bazil.org/fuse/fs/serve.go similarity index 100% rename from Godeps/_workspace/src/bazil.org/fuse/fs/serve.go rename to vendor/src/bazil.org/fuse/fs/serve.go diff --git a/Godeps/_workspace/src/bazil.org/fuse/fs/serve_test.go b/vendor/src/bazil.org/fuse/fs/serve_test.go similarity index 100% rename from Godeps/_workspace/src/bazil.org/fuse/fs/serve_test.go rename to vendor/src/bazil.org/fuse/fs/serve_test.go diff --git a/Godeps/_workspace/src/bazil.org/fuse/fs/tree.go b/vendor/src/bazil.org/fuse/fs/tree.go similarity index 100% rename from Godeps/_workspace/src/bazil.org/fuse/fs/tree.go rename to vendor/src/bazil.org/fuse/fs/tree.go diff --git a/Godeps/_workspace/src/bazil.org/fuse/fuse.go b/vendor/src/bazil.org/fuse/fuse.go similarity index 100% rename from Godeps/_workspace/src/bazil.org/fuse/fuse.go rename to vendor/src/bazil.org/fuse/fuse.go diff --git a/Godeps/_workspace/src/bazil.org/fuse/fuse_kernel.go b/vendor/src/bazil.org/fuse/fuse_kernel.go similarity index 100% rename from Godeps/_workspace/src/bazil.org/fuse/fuse_kernel.go rename to vendor/src/bazil.org/fuse/fuse_kernel.go diff --git a/Godeps/_workspace/src/bazil.org/fuse/fuse_kernel_darwin.go b/vendor/src/bazil.org/fuse/fuse_kernel_darwin.go similarity index 100% rename from Godeps/_workspace/src/bazil.org/fuse/fuse_kernel_darwin.go rename to vendor/src/bazil.org/fuse/fuse_kernel_darwin.go diff --git a/Godeps/_workspace/src/bazil.org/fuse/fuse_kernel_freebsd.go b/vendor/src/bazil.org/fuse/fuse_kernel_freebsd.go similarity index 100% rename from Godeps/_workspace/src/bazil.org/fuse/fuse_kernel_freebsd.go rename to vendor/src/bazil.org/fuse/fuse_kernel_freebsd.go diff --git a/Godeps/_workspace/src/bazil.org/fuse/fuse_kernel_linux.go b/vendor/src/bazil.org/fuse/fuse_kernel_linux.go similarity index 100% rename from Godeps/_workspace/src/bazil.org/fuse/fuse_kernel_linux.go rename to vendor/src/bazil.org/fuse/fuse_kernel_linux.go diff --git a/Godeps/_workspace/src/bazil.org/fuse/fuse_kernel_std.go b/vendor/src/bazil.org/fuse/fuse_kernel_std.go similarity index 100% rename from Godeps/_workspace/src/bazil.org/fuse/fuse_kernel_std.go rename to vendor/src/bazil.org/fuse/fuse_kernel_std.go diff --git a/Godeps/_workspace/src/bazil.org/fuse/fuse_kernel_test.go b/vendor/src/bazil.org/fuse/fuse_kernel_test.go similarity index 100% rename from Godeps/_workspace/src/bazil.org/fuse/fuse_kernel_test.go rename to vendor/src/bazil.org/fuse/fuse_kernel_test.go diff --git a/Godeps/_workspace/src/bazil.org/fuse/fuseutil/fuseutil.go b/vendor/src/bazil.org/fuse/fuseutil/fuseutil.go similarity index 100% rename from Godeps/_workspace/src/bazil.org/fuse/fuseutil/fuseutil.go rename to vendor/src/bazil.org/fuse/fuseutil/fuseutil.go diff --git a/Godeps/_workspace/src/bazil.org/fuse/mount_darwin.go b/vendor/src/bazil.org/fuse/mount_darwin.go similarity index 100% rename from Godeps/_workspace/src/bazil.org/fuse/mount_darwin.go rename to vendor/src/bazil.org/fuse/mount_darwin.go diff --git a/Godeps/_workspace/src/bazil.org/fuse/mount_freebsd.go b/vendor/src/bazil.org/fuse/mount_freebsd.go similarity index 100% rename from Godeps/_workspace/src/bazil.org/fuse/mount_freebsd.go rename to vendor/src/bazil.org/fuse/mount_freebsd.go diff --git a/Godeps/_workspace/src/bazil.org/fuse/mount_linux.go b/vendor/src/bazil.org/fuse/mount_linux.go similarity index 100% rename from Godeps/_workspace/src/bazil.org/fuse/mount_linux.go rename to vendor/src/bazil.org/fuse/mount_linux.go diff --git a/Godeps/_workspace/src/bazil.org/fuse/options.go b/vendor/src/bazil.org/fuse/options.go similarity index 100% rename from Godeps/_workspace/src/bazil.org/fuse/options.go rename to vendor/src/bazil.org/fuse/options.go diff --git a/Godeps/_workspace/src/bazil.org/fuse/options_darwin.go b/vendor/src/bazil.org/fuse/options_darwin.go similarity index 100% rename from Godeps/_workspace/src/bazil.org/fuse/options_darwin.go rename to vendor/src/bazil.org/fuse/options_darwin.go diff --git a/Godeps/_workspace/src/bazil.org/fuse/options_freebsd.go b/vendor/src/bazil.org/fuse/options_freebsd.go similarity index 100% rename from Godeps/_workspace/src/bazil.org/fuse/options_freebsd.go rename to vendor/src/bazil.org/fuse/options_freebsd.go diff --git a/Godeps/_workspace/src/bazil.org/fuse/options_helper_test.go b/vendor/src/bazil.org/fuse/options_helper_test.go similarity index 100% rename from Godeps/_workspace/src/bazil.org/fuse/options_helper_test.go rename to vendor/src/bazil.org/fuse/options_helper_test.go diff --git a/Godeps/_workspace/src/bazil.org/fuse/options_linux.go b/vendor/src/bazil.org/fuse/options_linux.go similarity index 100% rename from Godeps/_workspace/src/bazil.org/fuse/options_linux.go rename to vendor/src/bazil.org/fuse/options_linux.go diff --git a/Godeps/_workspace/src/bazil.org/fuse/options_nocomma_test.go b/vendor/src/bazil.org/fuse/options_nocomma_test.go similarity index 100% rename from Godeps/_workspace/src/bazil.org/fuse/options_nocomma_test.go rename to vendor/src/bazil.org/fuse/options_nocomma_test.go diff --git a/Godeps/_workspace/src/bazil.org/fuse/options_test.go b/vendor/src/bazil.org/fuse/options_test.go similarity index 100% rename from Godeps/_workspace/src/bazil.org/fuse/options_test.go rename to vendor/src/bazil.org/fuse/options_test.go diff --git a/Godeps/_workspace/src/bazil.org/fuse/protocol.go b/vendor/src/bazil.org/fuse/protocol.go similarity index 100% rename from Godeps/_workspace/src/bazil.org/fuse/protocol.go rename to vendor/src/bazil.org/fuse/protocol.go diff --git a/Godeps/_workspace/src/bazil.org/fuse/syscallx/doc.go b/vendor/src/bazil.org/fuse/syscallx/doc.go similarity index 100% rename from Godeps/_workspace/src/bazil.org/fuse/syscallx/doc.go rename to vendor/src/bazil.org/fuse/syscallx/doc.go diff --git a/Godeps/_workspace/src/bazil.org/fuse/syscallx/generate b/vendor/src/bazil.org/fuse/syscallx/generate similarity index 100% rename from Godeps/_workspace/src/bazil.org/fuse/syscallx/generate rename to vendor/src/bazil.org/fuse/syscallx/generate diff --git a/Godeps/_workspace/src/bazil.org/fuse/syscallx/msync.go b/vendor/src/bazil.org/fuse/syscallx/msync.go similarity index 100% rename from Godeps/_workspace/src/bazil.org/fuse/syscallx/msync.go rename to vendor/src/bazil.org/fuse/syscallx/msync.go diff --git a/Godeps/_workspace/src/bazil.org/fuse/syscallx/msync_386.go b/vendor/src/bazil.org/fuse/syscallx/msync_386.go similarity index 100% rename from Godeps/_workspace/src/bazil.org/fuse/syscallx/msync_386.go rename to vendor/src/bazil.org/fuse/syscallx/msync_386.go diff --git a/Godeps/_workspace/src/bazil.org/fuse/syscallx/msync_amd64.go b/vendor/src/bazil.org/fuse/syscallx/msync_amd64.go similarity index 100% rename from Godeps/_workspace/src/bazil.org/fuse/syscallx/msync_amd64.go rename to vendor/src/bazil.org/fuse/syscallx/msync_amd64.go diff --git a/Godeps/_workspace/src/bazil.org/fuse/syscallx/syscallx.go b/vendor/src/bazil.org/fuse/syscallx/syscallx.go similarity index 100% rename from Godeps/_workspace/src/bazil.org/fuse/syscallx/syscallx.go rename to vendor/src/bazil.org/fuse/syscallx/syscallx.go diff --git a/Godeps/_workspace/src/bazil.org/fuse/syscallx/syscallx_std.go b/vendor/src/bazil.org/fuse/syscallx/syscallx_std.go similarity index 100% rename from Godeps/_workspace/src/bazil.org/fuse/syscallx/syscallx_std.go rename to vendor/src/bazil.org/fuse/syscallx/syscallx_std.go diff --git a/Godeps/_workspace/src/bazil.org/fuse/syscallx/xattr_darwin.go b/vendor/src/bazil.org/fuse/syscallx/xattr_darwin.go similarity index 100% rename from Godeps/_workspace/src/bazil.org/fuse/syscallx/xattr_darwin.go rename to vendor/src/bazil.org/fuse/syscallx/xattr_darwin.go diff --git a/Godeps/_workspace/src/bazil.org/fuse/syscallx/xattr_darwin_386.go b/vendor/src/bazil.org/fuse/syscallx/xattr_darwin_386.go similarity index 100% rename from Godeps/_workspace/src/bazil.org/fuse/syscallx/xattr_darwin_386.go rename to vendor/src/bazil.org/fuse/syscallx/xattr_darwin_386.go diff --git a/Godeps/_workspace/src/bazil.org/fuse/syscallx/xattr_darwin_amd64.go b/vendor/src/bazil.org/fuse/syscallx/xattr_darwin_amd64.go similarity index 100% rename from Godeps/_workspace/src/bazil.org/fuse/syscallx/xattr_darwin_amd64.go rename to vendor/src/bazil.org/fuse/syscallx/xattr_darwin_amd64.go diff --git a/Godeps/_workspace/src/bazil.org/fuse/unmount.go b/vendor/src/bazil.org/fuse/unmount.go similarity index 100% rename from Godeps/_workspace/src/bazil.org/fuse/unmount.go rename to vendor/src/bazil.org/fuse/unmount.go diff --git a/Godeps/_workspace/src/bazil.org/fuse/unmount_linux.go b/vendor/src/bazil.org/fuse/unmount_linux.go similarity index 100% rename from Godeps/_workspace/src/bazil.org/fuse/unmount_linux.go rename to vendor/src/bazil.org/fuse/unmount_linux.go diff --git a/Godeps/_workspace/src/bazil.org/fuse/unmount_std.go b/vendor/src/bazil.org/fuse/unmount_std.go similarity index 100% rename from Godeps/_workspace/src/bazil.org/fuse/unmount_std.go rename to vendor/src/bazil.org/fuse/unmount_std.go diff --git a/Godeps/_workspace/src/github.com/jessevdk/go-flags/.travis.yml b/vendor/src/github.com/jessevdk/go-flags/.travis.yml similarity index 100% rename from Godeps/_workspace/src/github.com/jessevdk/go-flags/.travis.yml rename to vendor/src/github.com/jessevdk/go-flags/.travis.yml diff --git a/Godeps/_workspace/src/github.com/jessevdk/go-flags/LICENSE b/vendor/src/github.com/jessevdk/go-flags/LICENSE similarity index 100% rename from Godeps/_workspace/src/github.com/jessevdk/go-flags/LICENSE rename to vendor/src/github.com/jessevdk/go-flags/LICENSE diff --git a/Godeps/_workspace/src/github.com/jessevdk/go-flags/README.md b/vendor/src/github.com/jessevdk/go-flags/README.md similarity index 100% rename from Godeps/_workspace/src/github.com/jessevdk/go-flags/README.md rename to vendor/src/github.com/jessevdk/go-flags/README.md diff --git a/Godeps/_workspace/src/github.com/jessevdk/go-flags/arg.go b/vendor/src/github.com/jessevdk/go-flags/arg.go similarity index 100% rename from Godeps/_workspace/src/github.com/jessevdk/go-flags/arg.go rename to vendor/src/github.com/jessevdk/go-flags/arg.go diff --git a/Godeps/_workspace/src/github.com/jessevdk/go-flags/arg_test.go b/vendor/src/github.com/jessevdk/go-flags/arg_test.go similarity index 100% rename from Godeps/_workspace/src/github.com/jessevdk/go-flags/arg_test.go rename to vendor/src/github.com/jessevdk/go-flags/arg_test.go diff --git a/Godeps/_workspace/src/github.com/jessevdk/go-flags/assert_test.go b/vendor/src/github.com/jessevdk/go-flags/assert_test.go similarity index 100% rename from Godeps/_workspace/src/github.com/jessevdk/go-flags/assert_test.go rename to vendor/src/github.com/jessevdk/go-flags/assert_test.go diff --git a/Godeps/_workspace/src/github.com/jessevdk/go-flags/check_crosscompile.sh b/vendor/src/github.com/jessevdk/go-flags/check_crosscompile.sh similarity index 100% rename from Godeps/_workspace/src/github.com/jessevdk/go-flags/check_crosscompile.sh rename to vendor/src/github.com/jessevdk/go-flags/check_crosscompile.sh diff --git a/Godeps/_workspace/src/github.com/jessevdk/go-flags/closest.go b/vendor/src/github.com/jessevdk/go-flags/closest.go similarity index 100% rename from Godeps/_workspace/src/github.com/jessevdk/go-flags/closest.go rename to vendor/src/github.com/jessevdk/go-flags/closest.go diff --git a/Godeps/_workspace/src/github.com/jessevdk/go-flags/command.go b/vendor/src/github.com/jessevdk/go-flags/command.go similarity index 100% rename from Godeps/_workspace/src/github.com/jessevdk/go-flags/command.go rename to vendor/src/github.com/jessevdk/go-flags/command.go diff --git a/Godeps/_workspace/src/github.com/jessevdk/go-flags/command_private.go b/vendor/src/github.com/jessevdk/go-flags/command_private.go similarity index 100% rename from Godeps/_workspace/src/github.com/jessevdk/go-flags/command_private.go rename to vendor/src/github.com/jessevdk/go-flags/command_private.go diff --git a/Godeps/_workspace/src/github.com/jessevdk/go-flags/command_test.go b/vendor/src/github.com/jessevdk/go-flags/command_test.go similarity index 100% rename from Godeps/_workspace/src/github.com/jessevdk/go-flags/command_test.go rename to vendor/src/github.com/jessevdk/go-flags/command_test.go diff --git a/Godeps/_workspace/src/github.com/jessevdk/go-flags/completion.go b/vendor/src/github.com/jessevdk/go-flags/completion.go similarity index 100% rename from Godeps/_workspace/src/github.com/jessevdk/go-flags/completion.go rename to vendor/src/github.com/jessevdk/go-flags/completion.go diff --git a/Godeps/_workspace/src/github.com/jessevdk/go-flags/completion_test.go b/vendor/src/github.com/jessevdk/go-flags/completion_test.go similarity index 100% rename from Godeps/_workspace/src/github.com/jessevdk/go-flags/completion_test.go rename to vendor/src/github.com/jessevdk/go-flags/completion_test.go diff --git a/Godeps/_workspace/src/github.com/jessevdk/go-flags/convert.go b/vendor/src/github.com/jessevdk/go-flags/convert.go similarity index 100% rename from Godeps/_workspace/src/github.com/jessevdk/go-flags/convert.go rename to vendor/src/github.com/jessevdk/go-flags/convert.go diff --git a/Godeps/_workspace/src/github.com/jessevdk/go-flags/convert_test.go b/vendor/src/github.com/jessevdk/go-flags/convert_test.go similarity index 100% rename from Godeps/_workspace/src/github.com/jessevdk/go-flags/convert_test.go rename to vendor/src/github.com/jessevdk/go-flags/convert_test.go diff --git a/Godeps/_workspace/src/github.com/jessevdk/go-flags/error.go b/vendor/src/github.com/jessevdk/go-flags/error.go similarity index 100% rename from Godeps/_workspace/src/github.com/jessevdk/go-flags/error.go rename to vendor/src/github.com/jessevdk/go-flags/error.go diff --git a/Godeps/_workspace/src/github.com/jessevdk/go-flags/example_test.go b/vendor/src/github.com/jessevdk/go-flags/example_test.go similarity index 100% rename from Godeps/_workspace/src/github.com/jessevdk/go-flags/example_test.go rename to vendor/src/github.com/jessevdk/go-flags/example_test.go diff --git a/Godeps/_workspace/src/github.com/jessevdk/go-flags/examples/add.go b/vendor/src/github.com/jessevdk/go-flags/examples/add.go similarity index 100% rename from Godeps/_workspace/src/github.com/jessevdk/go-flags/examples/add.go rename to vendor/src/github.com/jessevdk/go-flags/examples/add.go diff --git a/Godeps/_workspace/src/github.com/jessevdk/go-flags/examples/bash-completion b/vendor/src/github.com/jessevdk/go-flags/examples/bash-completion similarity index 100% rename from Godeps/_workspace/src/github.com/jessevdk/go-flags/examples/bash-completion rename to vendor/src/github.com/jessevdk/go-flags/examples/bash-completion diff --git a/Godeps/_workspace/src/github.com/jessevdk/go-flags/examples/main.go b/vendor/src/github.com/jessevdk/go-flags/examples/main.go similarity index 100% rename from Godeps/_workspace/src/github.com/jessevdk/go-flags/examples/main.go rename to vendor/src/github.com/jessevdk/go-flags/examples/main.go diff --git a/Godeps/_workspace/src/github.com/jessevdk/go-flags/examples/rm.go b/vendor/src/github.com/jessevdk/go-flags/examples/rm.go similarity index 100% rename from Godeps/_workspace/src/github.com/jessevdk/go-flags/examples/rm.go rename to vendor/src/github.com/jessevdk/go-flags/examples/rm.go diff --git a/Godeps/_workspace/src/github.com/jessevdk/go-flags/flags.go b/vendor/src/github.com/jessevdk/go-flags/flags.go similarity index 100% rename from Godeps/_workspace/src/github.com/jessevdk/go-flags/flags.go rename to vendor/src/github.com/jessevdk/go-flags/flags.go diff --git a/Godeps/_workspace/src/github.com/jessevdk/go-flags/group.go b/vendor/src/github.com/jessevdk/go-flags/group.go similarity index 100% rename from Godeps/_workspace/src/github.com/jessevdk/go-flags/group.go rename to vendor/src/github.com/jessevdk/go-flags/group.go diff --git a/Godeps/_workspace/src/github.com/jessevdk/go-flags/group_private.go b/vendor/src/github.com/jessevdk/go-flags/group_private.go similarity index 100% rename from Godeps/_workspace/src/github.com/jessevdk/go-flags/group_private.go rename to vendor/src/github.com/jessevdk/go-flags/group_private.go diff --git a/Godeps/_workspace/src/github.com/jessevdk/go-flags/group_test.go b/vendor/src/github.com/jessevdk/go-flags/group_test.go similarity index 100% rename from Godeps/_workspace/src/github.com/jessevdk/go-flags/group_test.go rename to vendor/src/github.com/jessevdk/go-flags/group_test.go diff --git a/Godeps/_workspace/src/github.com/jessevdk/go-flags/help.go b/vendor/src/github.com/jessevdk/go-flags/help.go similarity index 100% rename from Godeps/_workspace/src/github.com/jessevdk/go-flags/help.go rename to vendor/src/github.com/jessevdk/go-flags/help.go diff --git a/Godeps/_workspace/src/github.com/jessevdk/go-flags/help_test.go b/vendor/src/github.com/jessevdk/go-flags/help_test.go similarity index 100% rename from Godeps/_workspace/src/github.com/jessevdk/go-flags/help_test.go rename to vendor/src/github.com/jessevdk/go-flags/help_test.go diff --git a/Godeps/_workspace/src/github.com/jessevdk/go-flags/ini.go b/vendor/src/github.com/jessevdk/go-flags/ini.go similarity index 100% rename from Godeps/_workspace/src/github.com/jessevdk/go-flags/ini.go rename to vendor/src/github.com/jessevdk/go-flags/ini.go diff --git a/Godeps/_workspace/src/github.com/jessevdk/go-flags/ini_private.go b/vendor/src/github.com/jessevdk/go-flags/ini_private.go similarity index 100% rename from Godeps/_workspace/src/github.com/jessevdk/go-flags/ini_private.go rename to vendor/src/github.com/jessevdk/go-flags/ini_private.go diff --git a/Godeps/_workspace/src/github.com/jessevdk/go-flags/ini_test.go b/vendor/src/github.com/jessevdk/go-flags/ini_test.go similarity index 100% rename from Godeps/_workspace/src/github.com/jessevdk/go-flags/ini_test.go rename to vendor/src/github.com/jessevdk/go-flags/ini_test.go diff --git a/Godeps/_workspace/src/github.com/jessevdk/go-flags/long_test.go b/vendor/src/github.com/jessevdk/go-flags/long_test.go similarity index 100% rename from Godeps/_workspace/src/github.com/jessevdk/go-flags/long_test.go rename to vendor/src/github.com/jessevdk/go-flags/long_test.go diff --git a/Godeps/_workspace/src/github.com/jessevdk/go-flags/man.go b/vendor/src/github.com/jessevdk/go-flags/man.go similarity index 100% rename from Godeps/_workspace/src/github.com/jessevdk/go-flags/man.go rename to vendor/src/github.com/jessevdk/go-flags/man.go diff --git a/Godeps/_workspace/src/github.com/jessevdk/go-flags/marshal_test.go b/vendor/src/github.com/jessevdk/go-flags/marshal_test.go similarity index 100% rename from Godeps/_workspace/src/github.com/jessevdk/go-flags/marshal_test.go rename to vendor/src/github.com/jessevdk/go-flags/marshal_test.go diff --git a/Godeps/_workspace/src/github.com/jessevdk/go-flags/multitag.go b/vendor/src/github.com/jessevdk/go-flags/multitag.go similarity index 100% rename from Godeps/_workspace/src/github.com/jessevdk/go-flags/multitag.go rename to vendor/src/github.com/jessevdk/go-flags/multitag.go diff --git a/Godeps/_workspace/src/github.com/jessevdk/go-flags/option.go b/vendor/src/github.com/jessevdk/go-flags/option.go similarity index 100% rename from Godeps/_workspace/src/github.com/jessevdk/go-flags/option.go rename to vendor/src/github.com/jessevdk/go-flags/option.go diff --git a/Godeps/_workspace/src/github.com/jessevdk/go-flags/option_private.go b/vendor/src/github.com/jessevdk/go-flags/option_private.go similarity index 100% rename from Godeps/_workspace/src/github.com/jessevdk/go-flags/option_private.go rename to vendor/src/github.com/jessevdk/go-flags/option_private.go diff --git a/Godeps/_workspace/src/github.com/jessevdk/go-flags/options_test.go b/vendor/src/github.com/jessevdk/go-flags/options_test.go similarity index 100% rename from Godeps/_workspace/src/github.com/jessevdk/go-flags/options_test.go rename to vendor/src/github.com/jessevdk/go-flags/options_test.go diff --git a/Godeps/_workspace/src/github.com/jessevdk/go-flags/optstyle_other.go b/vendor/src/github.com/jessevdk/go-flags/optstyle_other.go similarity index 100% rename from Godeps/_workspace/src/github.com/jessevdk/go-flags/optstyle_other.go rename to vendor/src/github.com/jessevdk/go-flags/optstyle_other.go diff --git a/Godeps/_workspace/src/github.com/jessevdk/go-flags/optstyle_windows.go b/vendor/src/github.com/jessevdk/go-flags/optstyle_windows.go similarity index 100% rename from Godeps/_workspace/src/github.com/jessevdk/go-flags/optstyle_windows.go rename to vendor/src/github.com/jessevdk/go-flags/optstyle_windows.go diff --git a/Godeps/_workspace/src/github.com/jessevdk/go-flags/parser.go b/vendor/src/github.com/jessevdk/go-flags/parser.go similarity index 100% rename from Godeps/_workspace/src/github.com/jessevdk/go-flags/parser.go rename to vendor/src/github.com/jessevdk/go-flags/parser.go diff --git a/Godeps/_workspace/src/github.com/jessevdk/go-flags/parser_private.go b/vendor/src/github.com/jessevdk/go-flags/parser_private.go similarity index 100% rename from Godeps/_workspace/src/github.com/jessevdk/go-flags/parser_private.go rename to vendor/src/github.com/jessevdk/go-flags/parser_private.go diff --git a/Godeps/_workspace/src/github.com/jessevdk/go-flags/parser_test.go b/vendor/src/github.com/jessevdk/go-flags/parser_test.go similarity index 100% rename from Godeps/_workspace/src/github.com/jessevdk/go-flags/parser_test.go rename to vendor/src/github.com/jessevdk/go-flags/parser_test.go diff --git a/Godeps/_workspace/src/github.com/jessevdk/go-flags/pointer_test.go b/vendor/src/github.com/jessevdk/go-flags/pointer_test.go similarity index 100% rename from Godeps/_workspace/src/github.com/jessevdk/go-flags/pointer_test.go rename to vendor/src/github.com/jessevdk/go-flags/pointer_test.go diff --git a/Godeps/_workspace/src/github.com/jessevdk/go-flags/short_test.go b/vendor/src/github.com/jessevdk/go-flags/short_test.go similarity index 100% rename from Godeps/_workspace/src/github.com/jessevdk/go-flags/short_test.go rename to vendor/src/github.com/jessevdk/go-flags/short_test.go diff --git a/Godeps/_workspace/src/github.com/jessevdk/go-flags/tag_test.go b/vendor/src/github.com/jessevdk/go-flags/tag_test.go similarity index 100% rename from Godeps/_workspace/src/github.com/jessevdk/go-flags/tag_test.go rename to vendor/src/github.com/jessevdk/go-flags/tag_test.go diff --git a/Godeps/_workspace/src/github.com/jessevdk/go-flags/termsize.go b/vendor/src/github.com/jessevdk/go-flags/termsize.go similarity index 100% rename from Godeps/_workspace/src/github.com/jessevdk/go-flags/termsize.go rename to vendor/src/github.com/jessevdk/go-flags/termsize.go diff --git a/Godeps/_workspace/src/github.com/jessevdk/go-flags/termsize_linux.go b/vendor/src/github.com/jessevdk/go-flags/termsize_linux.go similarity index 100% rename from Godeps/_workspace/src/github.com/jessevdk/go-flags/termsize_linux.go rename to vendor/src/github.com/jessevdk/go-flags/termsize_linux.go diff --git a/Godeps/_workspace/src/github.com/jessevdk/go-flags/termsize_nosysioctl.go b/vendor/src/github.com/jessevdk/go-flags/termsize_nosysioctl.go similarity index 100% rename from Godeps/_workspace/src/github.com/jessevdk/go-flags/termsize_nosysioctl.go rename to vendor/src/github.com/jessevdk/go-flags/termsize_nosysioctl.go diff --git a/Godeps/_workspace/src/github.com/jessevdk/go-flags/termsize_other.go b/vendor/src/github.com/jessevdk/go-flags/termsize_other.go similarity index 100% rename from Godeps/_workspace/src/github.com/jessevdk/go-flags/termsize_other.go rename to vendor/src/github.com/jessevdk/go-flags/termsize_other.go diff --git a/Godeps/_workspace/src/github.com/jessevdk/go-flags/termsize_unix.go b/vendor/src/github.com/jessevdk/go-flags/termsize_unix.go similarity index 100% rename from Godeps/_workspace/src/github.com/jessevdk/go-flags/termsize_unix.go rename to vendor/src/github.com/jessevdk/go-flags/termsize_unix.go diff --git a/Godeps/_workspace/src/github.com/jessevdk/go-flags/unknown_test.go b/vendor/src/github.com/jessevdk/go-flags/unknown_test.go similarity index 100% rename from Godeps/_workspace/src/github.com/jessevdk/go-flags/unknown_test.go rename to vendor/src/github.com/jessevdk/go-flags/unknown_test.go diff --git a/Godeps/_workspace/src/github.com/juju/errors/.gitignore b/vendor/src/github.com/juju/errors/.gitignore similarity index 100% rename from Godeps/_workspace/src/github.com/juju/errors/.gitignore rename to vendor/src/github.com/juju/errors/.gitignore diff --git a/Godeps/_workspace/src/github.com/juju/errors/LICENSE b/vendor/src/github.com/juju/errors/LICENSE similarity index 100% rename from Godeps/_workspace/src/github.com/juju/errors/LICENSE rename to vendor/src/github.com/juju/errors/LICENSE diff --git a/Godeps/_workspace/src/github.com/juju/errors/Makefile b/vendor/src/github.com/juju/errors/Makefile similarity index 100% rename from Godeps/_workspace/src/github.com/juju/errors/Makefile rename to vendor/src/github.com/juju/errors/Makefile diff --git a/Godeps/_workspace/src/github.com/juju/errors/README.md b/vendor/src/github.com/juju/errors/README.md similarity index 100% rename from Godeps/_workspace/src/github.com/juju/errors/README.md rename to vendor/src/github.com/juju/errors/README.md diff --git a/Godeps/_workspace/src/github.com/juju/errors/doc.go b/vendor/src/github.com/juju/errors/doc.go similarity index 100% rename from Godeps/_workspace/src/github.com/juju/errors/doc.go rename to vendor/src/github.com/juju/errors/doc.go diff --git a/Godeps/_workspace/src/github.com/juju/errors/error.go b/vendor/src/github.com/juju/errors/error.go similarity index 100% rename from Godeps/_workspace/src/github.com/juju/errors/error.go rename to vendor/src/github.com/juju/errors/error.go diff --git a/Godeps/_workspace/src/github.com/juju/errors/error_test.go b/vendor/src/github.com/juju/errors/error_test.go similarity index 100% rename from Godeps/_workspace/src/github.com/juju/errors/error_test.go rename to vendor/src/github.com/juju/errors/error_test.go diff --git a/Godeps/_workspace/src/github.com/juju/errors/errortypes.go b/vendor/src/github.com/juju/errors/errortypes.go similarity index 100% rename from Godeps/_workspace/src/github.com/juju/errors/errortypes.go rename to vendor/src/github.com/juju/errors/errortypes.go diff --git a/Godeps/_workspace/src/github.com/juju/errors/errortypes_test.go b/vendor/src/github.com/juju/errors/errortypes_test.go similarity index 100% rename from Godeps/_workspace/src/github.com/juju/errors/errortypes_test.go rename to vendor/src/github.com/juju/errors/errortypes_test.go diff --git a/Godeps/_workspace/src/github.com/juju/errors/example_test.go b/vendor/src/github.com/juju/errors/example_test.go similarity index 100% rename from Godeps/_workspace/src/github.com/juju/errors/example_test.go rename to vendor/src/github.com/juju/errors/example_test.go diff --git a/Godeps/_workspace/src/github.com/juju/errors/export_test.go b/vendor/src/github.com/juju/errors/export_test.go similarity index 100% rename from Godeps/_workspace/src/github.com/juju/errors/export_test.go rename to vendor/src/github.com/juju/errors/export_test.go diff --git a/Godeps/_workspace/src/github.com/juju/errors/functions.go b/vendor/src/github.com/juju/errors/functions.go similarity index 100% rename from Godeps/_workspace/src/github.com/juju/errors/functions.go rename to vendor/src/github.com/juju/errors/functions.go diff --git a/Godeps/_workspace/src/github.com/juju/errors/functions_test.go b/vendor/src/github.com/juju/errors/functions_test.go similarity index 100% rename from Godeps/_workspace/src/github.com/juju/errors/functions_test.go rename to vendor/src/github.com/juju/errors/functions_test.go diff --git a/Godeps/_workspace/src/github.com/juju/errors/package_test.go b/vendor/src/github.com/juju/errors/package_test.go similarity index 100% rename from Godeps/_workspace/src/github.com/juju/errors/package_test.go rename to vendor/src/github.com/juju/errors/package_test.go diff --git a/Godeps/_workspace/src/github.com/juju/errors/path.go b/vendor/src/github.com/juju/errors/path.go similarity index 100% rename from Godeps/_workspace/src/github.com/juju/errors/path.go rename to vendor/src/github.com/juju/errors/path.go diff --git a/Godeps/_workspace/src/github.com/juju/errors/path_test.go b/vendor/src/github.com/juju/errors/path_test.go similarity index 100% rename from Godeps/_workspace/src/github.com/juju/errors/path_test.go rename to vendor/src/github.com/juju/errors/path_test.go diff --git a/Godeps/_workspace/src/github.com/kr/fs/LICENSE b/vendor/src/github.com/kr/fs/LICENSE similarity index 100% rename from Godeps/_workspace/src/github.com/kr/fs/LICENSE rename to vendor/src/github.com/kr/fs/LICENSE diff --git a/Godeps/_workspace/src/github.com/kr/fs/Readme b/vendor/src/github.com/kr/fs/Readme similarity index 100% rename from Godeps/_workspace/src/github.com/kr/fs/Readme rename to vendor/src/github.com/kr/fs/Readme diff --git a/Godeps/_workspace/src/github.com/kr/fs/example_test.go b/vendor/src/github.com/kr/fs/example_test.go similarity index 100% rename from Godeps/_workspace/src/github.com/kr/fs/example_test.go rename to vendor/src/github.com/kr/fs/example_test.go diff --git a/Godeps/_workspace/src/github.com/kr/fs/filesystem.go b/vendor/src/github.com/kr/fs/filesystem.go similarity index 100% rename from Godeps/_workspace/src/github.com/kr/fs/filesystem.go rename to vendor/src/github.com/kr/fs/filesystem.go diff --git a/Godeps/_workspace/src/github.com/kr/fs/walk.go b/vendor/src/github.com/kr/fs/walk.go similarity index 100% rename from Godeps/_workspace/src/github.com/kr/fs/walk.go rename to vendor/src/github.com/kr/fs/walk.go diff --git a/Godeps/_workspace/src/github.com/kr/fs/walk_test.go b/vendor/src/github.com/kr/fs/walk_test.go similarity index 100% rename from Godeps/_workspace/src/github.com/kr/fs/walk_test.go rename to vendor/src/github.com/kr/fs/walk_test.go diff --git a/Godeps/_workspace/src/github.com/minio/minio-go/.gitignore b/vendor/src/github.com/minio/minio-go/.gitignore similarity index 100% rename from Godeps/_workspace/src/github.com/minio/minio-go/.gitignore rename to vendor/src/github.com/minio/minio-go/.gitignore diff --git a/Godeps/_workspace/src/github.com/minio/minio-go/.travis.yml b/vendor/src/github.com/minio/minio-go/.travis.yml similarity index 100% rename from Godeps/_workspace/src/github.com/minio/minio-go/.travis.yml rename to vendor/src/github.com/minio/minio-go/.travis.yml diff --git a/Godeps/_workspace/src/github.com/minio/minio-go/CONTRIBUTING.md b/vendor/src/github.com/minio/minio-go/CONTRIBUTING.md similarity index 100% rename from Godeps/_workspace/src/github.com/minio/minio-go/CONTRIBUTING.md rename to vendor/src/github.com/minio/minio-go/CONTRIBUTING.md diff --git a/Godeps/_workspace/src/github.com/minio/minio-go/INSTALLGO.md b/vendor/src/github.com/minio/minio-go/INSTALLGO.md similarity index 100% rename from Godeps/_workspace/src/github.com/minio/minio-go/INSTALLGO.md rename to vendor/src/github.com/minio/minio-go/INSTALLGO.md diff --git a/Godeps/_workspace/src/github.com/minio/minio-go/LICENSE b/vendor/src/github.com/minio/minio-go/LICENSE similarity index 100% rename from Godeps/_workspace/src/github.com/minio/minio-go/LICENSE rename to vendor/src/github.com/minio/minio-go/LICENSE diff --git a/Godeps/_workspace/src/github.com/minio/minio-go/MAINTAINERS.md b/vendor/src/github.com/minio/minio-go/MAINTAINERS.md similarity index 100% rename from Godeps/_workspace/src/github.com/minio/minio-go/MAINTAINERS.md rename to vendor/src/github.com/minio/minio-go/MAINTAINERS.md diff --git a/Godeps/_workspace/src/github.com/minio/minio-go/README.md b/vendor/src/github.com/minio/minio-go/README.md similarity index 100% rename from Godeps/_workspace/src/github.com/minio/minio-go/README.md rename to vendor/src/github.com/minio/minio-go/README.md diff --git a/Godeps/_workspace/src/github.com/minio/minio-go/api-definitions.go b/vendor/src/github.com/minio/minio-go/api-definitions.go similarity index 100% rename from Godeps/_workspace/src/github.com/minio/minio-go/api-definitions.go rename to vendor/src/github.com/minio/minio-go/api-definitions.go diff --git a/Godeps/_workspace/src/github.com/minio/minio-go/api-error-response.go b/vendor/src/github.com/minio/minio-go/api-error-response.go similarity index 100% rename from Godeps/_workspace/src/github.com/minio/minio-go/api-error-response.go rename to vendor/src/github.com/minio/minio-go/api-error-response.go diff --git a/Godeps/_workspace/src/github.com/minio/minio-go/api-get-object-file.go b/vendor/src/github.com/minio/minio-go/api-get-object-file.go similarity index 100% rename from Godeps/_workspace/src/github.com/minio/minio-go/api-get-object-file.go rename to vendor/src/github.com/minio/minio-go/api-get-object-file.go diff --git a/Godeps/_workspace/src/github.com/minio/minio-go/api-get.go b/vendor/src/github.com/minio/minio-go/api-get.go similarity index 100% rename from Godeps/_workspace/src/github.com/minio/minio-go/api-get.go rename to vendor/src/github.com/minio/minio-go/api-get.go diff --git a/Godeps/_workspace/src/github.com/minio/minio-go/api-list.go b/vendor/src/github.com/minio/minio-go/api-list.go similarity index 100% rename from Godeps/_workspace/src/github.com/minio/minio-go/api-list.go rename to vendor/src/github.com/minio/minio-go/api-list.go diff --git a/Godeps/_workspace/src/github.com/minio/minio-go/api-presigned.go b/vendor/src/github.com/minio/minio-go/api-presigned.go similarity index 100% rename from Godeps/_workspace/src/github.com/minio/minio-go/api-presigned.go rename to vendor/src/github.com/minio/minio-go/api-presigned.go diff --git a/Godeps/_workspace/src/github.com/minio/minio-go/api-put-bucket.go b/vendor/src/github.com/minio/minio-go/api-put-bucket.go similarity index 100% rename from Godeps/_workspace/src/github.com/minio/minio-go/api-put-bucket.go rename to vendor/src/github.com/minio/minio-go/api-put-bucket.go diff --git a/Godeps/_workspace/src/github.com/minio/minio-go/api-put-object-common.go b/vendor/src/github.com/minio/minio-go/api-put-object-common.go similarity index 100% rename from Godeps/_workspace/src/github.com/minio/minio-go/api-put-object-common.go rename to vendor/src/github.com/minio/minio-go/api-put-object-common.go diff --git a/Godeps/_workspace/src/github.com/minio/minio-go/api-put-object-file.go b/vendor/src/github.com/minio/minio-go/api-put-object-file.go similarity index 100% rename from Godeps/_workspace/src/github.com/minio/minio-go/api-put-object-file.go rename to vendor/src/github.com/minio/minio-go/api-put-object-file.go diff --git a/Godeps/_workspace/src/github.com/minio/minio-go/api-put-object-multipart.go b/vendor/src/github.com/minio/minio-go/api-put-object-multipart.go similarity index 100% rename from Godeps/_workspace/src/github.com/minio/minio-go/api-put-object-multipart.go rename to vendor/src/github.com/minio/minio-go/api-put-object-multipart.go diff --git a/Godeps/_workspace/src/github.com/minio/minio-go/api-put-object-progress.go b/vendor/src/github.com/minio/minio-go/api-put-object-progress.go similarity index 100% rename from Godeps/_workspace/src/github.com/minio/minio-go/api-put-object-progress.go rename to vendor/src/github.com/minio/minio-go/api-put-object-progress.go diff --git a/Godeps/_workspace/src/github.com/minio/minio-go/api-put-object-readat.go b/vendor/src/github.com/minio/minio-go/api-put-object-readat.go similarity index 100% rename from Godeps/_workspace/src/github.com/minio/minio-go/api-put-object-readat.go rename to vendor/src/github.com/minio/minio-go/api-put-object-readat.go diff --git a/Godeps/_workspace/src/github.com/minio/minio-go/api-put-object.go b/vendor/src/github.com/minio/minio-go/api-put-object.go similarity index 100% rename from Godeps/_workspace/src/github.com/minio/minio-go/api-put-object.go rename to vendor/src/github.com/minio/minio-go/api-put-object.go diff --git a/Godeps/_workspace/src/github.com/minio/minio-go/api-remove.go b/vendor/src/github.com/minio/minio-go/api-remove.go similarity index 100% rename from Godeps/_workspace/src/github.com/minio/minio-go/api-remove.go rename to vendor/src/github.com/minio/minio-go/api-remove.go diff --git a/Godeps/_workspace/src/github.com/minio/minio-go/api-s3-definitions.go b/vendor/src/github.com/minio/minio-go/api-s3-definitions.go similarity index 100% rename from Godeps/_workspace/src/github.com/minio/minio-go/api-s3-definitions.go rename to vendor/src/github.com/minio/minio-go/api-s3-definitions.go diff --git a/Godeps/_workspace/src/github.com/minio/minio-go/api-stat.go b/vendor/src/github.com/minio/minio-go/api-stat.go similarity index 100% rename from Godeps/_workspace/src/github.com/minio/minio-go/api-stat.go rename to vendor/src/github.com/minio/minio-go/api-stat.go diff --git a/Godeps/_workspace/src/github.com/minio/minio-go/api.go b/vendor/src/github.com/minio/minio-go/api.go similarity index 100% rename from Godeps/_workspace/src/github.com/minio/minio-go/api.go rename to vendor/src/github.com/minio/minio-go/api.go diff --git a/Godeps/_workspace/src/github.com/minio/minio-go/appveyor.yml b/vendor/src/github.com/minio/minio-go/appveyor.yml similarity index 100% rename from Godeps/_workspace/src/github.com/minio/minio-go/appveyor.yml rename to vendor/src/github.com/minio/minio-go/appveyor.yml diff --git a/Godeps/_workspace/src/github.com/minio/minio-go/bucket-acl.go b/vendor/src/github.com/minio/minio-go/bucket-acl.go similarity index 100% rename from Godeps/_workspace/src/github.com/minio/minio-go/bucket-acl.go rename to vendor/src/github.com/minio/minio-go/bucket-acl.go diff --git a/Godeps/_workspace/src/github.com/minio/minio-go/bucket-cache.go b/vendor/src/github.com/minio/minio-go/bucket-cache.go similarity index 100% rename from Godeps/_workspace/src/github.com/minio/minio-go/bucket-cache.go rename to vendor/src/github.com/minio/minio-go/bucket-cache.go diff --git a/Godeps/_workspace/src/github.com/minio/minio-go/constants.go b/vendor/src/github.com/minio/minio-go/constants.go similarity index 100% rename from Godeps/_workspace/src/github.com/minio/minio-go/constants.go rename to vendor/src/github.com/minio/minio-go/constants.go diff --git a/Godeps/_workspace/src/github.com/minio/minio-go/examples/play/bucketexists.go b/vendor/src/github.com/minio/minio-go/examples/play/bucketexists.go similarity index 100% rename from Godeps/_workspace/src/github.com/minio/minio-go/examples/play/bucketexists.go rename to vendor/src/github.com/minio/minio-go/examples/play/bucketexists.go diff --git a/Godeps/_workspace/src/github.com/minio/minio-go/examples/play/fgetobject.go b/vendor/src/github.com/minio/minio-go/examples/play/fgetobject.go similarity index 100% rename from Godeps/_workspace/src/github.com/minio/minio-go/examples/play/fgetobject.go rename to vendor/src/github.com/minio/minio-go/examples/play/fgetobject.go diff --git a/Godeps/_workspace/src/github.com/minio/minio-go/examples/play/fputobject.go b/vendor/src/github.com/minio/minio-go/examples/play/fputobject.go similarity index 100% rename from Godeps/_workspace/src/github.com/minio/minio-go/examples/play/fputobject.go rename to vendor/src/github.com/minio/minio-go/examples/play/fputobject.go diff --git a/Godeps/_workspace/src/github.com/minio/minio-go/examples/play/getbucketacl.go b/vendor/src/github.com/minio/minio-go/examples/play/getbucketacl.go similarity index 100% rename from Godeps/_workspace/src/github.com/minio/minio-go/examples/play/getbucketacl.go rename to vendor/src/github.com/minio/minio-go/examples/play/getbucketacl.go diff --git a/Godeps/_workspace/src/github.com/minio/minio-go/examples/play/getobject.go b/vendor/src/github.com/minio/minio-go/examples/play/getobject.go similarity index 100% rename from Godeps/_workspace/src/github.com/minio/minio-go/examples/play/getobject.go rename to vendor/src/github.com/minio/minio-go/examples/play/getobject.go diff --git a/Godeps/_workspace/src/github.com/minio/minio-go/examples/play/listbuckets.go b/vendor/src/github.com/minio/minio-go/examples/play/listbuckets.go similarity index 100% rename from Godeps/_workspace/src/github.com/minio/minio-go/examples/play/listbuckets.go rename to vendor/src/github.com/minio/minio-go/examples/play/listbuckets.go diff --git a/Godeps/_workspace/src/github.com/minio/minio-go/examples/play/listincompleteuploads.go b/vendor/src/github.com/minio/minio-go/examples/play/listincompleteuploads.go similarity index 100% rename from Godeps/_workspace/src/github.com/minio/minio-go/examples/play/listincompleteuploads.go rename to vendor/src/github.com/minio/minio-go/examples/play/listincompleteuploads.go diff --git a/Godeps/_workspace/src/github.com/minio/minio-go/examples/play/listobjects.go b/vendor/src/github.com/minio/minio-go/examples/play/listobjects.go similarity index 100% rename from Godeps/_workspace/src/github.com/minio/minio-go/examples/play/listobjects.go rename to vendor/src/github.com/minio/minio-go/examples/play/listobjects.go diff --git a/Godeps/_workspace/src/github.com/minio/minio-go/examples/play/makebucket.go b/vendor/src/github.com/minio/minio-go/examples/play/makebucket.go similarity index 100% rename from Godeps/_workspace/src/github.com/minio/minio-go/examples/play/makebucket.go rename to vendor/src/github.com/minio/minio-go/examples/play/makebucket.go diff --git a/Godeps/_workspace/src/github.com/minio/minio-go/examples/play/presignedgetobject.go b/vendor/src/github.com/minio/minio-go/examples/play/presignedgetobject.go similarity index 100% rename from Godeps/_workspace/src/github.com/minio/minio-go/examples/play/presignedgetobject.go rename to vendor/src/github.com/minio/minio-go/examples/play/presignedgetobject.go diff --git a/Godeps/_workspace/src/github.com/minio/minio-go/examples/play/presignedpostpolicy.go b/vendor/src/github.com/minio/minio-go/examples/play/presignedpostpolicy.go similarity index 100% rename from Godeps/_workspace/src/github.com/minio/minio-go/examples/play/presignedpostpolicy.go rename to vendor/src/github.com/minio/minio-go/examples/play/presignedpostpolicy.go diff --git a/Godeps/_workspace/src/github.com/minio/minio-go/examples/play/presignedputobject.go b/vendor/src/github.com/minio/minio-go/examples/play/presignedputobject.go similarity index 100% rename from Godeps/_workspace/src/github.com/minio/minio-go/examples/play/presignedputobject.go rename to vendor/src/github.com/minio/minio-go/examples/play/presignedputobject.go diff --git a/Godeps/_workspace/src/github.com/minio/minio-go/examples/play/putobject.go b/vendor/src/github.com/minio/minio-go/examples/play/putobject.go similarity index 100% rename from Godeps/_workspace/src/github.com/minio/minio-go/examples/play/putobject.go rename to vendor/src/github.com/minio/minio-go/examples/play/putobject.go diff --git a/Godeps/_workspace/src/github.com/minio/minio-go/examples/play/removebucket.go b/vendor/src/github.com/minio/minio-go/examples/play/removebucket.go similarity index 100% rename from Godeps/_workspace/src/github.com/minio/minio-go/examples/play/removebucket.go rename to vendor/src/github.com/minio/minio-go/examples/play/removebucket.go diff --git a/Godeps/_workspace/src/github.com/minio/minio-go/examples/play/removeincompleteupload.go b/vendor/src/github.com/minio/minio-go/examples/play/removeincompleteupload.go similarity index 100% rename from Godeps/_workspace/src/github.com/minio/minio-go/examples/play/removeincompleteupload.go rename to vendor/src/github.com/minio/minio-go/examples/play/removeincompleteupload.go diff --git a/Godeps/_workspace/src/github.com/minio/minio-go/examples/play/removeobject.go b/vendor/src/github.com/minio/minio-go/examples/play/removeobject.go similarity index 100% rename from Godeps/_workspace/src/github.com/minio/minio-go/examples/play/removeobject.go rename to vendor/src/github.com/minio/minio-go/examples/play/removeobject.go diff --git a/Godeps/_workspace/src/github.com/minio/minio-go/examples/play/setbucketacl.go b/vendor/src/github.com/minio/minio-go/examples/play/setbucketacl.go similarity index 100% rename from Godeps/_workspace/src/github.com/minio/minio-go/examples/play/setbucketacl.go rename to vendor/src/github.com/minio/minio-go/examples/play/setbucketacl.go diff --git a/Godeps/_workspace/src/github.com/minio/minio-go/examples/play/statobject.go b/vendor/src/github.com/minio/minio-go/examples/play/statobject.go similarity index 100% rename from Godeps/_workspace/src/github.com/minio/minio-go/examples/play/statobject.go rename to vendor/src/github.com/minio/minio-go/examples/play/statobject.go diff --git a/Godeps/_workspace/src/github.com/minio/minio-go/examples/s3/bucketexists.go b/vendor/src/github.com/minio/minio-go/examples/s3/bucketexists.go similarity index 100% rename from Godeps/_workspace/src/github.com/minio/minio-go/examples/s3/bucketexists.go rename to vendor/src/github.com/minio/minio-go/examples/s3/bucketexists.go diff --git a/Godeps/_workspace/src/github.com/minio/minio-go/examples/s3/fgetobject.go b/vendor/src/github.com/minio/minio-go/examples/s3/fgetobject.go similarity index 100% rename from Godeps/_workspace/src/github.com/minio/minio-go/examples/s3/fgetobject.go rename to vendor/src/github.com/minio/minio-go/examples/s3/fgetobject.go diff --git a/Godeps/_workspace/src/github.com/minio/minio-go/examples/s3/fputobject.go b/vendor/src/github.com/minio/minio-go/examples/s3/fputobject.go similarity index 100% rename from Godeps/_workspace/src/github.com/minio/minio-go/examples/s3/fputobject.go rename to vendor/src/github.com/minio/minio-go/examples/s3/fputobject.go diff --git a/Godeps/_workspace/src/github.com/minio/minio-go/examples/s3/getbucketacl.go b/vendor/src/github.com/minio/minio-go/examples/s3/getbucketacl.go similarity index 100% rename from Godeps/_workspace/src/github.com/minio/minio-go/examples/s3/getbucketacl.go rename to vendor/src/github.com/minio/minio-go/examples/s3/getbucketacl.go diff --git a/Godeps/_workspace/src/github.com/minio/minio-go/examples/s3/getobject.go b/vendor/src/github.com/minio/minio-go/examples/s3/getobject.go similarity index 100% rename from Godeps/_workspace/src/github.com/minio/minio-go/examples/s3/getobject.go rename to vendor/src/github.com/minio/minio-go/examples/s3/getobject.go diff --git a/Godeps/_workspace/src/github.com/minio/minio-go/examples/s3/listbuckets.go b/vendor/src/github.com/minio/minio-go/examples/s3/listbuckets.go similarity index 100% rename from Godeps/_workspace/src/github.com/minio/minio-go/examples/s3/listbuckets.go rename to vendor/src/github.com/minio/minio-go/examples/s3/listbuckets.go diff --git a/Godeps/_workspace/src/github.com/minio/minio-go/examples/s3/listincompleteuploads.go b/vendor/src/github.com/minio/minio-go/examples/s3/listincompleteuploads.go similarity index 100% rename from Godeps/_workspace/src/github.com/minio/minio-go/examples/s3/listincompleteuploads.go rename to vendor/src/github.com/minio/minio-go/examples/s3/listincompleteuploads.go diff --git a/Godeps/_workspace/src/github.com/minio/minio-go/examples/s3/listobjects.go b/vendor/src/github.com/minio/minio-go/examples/s3/listobjects.go similarity index 100% rename from Godeps/_workspace/src/github.com/minio/minio-go/examples/s3/listobjects.go rename to vendor/src/github.com/minio/minio-go/examples/s3/listobjects.go diff --git a/Godeps/_workspace/src/github.com/minio/minio-go/examples/s3/makebucket.go b/vendor/src/github.com/minio/minio-go/examples/s3/makebucket.go similarity index 100% rename from Godeps/_workspace/src/github.com/minio/minio-go/examples/s3/makebucket.go rename to vendor/src/github.com/minio/minio-go/examples/s3/makebucket.go diff --git a/Godeps/_workspace/src/github.com/minio/minio-go/examples/s3/presignedgetobject.go b/vendor/src/github.com/minio/minio-go/examples/s3/presignedgetobject.go similarity index 100% rename from Godeps/_workspace/src/github.com/minio/minio-go/examples/s3/presignedgetobject.go rename to vendor/src/github.com/minio/minio-go/examples/s3/presignedgetobject.go diff --git a/Godeps/_workspace/src/github.com/minio/minio-go/examples/s3/presignedpostpolicy.go b/vendor/src/github.com/minio/minio-go/examples/s3/presignedpostpolicy.go similarity index 100% rename from Godeps/_workspace/src/github.com/minio/minio-go/examples/s3/presignedpostpolicy.go rename to vendor/src/github.com/minio/minio-go/examples/s3/presignedpostpolicy.go diff --git a/Godeps/_workspace/src/github.com/minio/minio-go/examples/s3/presignedputobject.go b/vendor/src/github.com/minio/minio-go/examples/s3/presignedputobject.go similarity index 100% rename from Godeps/_workspace/src/github.com/minio/minio-go/examples/s3/presignedputobject.go rename to vendor/src/github.com/minio/minio-go/examples/s3/presignedputobject.go diff --git a/Godeps/_workspace/src/github.com/minio/minio-go/examples/s3/putobject-progress.go b/vendor/src/github.com/minio/minio-go/examples/s3/putobject-progress.go similarity index 100% rename from Godeps/_workspace/src/github.com/minio/minio-go/examples/s3/putobject-progress.go rename to vendor/src/github.com/minio/minio-go/examples/s3/putobject-progress.go diff --git a/Godeps/_workspace/src/github.com/minio/minio-go/examples/s3/putobject.go b/vendor/src/github.com/minio/minio-go/examples/s3/putobject.go similarity index 100% rename from Godeps/_workspace/src/github.com/minio/minio-go/examples/s3/putobject.go rename to vendor/src/github.com/minio/minio-go/examples/s3/putobject.go diff --git a/Godeps/_workspace/src/github.com/minio/minio-go/examples/s3/removebucket.go b/vendor/src/github.com/minio/minio-go/examples/s3/removebucket.go similarity index 100% rename from Godeps/_workspace/src/github.com/minio/minio-go/examples/s3/removebucket.go rename to vendor/src/github.com/minio/minio-go/examples/s3/removebucket.go diff --git a/Godeps/_workspace/src/github.com/minio/minio-go/examples/s3/removeincompleteupload.go b/vendor/src/github.com/minio/minio-go/examples/s3/removeincompleteupload.go similarity index 100% rename from Godeps/_workspace/src/github.com/minio/minio-go/examples/s3/removeincompleteupload.go rename to vendor/src/github.com/minio/minio-go/examples/s3/removeincompleteupload.go diff --git a/Godeps/_workspace/src/github.com/minio/minio-go/examples/s3/removeobject.go b/vendor/src/github.com/minio/minio-go/examples/s3/removeobject.go similarity index 100% rename from Godeps/_workspace/src/github.com/minio/minio-go/examples/s3/removeobject.go rename to vendor/src/github.com/minio/minio-go/examples/s3/removeobject.go diff --git a/Godeps/_workspace/src/github.com/minio/minio-go/examples/s3/setbucketacl.go b/vendor/src/github.com/minio/minio-go/examples/s3/setbucketacl.go similarity index 100% rename from Godeps/_workspace/src/github.com/minio/minio-go/examples/s3/setbucketacl.go rename to vendor/src/github.com/minio/minio-go/examples/s3/setbucketacl.go diff --git a/Godeps/_workspace/src/github.com/minio/minio-go/examples/s3/statobject.go b/vendor/src/github.com/minio/minio-go/examples/s3/statobject.go similarity index 100% rename from Godeps/_workspace/src/github.com/minio/minio-go/examples/s3/statobject.go rename to vendor/src/github.com/minio/minio-go/examples/s3/statobject.go diff --git a/Godeps/_workspace/src/github.com/minio/minio-go/hook-reader.go b/vendor/src/github.com/minio/minio-go/hook-reader.go similarity index 100% rename from Godeps/_workspace/src/github.com/minio/minio-go/hook-reader.go rename to vendor/src/github.com/minio/minio-go/hook-reader.go diff --git a/Godeps/_workspace/src/github.com/minio/minio-go/post-policy.go b/vendor/src/github.com/minio/minio-go/post-policy.go similarity index 100% rename from Godeps/_workspace/src/github.com/minio/minio-go/post-policy.go rename to vendor/src/github.com/minio/minio-go/post-policy.go diff --git a/Godeps/_workspace/src/github.com/minio/minio-go/request-signature-v2.go b/vendor/src/github.com/minio/minio-go/request-signature-v2.go similarity index 100% rename from Godeps/_workspace/src/github.com/minio/minio-go/request-signature-v2.go rename to vendor/src/github.com/minio/minio-go/request-signature-v2.go diff --git a/Godeps/_workspace/src/github.com/minio/minio-go/request-signature-v4.go b/vendor/src/github.com/minio/minio-go/request-signature-v4.go similarity index 100% rename from Godeps/_workspace/src/github.com/minio/minio-go/request-signature-v4.go rename to vendor/src/github.com/minio/minio-go/request-signature-v4.go diff --git a/Godeps/_workspace/src/github.com/minio/minio-go/s3-endpoints.go b/vendor/src/github.com/minio/minio-go/s3-endpoints.go similarity index 100% rename from Godeps/_workspace/src/github.com/minio/minio-go/s3-endpoints.go rename to vendor/src/github.com/minio/minio-go/s3-endpoints.go diff --git a/Godeps/_workspace/src/github.com/minio/minio-go/signature-type.go b/vendor/src/github.com/minio/minio-go/signature-type.go similarity index 100% rename from Godeps/_workspace/src/github.com/minio/minio-go/signature-type.go rename to vendor/src/github.com/minio/minio-go/signature-type.go diff --git a/Godeps/_workspace/src/github.com/minio/minio-go/tempfile.go b/vendor/src/github.com/minio/minio-go/tempfile.go similarity index 100% rename from Godeps/_workspace/src/github.com/minio/minio-go/tempfile.go rename to vendor/src/github.com/minio/minio-go/tempfile.go diff --git a/Godeps/_workspace/src/github.com/minio/minio-go/utils.go b/vendor/src/github.com/minio/minio-go/utils.go similarity index 100% rename from Godeps/_workspace/src/github.com/minio/minio-go/utils.go rename to vendor/src/github.com/minio/minio-go/utils.go diff --git a/Godeps/_workspace/src/github.com/pkg/sftp/.gitignore b/vendor/src/github.com/pkg/sftp/.gitignore similarity index 100% rename from Godeps/_workspace/src/github.com/pkg/sftp/.gitignore rename to vendor/src/github.com/pkg/sftp/.gitignore diff --git a/Godeps/_workspace/src/github.com/pkg/sftp/.travis.yml b/vendor/src/github.com/pkg/sftp/.travis.yml similarity index 100% rename from Godeps/_workspace/src/github.com/pkg/sftp/.travis.yml rename to vendor/src/github.com/pkg/sftp/.travis.yml diff --git a/Godeps/_workspace/src/github.com/pkg/sftp/CONTRIBUTORS b/vendor/src/github.com/pkg/sftp/CONTRIBUTORS similarity index 100% rename from Godeps/_workspace/src/github.com/pkg/sftp/CONTRIBUTORS rename to vendor/src/github.com/pkg/sftp/CONTRIBUTORS diff --git a/Godeps/_workspace/src/github.com/pkg/sftp/LICENSE b/vendor/src/github.com/pkg/sftp/LICENSE similarity index 100% rename from Godeps/_workspace/src/github.com/pkg/sftp/LICENSE rename to vendor/src/github.com/pkg/sftp/LICENSE diff --git a/Godeps/_workspace/src/github.com/pkg/sftp/README.md b/vendor/src/github.com/pkg/sftp/README.md similarity index 100% rename from Godeps/_workspace/src/github.com/pkg/sftp/README.md rename to vendor/src/github.com/pkg/sftp/README.md diff --git a/Godeps/_workspace/src/github.com/pkg/sftp/attrs.go b/vendor/src/github.com/pkg/sftp/attrs.go similarity index 100% rename from Godeps/_workspace/src/github.com/pkg/sftp/attrs.go rename to vendor/src/github.com/pkg/sftp/attrs.go diff --git a/Godeps/_workspace/src/github.com/pkg/sftp/attrs_stubs.go b/vendor/src/github.com/pkg/sftp/attrs_stubs.go similarity index 100% rename from Godeps/_workspace/src/github.com/pkg/sftp/attrs_stubs.go rename to vendor/src/github.com/pkg/sftp/attrs_stubs.go diff --git a/Godeps/_workspace/src/github.com/pkg/sftp/attrs_unix.go b/vendor/src/github.com/pkg/sftp/attrs_unix.go similarity index 100% rename from Godeps/_workspace/src/github.com/pkg/sftp/attrs_unix.go rename to vendor/src/github.com/pkg/sftp/attrs_unix.go diff --git a/Godeps/_workspace/src/github.com/pkg/sftp/client.go b/vendor/src/github.com/pkg/sftp/client.go similarity index 100% rename from Godeps/_workspace/src/github.com/pkg/sftp/client.go rename to vendor/src/github.com/pkg/sftp/client.go diff --git a/Godeps/_workspace/src/github.com/pkg/sftp/debug.go b/vendor/src/github.com/pkg/sftp/debug.go similarity index 100% rename from Godeps/_workspace/src/github.com/pkg/sftp/debug.go rename to vendor/src/github.com/pkg/sftp/debug.go diff --git a/Godeps/_workspace/src/github.com/pkg/sftp/examples/buffered-read-benchmark/main.go b/vendor/src/github.com/pkg/sftp/examples/buffered-read-benchmark/main.go similarity index 100% rename from Godeps/_workspace/src/github.com/pkg/sftp/examples/buffered-read-benchmark/main.go rename to vendor/src/github.com/pkg/sftp/examples/buffered-read-benchmark/main.go diff --git a/Godeps/_workspace/src/github.com/pkg/sftp/examples/buffered-write-benchmark/main.go b/vendor/src/github.com/pkg/sftp/examples/buffered-write-benchmark/main.go similarity index 100% rename from Godeps/_workspace/src/github.com/pkg/sftp/examples/buffered-write-benchmark/main.go rename to vendor/src/github.com/pkg/sftp/examples/buffered-write-benchmark/main.go diff --git a/Godeps/_workspace/src/github.com/pkg/sftp/examples/sftp-server/README.md b/vendor/src/github.com/pkg/sftp/examples/sftp-server/README.md similarity index 100% rename from Godeps/_workspace/src/github.com/pkg/sftp/examples/sftp-server/README.md rename to vendor/src/github.com/pkg/sftp/examples/sftp-server/README.md diff --git a/Godeps/_workspace/src/github.com/pkg/sftp/examples/sftp-server/main.go b/vendor/src/github.com/pkg/sftp/examples/sftp-server/main.go similarity index 100% rename from Godeps/_workspace/src/github.com/pkg/sftp/examples/sftp-server/main.go rename to vendor/src/github.com/pkg/sftp/examples/sftp-server/main.go diff --git a/Godeps/_workspace/src/github.com/pkg/sftp/examples/streaming-read-benchmark/main.go b/vendor/src/github.com/pkg/sftp/examples/streaming-read-benchmark/main.go similarity index 100% rename from Godeps/_workspace/src/github.com/pkg/sftp/examples/streaming-read-benchmark/main.go rename to vendor/src/github.com/pkg/sftp/examples/streaming-read-benchmark/main.go diff --git a/Godeps/_workspace/src/github.com/pkg/sftp/examples/streaming-write-benchmark/main.go b/vendor/src/github.com/pkg/sftp/examples/streaming-write-benchmark/main.go similarity index 100% rename from Godeps/_workspace/src/github.com/pkg/sftp/examples/streaming-write-benchmark/main.go rename to vendor/src/github.com/pkg/sftp/examples/streaming-write-benchmark/main.go diff --git a/Godeps/_workspace/src/github.com/pkg/sftp/packet.go b/vendor/src/github.com/pkg/sftp/packet.go similarity index 100% rename from Godeps/_workspace/src/github.com/pkg/sftp/packet.go rename to vendor/src/github.com/pkg/sftp/packet.go diff --git a/Godeps/_workspace/src/github.com/pkg/sftp/release.go b/vendor/src/github.com/pkg/sftp/release.go similarity index 100% rename from Godeps/_workspace/src/github.com/pkg/sftp/release.go rename to vendor/src/github.com/pkg/sftp/release.go diff --git a/Godeps/_workspace/src/github.com/pkg/sftp/server.go b/vendor/src/github.com/pkg/sftp/server.go similarity index 100% rename from Godeps/_workspace/src/github.com/pkg/sftp/server.go rename to vendor/src/github.com/pkg/sftp/server.go diff --git a/Godeps/_workspace/src/github.com/pkg/sftp/server_standalone/main.go b/vendor/src/github.com/pkg/sftp/server_standalone/main.go similarity index 100% rename from Godeps/_workspace/src/github.com/pkg/sftp/server_standalone/main.go rename to vendor/src/github.com/pkg/sftp/server_standalone/main.go diff --git a/Godeps/_workspace/src/github.com/pkg/sftp/server_stubs.go b/vendor/src/github.com/pkg/sftp/server_stubs.go similarity index 100% rename from Godeps/_workspace/src/github.com/pkg/sftp/server_stubs.go rename to vendor/src/github.com/pkg/sftp/server_stubs.go diff --git a/Godeps/_workspace/src/github.com/pkg/sftp/server_unix.go b/vendor/src/github.com/pkg/sftp/server_unix.go similarity index 100% rename from Godeps/_workspace/src/github.com/pkg/sftp/server_unix.go rename to vendor/src/github.com/pkg/sftp/server_unix.go diff --git a/Godeps/_workspace/src/github.com/pkg/sftp/sftp.go b/vendor/src/github.com/pkg/sftp/sftp.go similarity index 100% rename from Godeps/_workspace/src/github.com/pkg/sftp/sftp.go rename to vendor/src/github.com/pkg/sftp/sftp.go diff --git a/Godeps/_workspace/src/github.com/restic/chunker/.travis.yml b/vendor/src/github.com/restic/chunker/.travis.yml similarity index 100% rename from Godeps/_workspace/src/github.com/restic/chunker/.travis.yml rename to vendor/src/github.com/restic/chunker/.travis.yml diff --git a/LICENSE b/vendor/src/github.com/restic/chunker/LICENSE similarity index 100% rename from LICENSE rename to vendor/src/github.com/restic/chunker/LICENSE diff --git a/Godeps/_workspace/src/github.com/restic/chunker/README.md b/vendor/src/github.com/restic/chunker/README.md similarity index 100% rename from Godeps/_workspace/src/github.com/restic/chunker/README.md rename to vendor/src/github.com/restic/chunker/README.md diff --git a/Godeps/_workspace/src/github.com/restic/chunker/chunker.go b/vendor/src/github.com/restic/chunker/chunker.go similarity index 100% rename from Godeps/_workspace/src/github.com/restic/chunker/chunker.go rename to vendor/src/github.com/restic/chunker/chunker.go diff --git a/Godeps/_workspace/src/github.com/restic/chunker/chunker_test.go b/vendor/src/github.com/restic/chunker/chunker_test.go similarity index 100% rename from Godeps/_workspace/src/github.com/restic/chunker/chunker_test.go rename to vendor/src/github.com/restic/chunker/chunker_test.go diff --git a/Godeps/_workspace/src/github.com/restic/chunker/doc.go b/vendor/src/github.com/restic/chunker/doc.go similarity index 100% rename from Godeps/_workspace/src/github.com/restic/chunker/doc.go rename to vendor/src/github.com/restic/chunker/doc.go diff --git a/Godeps/_workspace/src/github.com/restic/chunker/polynomials.go b/vendor/src/github.com/restic/chunker/polynomials.go similarity index 100% rename from Godeps/_workspace/src/github.com/restic/chunker/polynomials.go rename to vendor/src/github.com/restic/chunker/polynomials.go diff --git a/Godeps/_workspace/src/github.com/restic/chunker/polynomials_test.go b/vendor/src/github.com/restic/chunker/polynomials_test.go similarity index 100% rename from Godeps/_workspace/src/github.com/restic/chunker/polynomials_test.go rename to vendor/src/github.com/restic/chunker/polynomials_test.go diff --git a/Godeps/_workspace/src/golang.org/x/crypto/pbkdf2/pbkdf2.go b/vendor/src/golang.org/x/crypto/pbkdf2/pbkdf2.go similarity index 100% rename from Godeps/_workspace/src/golang.org/x/crypto/pbkdf2/pbkdf2.go rename to vendor/src/golang.org/x/crypto/pbkdf2/pbkdf2.go diff --git a/Godeps/_workspace/src/golang.org/x/crypto/pbkdf2/pbkdf2_test.go b/vendor/src/golang.org/x/crypto/pbkdf2/pbkdf2_test.go similarity index 100% rename from Godeps/_workspace/src/golang.org/x/crypto/pbkdf2/pbkdf2_test.go rename to vendor/src/golang.org/x/crypto/pbkdf2/pbkdf2_test.go diff --git a/Godeps/_workspace/src/golang.org/x/crypto/poly1305/const_amd64.s b/vendor/src/golang.org/x/crypto/poly1305/const_amd64.s similarity index 100% rename from Godeps/_workspace/src/golang.org/x/crypto/poly1305/const_amd64.s rename to vendor/src/golang.org/x/crypto/poly1305/const_amd64.s diff --git a/Godeps/_workspace/src/golang.org/x/crypto/poly1305/poly1305.go b/vendor/src/golang.org/x/crypto/poly1305/poly1305.go similarity index 100% rename from Godeps/_workspace/src/golang.org/x/crypto/poly1305/poly1305.go rename to vendor/src/golang.org/x/crypto/poly1305/poly1305.go diff --git a/Godeps/_workspace/src/golang.org/x/crypto/poly1305/poly1305_amd64.s b/vendor/src/golang.org/x/crypto/poly1305/poly1305_amd64.s similarity index 100% rename from Godeps/_workspace/src/golang.org/x/crypto/poly1305/poly1305_amd64.s rename to vendor/src/golang.org/x/crypto/poly1305/poly1305_amd64.s diff --git a/Godeps/_workspace/src/golang.org/x/crypto/poly1305/poly1305_arm.s b/vendor/src/golang.org/x/crypto/poly1305/poly1305_arm.s similarity index 100% rename from Godeps/_workspace/src/golang.org/x/crypto/poly1305/poly1305_arm.s rename to vendor/src/golang.org/x/crypto/poly1305/poly1305_arm.s diff --git a/Godeps/_workspace/src/golang.org/x/crypto/poly1305/poly1305_test.go b/vendor/src/golang.org/x/crypto/poly1305/poly1305_test.go similarity index 100% rename from Godeps/_workspace/src/golang.org/x/crypto/poly1305/poly1305_test.go rename to vendor/src/golang.org/x/crypto/poly1305/poly1305_test.go diff --git a/Godeps/_workspace/src/golang.org/x/crypto/poly1305/sum_amd64.go b/vendor/src/golang.org/x/crypto/poly1305/sum_amd64.go similarity index 100% rename from Godeps/_workspace/src/golang.org/x/crypto/poly1305/sum_amd64.go rename to vendor/src/golang.org/x/crypto/poly1305/sum_amd64.go diff --git a/Godeps/_workspace/src/golang.org/x/crypto/poly1305/sum_arm.go b/vendor/src/golang.org/x/crypto/poly1305/sum_arm.go similarity index 100% rename from Godeps/_workspace/src/golang.org/x/crypto/poly1305/sum_arm.go rename to vendor/src/golang.org/x/crypto/poly1305/sum_arm.go diff --git a/Godeps/_workspace/src/golang.org/x/crypto/poly1305/sum_ref.go b/vendor/src/golang.org/x/crypto/poly1305/sum_ref.go similarity index 100% rename from Godeps/_workspace/src/golang.org/x/crypto/poly1305/sum_ref.go rename to vendor/src/golang.org/x/crypto/poly1305/sum_ref.go diff --git a/Godeps/_workspace/src/golang.org/x/crypto/scrypt/scrypt.go b/vendor/src/golang.org/x/crypto/scrypt/scrypt.go similarity index 100% rename from Godeps/_workspace/src/golang.org/x/crypto/scrypt/scrypt.go rename to vendor/src/golang.org/x/crypto/scrypt/scrypt.go diff --git a/Godeps/_workspace/src/golang.org/x/crypto/scrypt/scrypt_test.go b/vendor/src/golang.org/x/crypto/scrypt/scrypt_test.go similarity index 100% rename from Godeps/_workspace/src/golang.org/x/crypto/scrypt/scrypt_test.go rename to vendor/src/golang.org/x/crypto/scrypt/scrypt_test.go diff --git a/Godeps/_workspace/src/golang.org/x/crypto/ssh/agent/client.go b/vendor/src/golang.org/x/crypto/ssh/agent/client.go similarity index 100% rename from Godeps/_workspace/src/golang.org/x/crypto/ssh/agent/client.go rename to vendor/src/golang.org/x/crypto/ssh/agent/client.go diff --git a/Godeps/_workspace/src/golang.org/x/crypto/ssh/agent/client_test.go b/vendor/src/golang.org/x/crypto/ssh/agent/client_test.go similarity index 100% rename from Godeps/_workspace/src/golang.org/x/crypto/ssh/agent/client_test.go rename to vendor/src/golang.org/x/crypto/ssh/agent/client_test.go diff --git a/Godeps/_workspace/src/golang.org/x/crypto/ssh/agent/forward.go b/vendor/src/golang.org/x/crypto/ssh/agent/forward.go similarity index 100% rename from Godeps/_workspace/src/golang.org/x/crypto/ssh/agent/forward.go rename to vendor/src/golang.org/x/crypto/ssh/agent/forward.go diff --git a/Godeps/_workspace/src/golang.org/x/crypto/ssh/agent/keyring.go b/vendor/src/golang.org/x/crypto/ssh/agent/keyring.go similarity index 100% rename from Godeps/_workspace/src/golang.org/x/crypto/ssh/agent/keyring.go rename to vendor/src/golang.org/x/crypto/ssh/agent/keyring.go diff --git a/Godeps/_workspace/src/golang.org/x/crypto/ssh/agent/server.go b/vendor/src/golang.org/x/crypto/ssh/agent/server.go similarity index 100% rename from Godeps/_workspace/src/golang.org/x/crypto/ssh/agent/server.go rename to vendor/src/golang.org/x/crypto/ssh/agent/server.go diff --git a/Godeps/_workspace/src/golang.org/x/crypto/ssh/agent/server_test.go b/vendor/src/golang.org/x/crypto/ssh/agent/server_test.go similarity index 100% rename from Godeps/_workspace/src/golang.org/x/crypto/ssh/agent/server_test.go rename to vendor/src/golang.org/x/crypto/ssh/agent/server_test.go diff --git a/Godeps/_workspace/src/golang.org/x/crypto/ssh/agent/testdata_test.go b/vendor/src/golang.org/x/crypto/ssh/agent/testdata_test.go similarity index 100% rename from Godeps/_workspace/src/golang.org/x/crypto/ssh/agent/testdata_test.go rename to vendor/src/golang.org/x/crypto/ssh/agent/testdata_test.go diff --git a/Godeps/_workspace/src/golang.org/x/crypto/ssh/benchmark_test.go b/vendor/src/golang.org/x/crypto/ssh/benchmark_test.go similarity index 100% rename from Godeps/_workspace/src/golang.org/x/crypto/ssh/benchmark_test.go rename to vendor/src/golang.org/x/crypto/ssh/benchmark_test.go diff --git a/Godeps/_workspace/src/golang.org/x/crypto/ssh/buffer.go b/vendor/src/golang.org/x/crypto/ssh/buffer.go similarity index 100% rename from Godeps/_workspace/src/golang.org/x/crypto/ssh/buffer.go rename to vendor/src/golang.org/x/crypto/ssh/buffer.go diff --git a/Godeps/_workspace/src/golang.org/x/crypto/ssh/buffer_test.go b/vendor/src/golang.org/x/crypto/ssh/buffer_test.go similarity index 100% rename from Godeps/_workspace/src/golang.org/x/crypto/ssh/buffer_test.go rename to vendor/src/golang.org/x/crypto/ssh/buffer_test.go diff --git a/Godeps/_workspace/src/golang.org/x/crypto/ssh/certs.go b/vendor/src/golang.org/x/crypto/ssh/certs.go similarity index 100% rename from Godeps/_workspace/src/golang.org/x/crypto/ssh/certs.go rename to vendor/src/golang.org/x/crypto/ssh/certs.go diff --git a/Godeps/_workspace/src/golang.org/x/crypto/ssh/certs_test.go b/vendor/src/golang.org/x/crypto/ssh/certs_test.go similarity index 100% rename from Godeps/_workspace/src/golang.org/x/crypto/ssh/certs_test.go rename to vendor/src/golang.org/x/crypto/ssh/certs_test.go diff --git a/Godeps/_workspace/src/golang.org/x/crypto/ssh/channel.go b/vendor/src/golang.org/x/crypto/ssh/channel.go similarity index 100% rename from Godeps/_workspace/src/golang.org/x/crypto/ssh/channel.go rename to vendor/src/golang.org/x/crypto/ssh/channel.go diff --git a/Godeps/_workspace/src/golang.org/x/crypto/ssh/cipher.go b/vendor/src/golang.org/x/crypto/ssh/cipher.go similarity index 100% rename from Godeps/_workspace/src/golang.org/x/crypto/ssh/cipher.go rename to vendor/src/golang.org/x/crypto/ssh/cipher.go diff --git a/Godeps/_workspace/src/golang.org/x/crypto/ssh/cipher_test.go b/vendor/src/golang.org/x/crypto/ssh/cipher_test.go similarity index 100% rename from Godeps/_workspace/src/golang.org/x/crypto/ssh/cipher_test.go rename to vendor/src/golang.org/x/crypto/ssh/cipher_test.go diff --git a/Godeps/_workspace/src/golang.org/x/crypto/ssh/client.go b/vendor/src/golang.org/x/crypto/ssh/client.go similarity index 100% rename from Godeps/_workspace/src/golang.org/x/crypto/ssh/client.go rename to vendor/src/golang.org/x/crypto/ssh/client.go diff --git a/Godeps/_workspace/src/golang.org/x/crypto/ssh/client_auth.go b/vendor/src/golang.org/x/crypto/ssh/client_auth.go similarity index 100% rename from Godeps/_workspace/src/golang.org/x/crypto/ssh/client_auth.go rename to vendor/src/golang.org/x/crypto/ssh/client_auth.go diff --git a/Godeps/_workspace/src/golang.org/x/crypto/ssh/client_auth_test.go b/vendor/src/golang.org/x/crypto/ssh/client_auth_test.go similarity index 100% rename from Godeps/_workspace/src/golang.org/x/crypto/ssh/client_auth_test.go rename to vendor/src/golang.org/x/crypto/ssh/client_auth_test.go diff --git a/Godeps/_workspace/src/golang.org/x/crypto/ssh/client_test.go b/vendor/src/golang.org/x/crypto/ssh/client_test.go similarity index 100% rename from Godeps/_workspace/src/golang.org/x/crypto/ssh/client_test.go rename to vendor/src/golang.org/x/crypto/ssh/client_test.go diff --git a/Godeps/_workspace/src/golang.org/x/crypto/ssh/common.go b/vendor/src/golang.org/x/crypto/ssh/common.go similarity index 100% rename from Godeps/_workspace/src/golang.org/x/crypto/ssh/common.go rename to vendor/src/golang.org/x/crypto/ssh/common.go diff --git a/Godeps/_workspace/src/golang.org/x/crypto/ssh/connection.go b/vendor/src/golang.org/x/crypto/ssh/connection.go similarity index 100% rename from Godeps/_workspace/src/golang.org/x/crypto/ssh/connection.go rename to vendor/src/golang.org/x/crypto/ssh/connection.go diff --git a/Godeps/_workspace/src/golang.org/x/crypto/ssh/doc.go b/vendor/src/golang.org/x/crypto/ssh/doc.go similarity index 100% rename from Godeps/_workspace/src/golang.org/x/crypto/ssh/doc.go rename to vendor/src/golang.org/x/crypto/ssh/doc.go diff --git a/Godeps/_workspace/src/golang.org/x/crypto/ssh/example_test.go b/vendor/src/golang.org/x/crypto/ssh/example_test.go similarity index 100% rename from Godeps/_workspace/src/golang.org/x/crypto/ssh/example_test.go rename to vendor/src/golang.org/x/crypto/ssh/example_test.go diff --git a/Godeps/_workspace/src/golang.org/x/crypto/ssh/handshake.go b/vendor/src/golang.org/x/crypto/ssh/handshake.go similarity index 100% rename from Godeps/_workspace/src/golang.org/x/crypto/ssh/handshake.go rename to vendor/src/golang.org/x/crypto/ssh/handshake.go diff --git a/Godeps/_workspace/src/golang.org/x/crypto/ssh/handshake_test.go b/vendor/src/golang.org/x/crypto/ssh/handshake_test.go similarity index 100% rename from Godeps/_workspace/src/golang.org/x/crypto/ssh/handshake_test.go rename to vendor/src/golang.org/x/crypto/ssh/handshake_test.go diff --git a/Godeps/_workspace/src/golang.org/x/crypto/ssh/kex.go b/vendor/src/golang.org/x/crypto/ssh/kex.go similarity index 100% rename from Godeps/_workspace/src/golang.org/x/crypto/ssh/kex.go rename to vendor/src/golang.org/x/crypto/ssh/kex.go diff --git a/Godeps/_workspace/src/golang.org/x/crypto/ssh/kex_test.go b/vendor/src/golang.org/x/crypto/ssh/kex_test.go similarity index 100% rename from Godeps/_workspace/src/golang.org/x/crypto/ssh/kex_test.go rename to vendor/src/golang.org/x/crypto/ssh/kex_test.go diff --git a/Godeps/_workspace/src/golang.org/x/crypto/ssh/keys.go b/vendor/src/golang.org/x/crypto/ssh/keys.go similarity index 100% rename from Godeps/_workspace/src/golang.org/x/crypto/ssh/keys.go rename to vendor/src/golang.org/x/crypto/ssh/keys.go diff --git a/Godeps/_workspace/src/golang.org/x/crypto/ssh/keys_test.go b/vendor/src/golang.org/x/crypto/ssh/keys_test.go similarity index 100% rename from Godeps/_workspace/src/golang.org/x/crypto/ssh/keys_test.go rename to vendor/src/golang.org/x/crypto/ssh/keys_test.go diff --git a/Godeps/_workspace/src/golang.org/x/crypto/ssh/mac.go b/vendor/src/golang.org/x/crypto/ssh/mac.go similarity index 100% rename from Godeps/_workspace/src/golang.org/x/crypto/ssh/mac.go rename to vendor/src/golang.org/x/crypto/ssh/mac.go diff --git a/Godeps/_workspace/src/golang.org/x/crypto/ssh/mempipe_test.go b/vendor/src/golang.org/x/crypto/ssh/mempipe_test.go similarity index 100% rename from Godeps/_workspace/src/golang.org/x/crypto/ssh/mempipe_test.go rename to vendor/src/golang.org/x/crypto/ssh/mempipe_test.go diff --git a/Godeps/_workspace/src/golang.org/x/crypto/ssh/messages.go b/vendor/src/golang.org/x/crypto/ssh/messages.go similarity index 100% rename from Godeps/_workspace/src/golang.org/x/crypto/ssh/messages.go rename to vendor/src/golang.org/x/crypto/ssh/messages.go diff --git a/Godeps/_workspace/src/golang.org/x/crypto/ssh/messages_test.go b/vendor/src/golang.org/x/crypto/ssh/messages_test.go similarity index 100% rename from Godeps/_workspace/src/golang.org/x/crypto/ssh/messages_test.go rename to vendor/src/golang.org/x/crypto/ssh/messages_test.go diff --git a/Godeps/_workspace/src/golang.org/x/crypto/ssh/mux.go b/vendor/src/golang.org/x/crypto/ssh/mux.go similarity index 100% rename from Godeps/_workspace/src/golang.org/x/crypto/ssh/mux.go rename to vendor/src/golang.org/x/crypto/ssh/mux.go diff --git a/Godeps/_workspace/src/golang.org/x/crypto/ssh/mux_test.go b/vendor/src/golang.org/x/crypto/ssh/mux_test.go similarity index 100% rename from Godeps/_workspace/src/golang.org/x/crypto/ssh/mux_test.go rename to vendor/src/golang.org/x/crypto/ssh/mux_test.go diff --git a/Godeps/_workspace/src/golang.org/x/crypto/ssh/server.go b/vendor/src/golang.org/x/crypto/ssh/server.go similarity index 100% rename from Godeps/_workspace/src/golang.org/x/crypto/ssh/server.go rename to vendor/src/golang.org/x/crypto/ssh/server.go diff --git a/Godeps/_workspace/src/golang.org/x/crypto/ssh/session.go b/vendor/src/golang.org/x/crypto/ssh/session.go similarity index 100% rename from Godeps/_workspace/src/golang.org/x/crypto/ssh/session.go rename to vendor/src/golang.org/x/crypto/ssh/session.go diff --git a/Godeps/_workspace/src/golang.org/x/crypto/ssh/session_test.go b/vendor/src/golang.org/x/crypto/ssh/session_test.go similarity index 100% rename from Godeps/_workspace/src/golang.org/x/crypto/ssh/session_test.go rename to vendor/src/golang.org/x/crypto/ssh/session_test.go diff --git a/Godeps/_workspace/src/golang.org/x/crypto/ssh/tcpip.go b/vendor/src/golang.org/x/crypto/ssh/tcpip.go similarity index 100% rename from Godeps/_workspace/src/golang.org/x/crypto/ssh/tcpip.go rename to vendor/src/golang.org/x/crypto/ssh/tcpip.go diff --git a/Godeps/_workspace/src/golang.org/x/crypto/ssh/tcpip_test.go b/vendor/src/golang.org/x/crypto/ssh/tcpip_test.go similarity index 100% rename from Godeps/_workspace/src/golang.org/x/crypto/ssh/tcpip_test.go rename to vendor/src/golang.org/x/crypto/ssh/tcpip_test.go diff --git a/Godeps/_workspace/src/golang.org/x/crypto/ssh/terminal/terminal.go b/vendor/src/golang.org/x/crypto/ssh/terminal/terminal.go similarity index 100% rename from Godeps/_workspace/src/golang.org/x/crypto/ssh/terminal/terminal.go rename to vendor/src/golang.org/x/crypto/ssh/terminal/terminal.go diff --git a/Godeps/_workspace/src/golang.org/x/crypto/ssh/terminal/terminal_test.go b/vendor/src/golang.org/x/crypto/ssh/terminal/terminal_test.go similarity index 100% rename from Godeps/_workspace/src/golang.org/x/crypto/ssh/terminal/terminal_test.go rename to vendor/src/golang.org/x/crypto/ssh/terminal/terminal_test.go diff --git a/Godeps/_workspace/src/golang.org/x/crypto/ssh/terminal/util.go b/vendor/src/golang.org/x/crypto/ssh/terminal/util.go similarity index 100% rename from Godeps/_workspace/src/golang.org/x/crypto/ssh/terminal/util.go rename to vendor/src/golang.org/x/crypto/ssh/terminal/util.go diff --git a/Godeps/_workspace/src/golang.org/x/crypto/ssh/terminal/util_bsd.go b/vendor/src/golang.org/x/crypto/ssh/terminal/util_bsd.go similarity index 100% rename from Godeps/_workspace/src/golang.org/x/crypto/ssh/terminal/util_bsd.go rename to vendor/src/golang.org/x/crypto/ssh/terminal/util_bsd.go diff --git a/Godeps/_workspace/src/golang.org/x/crypto/ssh/terminal/util_linux.go b/vendor/src/golang.org/x/crypto/ssh/terminal/util_linux.go similarity index 100% rename from Godeps/_workspace/src/golang.org/x/crypto/ssh/terminal/util_linux.go rename to vendor/src/golang.org/x/crypto/ssh/terminal/util_linux.go diff --git a/Godeps/_workspace/src/golang.org/x/crypto/ssh/terminal/util_windows.go b/vendor/src/golang.org/x/crypto/ssh/terminal/util_windows.go similarity index 100% rename from Godeps/_workspace/src/golang.org/x/crypto/ssh/terminal/util_windows.go rename to vendor/src/golang.org/x/crypto/ssh/terminal/util_windows.go diff --git a/Godeps/_workspace/src/golang.org/x/crypto/ssh/test/agent_unix_test.go b/vendor/src/golang.org/x/crypto/ssh/test/agent_unix_test.go similarity index 100% rename from Godeps/_workspace/src/golang.org/x/crypto/ssh/test/agent_unix_test.go rename to vendor/src/golang.org/x/crypto/ssh/test/agent_unix_test.go diff --git a/Godeps/_workspace/src/golang.org/x/crypto/ssh/test/cert_test.go b/vendor/src/golang.org/x/crypto/ssh/test/cert_test.go similarity index 100% rename from Godeps/_workspace/src/golang.org/x/crypto/ssh/test/cert_test.go rename to vendor/src/golang.org/x/crypto/ssh/test/cert_test.go diff --git a/Godeps/_workspace/src/golang.org/x/crypto/ssh/test/doc.go b/vendor/src/golang.org/x/crypto/ssh/test/doc.go similarity index 100% rename from Godeps/_workspace/src/golang.org/x/crypto/ssh/test/doc.go rename to vendor/src/golang.org/x/crypto/ssh/test/doc.go diff --git a/Godeps/_workspace/src/golang.org/x/crypto/ssh/test/forward_unix_test.go b/vendor/src/golang.org/x/crypto/ssh/test/forward_unix_test.go similarity index 100% rename from Godeps/_workspace/src/golang.org/x/crypto/ssh/test/forward_unix_test.go rename to vendor/src/golang.org/x/crypto/ssh/test/forward_unix_test.go diff --git a/Godeps/_workspace/src/golang.org/x/crypto/ssh/test/session_test.go b/vendor/src/golang.org/x/crypto/ssh/test/session_test.go similarity index 100% rename from Godeps/_workspace/src/golang.org/x/crypto/ssh/test/session_test.go rename to vendor/src/golang.org/x/crypto/ssh/test/session_test.go diff --git a/Godeps/_workspace/src/golang.org/x/crypto/ssh/test/tcpip_test.go b/vendor/src/golang.org/x/crypto/ssh/test/tcpip_test.go similarity index 100% rename from Godeps/_workspace/src/golang.org/x/crypto/ssh/test/tcpip_test.go rename to vendor/src/golang.org/x/crypto/ssh/test/tcpip_test.go diff --git a/Godeps/_workspace/src/golang.org/x/crypto/ssh/test/test_unix_test.go b/vendor/src/golang.org/x/crypto/ssh/test/test_unix_test.go similarity index 100% rename from Godeps/_workspace/src/golang.org/x/crypto/ssh/test/test_unix_test.go rename to vendor/src/golang.org/x/crypto/ssh/test/test_unix_test.go diff --git a/Godeps/_workspace/src/golang.org/x/crypto/ssh/test/testdata_test.go b/vendor/src/golang.org/x/crypto/ssh/test/testdata_test.go similarity index 100% rename from Godeps/_workspace/src/golang.org/x/crypto/ssh/test/testdata_test.go rename to vendor/src/golang.org/x/crypto/ssh/test/testdata_test.go diff --git a/Godeps/_workspace/src/golang.org/x/crypto/ssh/testdata/doc.go b/vendor/src/golang.org/x/crypto/ssh/testdata/doc.go similarity index 100% rename from Godeps/_workspace/src/golang.org/x/crypto/ssh/testdata/doc.go rename to vendor/src/golang.org/x/crypto/ssh/testdata/doc.go diff --git a/Godeps/_workspace/src/golang.org/x/crypto/ssh/testdata/keys.go b/vendor/src/golang.org/x/crypto/ssh/testdata/keys.go similarity index 100% rename from Godeps/_workspace/src/golang.org/x/crypto/ssh/testdata/keys.go rename to vendor/src/golang.org/x/crypto/ssh/testdata/keys.go diff --git a/Godeps/_workspace/src/golang.org/x/crypto/ssh/testdata_test.go b/vendor/src/golang.org/x/crypto/ssh/testdata_test.go similarity index 100% rename from Godeps/_workspace/src/golang.org/x/crypto/ssh/testdata_test.go rename to vendor/src/golang.org/x/crypto/ssh/testdata_test.go diff --git a/Godeps/_workspace/src/golang.org/x/crypto/ssh/transport.go b/vendor/src/golang.org/x/crypto/ssh/transport.go similarity index 100% rename from Godeps/_workspace/src/golang.org/x/crypto/ssh/transport.go rename to vendor/src/golang.org/x/crypto/ssh/transport.go diff --git a/Godeps/_workspace/src/golang.org/x/crypto/ssh/transport_test.go b/vendor/src/golang.org/x/crypto/ssh/transport_test.go similarity index 100% rename from Godeps/_workspace/src/golang.org/x/crypto/ssh/transport_test.go rename to vendor/src/golang.org/x/crypto/ssh/transport_test.go diff --git a/Godeps/_workspace/src/golang.org/x/net/context/context.go b/vendor/src/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/src/golang.org/x/net/context/context.go diff --git a/Godeps/_workspace/src/golang.org/x/net/context/context_test.go b/vendor/src/golang.org/x/net/context/context_test.go similarity index 100% rename from Godeps/_workspace/src/golang.org/x/net/context/context_test.go rename to vendor/src/golang.org/x/net/context/context_test.go diff --git a/Godeps/_workspace/src/golang.org/x/net/context/ctxhttp/cancelreq.go b/vendor/src/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/src/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/src/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/src/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/src/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/src/golang.org/x/net/context/ctxhttp/ctxhttp.go diff --git a/Godeps/_workspace/src/golang.org/x/net/context/ctxhttp/ctxhttp_test.go b/vendor/src/golang.org/x/net/context/ctxhttp/ctxhttp_test.go similarity index 100% rename from Godeps/_workspace/src/golang.org/x/net/context/ctxhttp/ctxhttp_test.go rename to vendor/src/golang.org/x/net/context/ctxhttp/ctxhttp_test.go diff --git a/Godeps/_workspace/src/golang.org/x/net/context/withtimeout_test.go b/vendor/src/golang.org/x/net/context/withtimeout_test.go similarity index 100% rename from Godeps/_workspace/src/golang.org/x/net/context/withtimeout_test.go rename to vendor/src/golang.org/x/net/context/withtimeout_test.go