godep: vendor correctly.
I'm so sick of this absolute crap. It goes wrong all the time. I want to get off godeps soon. But for now, let's **please** setup a test on travis that exercises all sorts of godep things to avoid merging anything that will break. Maybe we can fail the build if any library is NOT vendored.
Juan Batiz-Benet committed
Apr 23, 2015 at 13:30 UTC
1d5f68cdc6b67cbf1e83378e47f19e8a34e97dd0
2 files changed
+5
-5
Godeps/Godeps.json
+4
-4
@@ -176,10 +176,6 @@
176
"ImportPath": "github.com/jbenet/go-is-domain",
177
"Rev": "93b717f2ae17838a265e30277275ee99ee7198d6"
178
},
179
- {
180
- "ImportPath": "github.com/jbenet/go-logging",
181
- "Rev": "128b9855511a4ea3ccbcf712695baf2bab72e134"
182
- },
179
{
180
"ImportPath": "github.com/jbenet/go-msgio",
181
"Rev": "dbae89193876910c736b2ce1291fa8bbcf299d77"
@@ -255,6 +251,10 @@
251
"ImportPath": "github.com/syndtr/gosnappy/snappy",
252
"Rev": "156a073208e131d7d2e212cb749feae7c339e846"
253
},
254
+ {
255
+ "ImportPath": "github.com/whyrusleeping/go-logging",
256
+ "Rev": "128b9855511a4ea3ccbcf712695baf2bab72e134"
257
+ },
258
{
259
"ImportPath": "github.com/whyrusleeping/go-metrics",
260
"Rev": "1cd8009604ec2238b5a71305a0ecd974066e0e16"
Godeps/_workspace/src/github.com/whyrusleeping/go-logging/examples/example.go
+1
-1
@@ -3,7 +3,7 @@ package main
3
import (
4
"os"
5
6
- "github.com/whyrusleeping/go-logging"
6
+ "github.com/ipfs/go-ipfs/Godeps/_workspace/src/github.com/whyrusleeping/go-logging"
7
)
8
9
var log = logging.MustGetLogger("example")