Skip to content
This repository has been archived by the owner on Feb 24, 2020. It is now read-only.

Commit

Permalink
replaced godep with glide
Browse files Browse the repository at this point in the history
  • Loading branch information
Derek Gonyeo committed Jun 14, 2016
1 parent 90e3bd3 commit 6353e3a
Show file tree
Hide file tree
Showing 6,994 changed files with 2,239,072 additions and 356 deletions.
The diff you're trying to view is too large. We only load the first 3000 changed files.
1 change: 0 additions & 1 deletion .travis.yml
Original file line number Diff line number Diff line change
@@ -1,7 +1,6 @@
language: go
matrix:
include:
- go: 1.4.2
- go: 1.5.3
- go: 1.6

Expand Down
30 changes: 30 additions & 0 deletions Documentation/development-guide.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,30 @@
# Development Guide

This file contains notes for people interested in contributing to acbuild.

## Dependencies

Dependencies are managed with [glide][1]. The typical user that wishes to clone
and build acbuild should never need to interact with glide, but contributors
may need to periodically.

Obviously before using glide one must have glide installed, which can be done
with the following command:

```
go get github.com/Masterminds/glide
```

To add a dependency:

```
glide get -s -u -v <package-name>
```

To change a dependency, update `glide.yaml` and then run:

```
glide up -s -u -v
```

[1]: https://github.com/Masterminds/glide
168 changes: 0 additions & 168 deletions Godeps/Godeps.json

This file was deleted.

2 changes: 0 additions & 2 deletions Godeps/_workspace/.gitignore

This file was deleted.

93 changes: 0 additions & 93 deletions Godeps/_workspace/src/github.com/coreos/rkt/pkg/uid/uid.go

This file was deleted.

57 changes: 0 additions & 57 deletions Godeps/_workspace/src/speter.net/go/exp/math/dec/inf/LICENSE

This file was deleted.

4 changes: 3 additions & 1 deletion build
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,9 @@ if [ ! -h gopath/src/${REPO_PATH} ]; then
fi

export GOBIN=${DIR}/bin
export GOPATH=${DIR}/Godeps/_workspace:${DIR}/gopath
export GOPATH=${DIR}/gopath

export GO15VENDOREXPERIMENT=1

eval $(go env)
export GOOS GOARCH
Expand Down
Loading

0 comments on commit 6353e3a

Please sign in to comment.