Remove Godep now that we use Glide

This commit is contained in:
Cody Soyland 2016-11-29 15:15:11 -06:00
parent ee7240107c
commit e5be2eddeb
4 changed files with 8 additions and 56 deletions

43
Godeps/Godeps.json generated
View file

@ -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"
}
]
}

5
Godeps/Readme generated
View file

@ -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.

View file

@ -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.

View file

@ -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/