Blame SOURCES/0001-change-import-paths.patch

4ca5d9
From bed55580f972cc08209357fce5589fefadf398af Mon Sep 17 00:00:00 2001
4ca5d9
From: Jan Chaloupka <jchaloup@redhat.com>
4ca5d9
Date: Tue, 17 May 2016 21:44:45 +0200
4ca5d9
Subject: [PATCH] change import paths
4ca5d9
4ca5d9
---
4ca5d9
 tools/benchmark/cmd/put.go   | 2 +-
4ca5d9
 tools/benchmark/cmd/range.go | 2 +-
4ca5d9
 tools/benchmark/cmd/root.go  | 2 +-
4ca5d9
 tools/benchmark/cmd/stm.go   | 2 +-
4ca5d9
 tools/benchmark/cmd/watch.go | 2 +-
4ca5d9
 5 files changed, 5 insertions(+), 5 deletions(-)
4ca5d9
4ca5d9
diff --git a/tools/benchmark/cmd/put.go b/tools/benchmark/cmd/put.go
4ca5d9
index 5f92dd6..557d3f5 100644
4ca5d9
--- a/tools/benchmark/cmd/put.go
4ca5d9
+++ b/tools/benchmark/cmd/put.go
4ca5d9
@@ -24,7 +24,7 @@ import (
4ca5d9
 	v3 "github.com/coreos/etcd/clientv3"
4ca5d9
 	"github.com/spf13/cobra"
4ca5d9
 	"golang.org/x/net/context"
4ca5d9
-	"gopkg.in/cheggaaa/pb.v1"
4ca5d9
+	"github.com/cheggaaa/pb"
4ca5d9
 )
4ca5d9
 
4ca5d9
 // putCmd represents the put command
4ca5d9
diff --git a/tools/benchmark/cmd/range.go b/tools/benchmark/cmd/range.go
4ca5d9
index 6e67e96..89a5f66 100644
4ca5d9
--- a/tools/benchmark/cmd/range.go
4ca5d9
+++ b/tools/benchmark/cmd/range.go
4ca5d9
@@ -22,7 +22,7 @@ import (
4ca5d9
 	v3 "github.com/coreos/etcd/clientv3"
4ca5d9
 	"github.com/spf13/cobra"
4ca5d9
 	"golang.org/x/net/context"
4ca5d9
-	"gopkg.in/cheggaaa/pb.v1"
4ca5d9
+	"github.com/cheggaaa/pb"
4ca5d9
 )
4ca5d9
 
4ca5d9
 // rangeCmd represents the range command
4ca5d9
diff --git a/tools/benchmark/cmd/root.go b/tools/benchmark/cmd/root.go
4ca5d9
index a40731b..a7678c2 100644
4ca5d9
--- a/tools/benchmark/cmd/root.go
4ca5d9
+++ b/tools/benchmark/cmd/root.go
4ca5d9
@@ -19,7 +19,7 @@ import (
4ca5d9
 
4ca5d9
 	"github.com/coreos/etcd/pkg/transport"
4ca5d9
 	"github.com/spf13/cobra"
4ca5d9
-	"gopkg.in/cheggaaa/pb.v1"
4ca5d9
+	"github.com/cheggaaa/pb"
4ca5d9
 )
4ca5d9
 
4ca5d9
 // This represents the base command when called without any subcommands
4ca5d9
diff --git a/tools/benchmark/cmd/stm.go b/tools/benchmark/cmd/stm.go
4ca5d9
index ce29637..ac677fd 100644
4ca5d9
--- a/tools/benchmark/cmd/stm.go
4ca5d9
+++ b/tools/benchmark/cmd/stm.go
4ca5d9
@@ -25,7 +25,7 @@ import (
4ca5d9
 	v3sync "github.com/coreos/etcd/clientv3/concurrency"
4ca5d9
 	"github.com/spf13/cobra"
4ca5d9
 	"golang.org/x/net/context"
4ca5d9
-	"gopkg.in/cheggaaa/pb.v1"
4ca5d9
+	"github.com/cheggaaa/pb"
4ca5d9
 )
4ca5d9
 
4ca5d9
 // stmCmd represents the STM benchmark command
4ca5d9
diff --git a/tools/benchmark/cmd/watch.go b/tools/benchmark/cmd/watch.go
4ca5d9
index cd20251..376ee74 100644
4ca5d9
--- a/tools/benchmark/cmd/watch.go
4ca5d9
+++ b/tools/benchmark/cmd/watch.go
4ca5d9
@@ -26,7 +26,7 @@ import (
4ca5d9
 
4ca5d9
 	"github.com/spf13/cobra"
4ca5d9
 	"golang.org/x/net/context"
4ca5d9
-	"gopkg.in/cheggaaa/pb.v1"
4ca5d9
+	"github.com/cheggaaa/pb"
4ca5d9
 )
4ca5d9
 
4ca5d9
 // watchCmd represents the watch command
4ca5d9
-- 
4ca5d9
1.9.3
4ca5d9