From 289b30715d097edafd5562f66cb3567a70b2d330 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?P=C3=A9ter=20Szil=C3=A1gyi?= Date: Fri, 28 Oct 2016 20:05:01 +0300 Subject: Godeps, vendor: convert dependency management to trash (#3198) This commit converts the dependency management from Godeps to the vendor folder, also switching the tool from godep to trash. Since the upstream tool lacks a few features proposed via a few PRs, until those PRs are merged in (if), use github.com/karalabe/trash. You can update dependencies via trash --update. All dependencies have been updated to their latest version. Parts of the build system are reworked to drop old notions of Godeps and invocation of the go vet command so that it doesn't run against the vendor folder, as that will just blow up during vetting. The conversion drops OpenCL (and hence GPU mining support) from ethash and our codebase. The short reasoning is that there's noone to maintain and having opencl libs in our deps messes up builds as go install ./... tries to build them, failing with unsatisfied link errors for the C OpenCL deps. golang.org/x/net/context is not vendored in. We expect it to be fetched by the user (i.e. using go get). To keep ci.go builds reproducible the package is "vendored" in build/_vendor. --- vendor.conf | 40 ++++++++++++++++++++++++++++++++++++++++ 1 file changed, 40 insertions(+) create mode 100644 vendor.conf (limited to 'vendor.conf') diff --git a/vendor.conf b/vendor.conf new file mode 100644 index 000000000..58837ee38 --- /dev/null +++ b/vendor.conf @@ -0,0 +1,40 @@ +# package +github.com/ethereum/go-ethereum + +# import +github.com/cespare/cp 165db2f +github.com/davecgh/go-spew v1.0.0-3-g6d21280 +github.com/ethereum/ethash v23.1-249-g214d4c0 +github.com/fatih/color v1.1.0-4-gbf82308 +github.com/gizak/termui d29684e +github.com/golang/snappy d9eb7a3 +github.com/hashicorp/golang-lru 0a025b7 +github.com/huin/goupnp 97f671e +github.com/jackpal/go-nat-pmp v1.0.1-4-g1fa385a +github.com/mattn/go-colorable v0.0.6-6-g6c903ff +github.com/mattn/go-isatty 66b8e73 +github.com/mattn/go-runewidth v0.0.1-10-g737072b +github.com/mitchellh/go-wordwrap ad45545 +github.com/nsf/termbox-go b6acae5 +github.com/pborman/uuid v1.0-17-g3d4f2ba +github.com/peterh/liner 8975875 +github.com/rcrowley/go-metrics ab2277b +github.com/rjeczalik/notify 7e20c15 +github.com/robertkrimen/otto bf1c379 +github.com/rs/cors v1.0 +github.com/rs/xhandler v1.0-1-ged27b6f +github.com/syndtr/goleveldb 6b4daa5 +golang.org/x/crypto ca7e7f1 +golang.org/x/net b336a97 +golang.org/x/sys c200b10 +golang.org/x/text a8b3843 +golang.org/x/tools 0db92ca +gopkg.in/check.v1 4f90aea +gopkg.in/fatih/set.v0 v0.1.0-3-g27c4092 +gopkg.in/karalabe/cookiejar.v2 8dcd6a7 +gopkg.in/natefinch/npipe.v2 c1b8fa8 +gopkg.in/sourcemap.v1 v1.0.3 +gopkg.in/urfave/cli.v1 v1.18.1 + +# exclude +-golang.org/x/net/context -- cgit v1.2.3