From 45571ab1c3c53c76ccdac2d5c984a829925f8e62 Mon Sep 17 00:00:00 2001
From: androlo <andreas@erisindustries.com>
Date: Tue, 4 Aug 2015 05:39:15 +0200
Subject: [PATCH] snappy

---
 Godeps/Godeps.json                                        | 8 ++++----
 .../gosnappy => google/go-snappy}/snappy/decode.go        | 0
 .../gosnappy => google/go-snappy}/snappy/encode.go        | 0
 .../gosnappy => google/go-snappy}/snappy/snappy.go        | 0
 .../gosnappy => google/go-snappy}/snappy/snappy_test.go   | 0
 .../github.com/syndtr/goleveldb/leveldb/table/reader.go   | 2 +-
 .../github.com/syndtr/goleveldb/leveldb/table/writer.go   | 2 +-
 7 files changed, 6 insertions(+), 6 deletions(-)
 rename Godeps/_workspace/src/github.com/{syndtr/gosnappy => google/go-snappy}/snappy/decode.go (100%)
 rename Godeps/_workspace/src/github.com/{syndtr/gosnappy => google/go-snappy}/snappy/encode.go (100%)
 rename Godeps/_workspace/src/github.com/{syndtr/gosnappy => google/go-snappy}/snappy/snappy.go (100%)
 rename Godeps/_workspace/src/github.com/{syndtr/gosnappy => google/go-snappy}/snappy/snappy_test.go (100%)

diff --git a/Godeps/Godeps.json b/Godeps/Godeps.json
index 54eeae2b..1fa4882b 100644
--- a/Godeps/Godeps.json
+++ b/Godeps/Godeps.json
@@ -24,6 +24,10 @@
 			"Comment": "v1.0rc1-104-g1a7ab6e",
 			"Rev": "1a7ab6e4d5fdc72d6df30ef562102ae6e0d18518"
 		},
+		{
+			"ImportPath": "github.com/google/go-snappy/snappy",
+			"Rev": "eaa750b9bf4dcb7cb20454be850613b66cda3273"
+		},
 		{
 			"ImportPath": "github.com/gorilla/websocket",
 			"Rev": "a3ec486e6a7a41858210b0fc5d7b5df593b3c4a3"
@@ -77,10 +81,6 @@
 			"ImportPath": "github.com/syndtr/goleveldb/leveldb",
 			"Rev": "a06509502ca32565bdf74afc1e573050023f261c"
 		},
-		{
-			"ImportPath": "github.com/syndtr/gosnappy/snappy",
-			"Rev": "156a073208e131d7d2e212cb749feae7c339e846"
-		},
 		{
 			"ImportPath": "github.com/tendermint/ed25519",
 			"Rev": "533fb6548e2071076888eda3c38749d707ba49bc"
diff --git a/Godeps/_workspace/src/github.com/syndtr/gosnappy/snappy/decode.go b/Godeps/_workspace/src/github.com/google/go-snappy/snappy/decode.go
similarity index 100%
rename from Godeps/_workspace/src/github.com/syndtr/gosnappy/snappy/decode.go
rename to Godeps/_workspace/src/github.com/google/go-snappy/snappy/decode.go
diff --git a/Godeps/_workspace/src/github.com/syndtr/gosnappy/snappy/encode.go b/Godeps/_workspace/src/github.com/google/go-snappy/snappy/encode.go
similarity index 100%
rename from Godeps/_workspace/src/github.com/syndtr/gosnappy/snappy/encode.go
rename to Godeps/_workspace/src/github.com/google/go-snappy/snappy/encode.go
diff --git a/Godeps/_workspace/src/github.com/syndtr/gosnappy/snappy/snappy.go b/Godeps/_workspace/src/github.com/google/go-snappy/snappy/snappy.go
similarity index 100%
rename from Godeps/_workspace/src/github.com/syndtr/gosnappy/snappy/snappy.go
rename to Godeps/_workspace/src/github.com/google/go-snappy/snappy/snappy.go
diff --git a/Godeps/_workspace/src/github.com/syndtr/gosnappy/snappy/snappy_test.go b/Godeps/_workspace/src/github.com/google/go-snappy/snappy/snappy_test.go
similarity index 100%
rename from Godeps/_workspace/src/github.com/syndtr/gosnappy/snappy/snappy_test.go
rename to Godeps/_workspace/src/github.com/google/go-snappy/snappy/snappy_test.go
diff --git a/Godeps/_workspace/src/github.com/syndtr/goleveldb/leveldb/table/reader.go b/Godeps/_workspace/src/github.com/syndtr/goleveldb/leveldb/table/reader.go
index f89e6bcd..0ed58fb5 100644
--- a/Godeps/_workspace/src/github.com/syndtr/goleveldb/leveldb/table/reader.go
+++ b/Godeps/_workspace/src/github.com/syndtr/goleveldb/leveldb/table/reader.go
@@ -14,7 +14,7 @@ import (
 	"strings"
 	"sync"
 
-	"github.com/google/go-snappy/snappy"
+	"github.com/eris-ltd/eris-db/Godeps/_workspace/src/github.com/google/go-snappy/snappy"
 
 	"github.com/eris-ltd/eris-db/Godeps/_workspace/src/github.com/syndtr/goleveldb/leveldb/cache"
 	"github.com/eris-ltd/eris-db/Godeps/_workspace/src/github.com/syndtr/goleveldb/leveldb/comparer"
diff --git a/Godeps/_workspace/src/github.com/syndtr/goleveldb/leveldb/table/writer.go b/Godeps/_workspace/src/github.com/syndtr/goleveldb/leveldb/table/writer.go
index e064e78f..f656f421 100644
--- a/Godeps/_workspace/src/github.com/syndtr/goleveldb/leveldb/table/writer.go
+++ b/Godeps/_workspace/src/github.com/syndtr/goleveldb/leveldb/table/writer.go
@@ -12,7 +12,7 @@ import (
 	"fmt"
 	"io"
 
-	"github.com/google/go-snappy/snappy"
+	"github.com/eris-ltd/eris-db/Godeps/_workspace/src/github.com/google/go-snappy/snappy"
 
 	"github.com/eris-ltd/eris-db/Godeps/_workspace/src/github.com/syndtr/goleveldb/leveldb/comparer"
 	"github.com/eris-ltd/eris-db/Godeps/_workspace/src/github.com/syndtr/goleveldb/leveldb/filter"
-- 
GitLab