add glide dependency management for fully reproducible builds

This commit adds glide integration in order to make lnd builds fully
reproducible. Rather than using “go get” users should now manually pull down
the repo, use glide to fetch+install the dependancies, then manually install
all related binaries.

With this change we no longer have to chase dependancies making breaking API
changes under us. We can manually update the managed dependancies once a new
stable release of a defendant package is released.

Additionally, reproducible builds are a strong requirement in order to securely
distribute future major releases of lnd.
This commit is contained in:
Olaoluwa Osuntokun
2016-07-22 18:52:36 -07:00
parent adb23a366f
commit c8e58147b6
29 changed files with 200 additions and 4 deletions

View File

@@ -9,9 +9,9 @@ import (
"os"
"strings"
"github.com/Roasbeef/btcd/wire"
"github.com/codegangsta/cli"
"github.com/lightningnetwork/lnd/lnrpc"
"github.com/roasbeef/btcd/wire"
"golang.org/x/net/context"
)