Branch: refs/heads/master
Home: https://github.com/btcsuite/btcd
Commit: 2554caee5919958c0d4b41db8035f0e12ce6f624
https://github.com/btcsuite/btcd/commit/2554caee5919958c0d4b41db8035f0e12ce6f624
Author: Dave Collins <[email protected]>
Date: 2016-05-06 (Fri, 06 May 2016)
Changed paths:
M .gitignore
M .travis.yml
M README.md
A glide.lock
A glide.yaml
M goclean.sh
Log Message:
-----------
build: Convert project to use glide. (#689)
This converts the project to allow btcd to be used with the glide
package manager in order to provide stable and reproducible builds
without the user having to jump through all of the hoops as they do
today.
It consists of adding a glide.yaml file which identifies the project
dependencies and locations along with a glide.lock file which contains
the complete dependency tree pinned to specific versions. Glide uses
these files to download the packages (or updates) to a local vendor
directory and checkout the correct pinned versions. The go tool, in
turn, is used to build/install btcd and will use the pinned versions in
the vendor directory.
This also updates TravisCI to build using glide, removes some of the
exceptions in the lint checks which are no longer required, and updates
the README.md with the new instructions needed to build the project with
glide.