From e5be2eddebf41537544f2b50eb4b46e45c6a24a6 Mon Sep 17 00:00:00 2001 From: Cody Soyland Date: Tue, 29 Nov 2016 15:15:11 -0600 Subject: [PATCH] Remove Godep now that we use Glide --- Godeps/Godeps.json | 43 ------------------------------------------- Godeps/Readme | 5 ----- README-dev.md | 6 +++--- README.md | 10 +++++----- 4 files changed, 8 insertions(+), 56 deletions(-) delete mode 100644 Godeps/Godeps.json delete mode 100644 Godeps/Readme diff --git a/Godeps/Godeps.json b/Godeps/Godeps.json deleted file mode 100644 index 417c45b13..000000000 --- a/Godeps/Godeps.json +++ /dev/null @@ -1,43 +0,0 @@ -{ - "ImportPath": "github.com/pilosa/pilosa", - "GoVersion": "go1.7", - "GodepVersion": "v75", - "Packages": [ - "./..." - ], - "Deps": [ - { - "ImportPath": "github.com/BurntSushi/toml", - "Comment": "v0.2.0-21-g9906417", - "Rev": "99064174e013895bbd9b025c31100bd1d9b590ca" - }, - { - "ImportPath": "github.com/DataDog/datadog-go/statsd", - "Comment": "1.0.0", - "Rev": "909c02b65dd8a52e8fa6072db9752a112227cf21" - }, - { - "ImportPath": "github.com/boltdb/bolt", - "Comment": "v1.3.0-29-g4b1ebc1", - "Rev": "4b1ebc1869ad66568b313d0dc410e2be72670dda" - }, - { - "ImportPath": "github.com/davecgh/go-spew/spew", - "Comment": "v1.0.0-9-g346938d", - "Rev": "346938d642f2ec3594ed81d874461961cd0faa76" - }, - { - "ImportPath": "github.com/gogo/protobuf/proto", - "Comment": "v0.3-123-ga9cd0c3", - "Rev": "a9cd0c35b97daf74d0ebf3514c5254814b2703b4" - }, - { - "ImportPath": "github.com/golang/groupcache/lru", - "Rev": "a6b377e3400b08991b80d6805d627f347f983866" - }, - { - "ImportPath": "golang.org/x/sys/unix", - "Rev": "c200b10b5d5e122be351b67af224adc6128af5bf" - } - ] -} 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/README-dev.md b/README-dev.md index 958b03e20..911f86955 100644 --- a/README-dev.md +++ b/README-dev.md @@ -21,16 +21,16 @@ git clone git@github.com:${USER}/pilosa.git cd ${GOPATH}/src/github.com/pilosa/pilosa ``` -Install `godep` to manage dependencies: +Install `glide` to manage dependencies: ```sh -go get -u github.com/tools/godep +curl https://glide.sh/get | sh ``` Install Pilosa command line tools: ```sh -go install github.com/pilosa/pilosa/... +go install github.com/pilosa/pilosa/cmd/... ``` Running `pilosa` should now run a Pilosa instance. diff --git a/README.md b/README.md index ec39dfcd0..c646278eb 100644 --- a/README.md +++ b/README.md @@ -197,16 +197,16 @@ Returns the top 20 Bitmaps from `bar`in attribute `category` with values `81 or ### Updating dependencies -To update dependencies, you'll need to install [godep][]: +To update dependencies, you'll need to install [Glide][]: ```sh -$ go get -u github.com/tools/godep +$ curl https://glide.sh/get | sh ``` -Then save the dependencies in your project: +Then add the new dependencies in your project: ```sh -$ godep save ./... +$ glide get github.com/foo/bar ``` ### Protobuf @@ -223,6 +223,6 @@ In order to set the version number, compile Pilosa with the following argument: $ go install --ldflags="-X main.Version=1.0.0" ``` -[godep]: https://github.com/tools/godep +[Glide]: http://glide.sh/