summaryrefslogtreecommitdiff
path: root/net-mgmt/intel-snap/files/patch-codegangsta
blob: aa01efb0d7712188b2af5590113f05af044a9aee (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
--- cmd/snapctl/commands.go.orig	2017-01-20 05:00:46 UTC
+++ cmd/snapctl/commands.go
@@ -24,7 +24,7 @@ import (
 	"strings"
 	"text/tabwriter"
 
-	"github.com/codegangsta/cli"
+	"github.com/urfave/cli"
 )
 
 var (
--- cmd/snapctl/config.go.orig	2017-01-20 05:00:46 UTC
+++ cmd/snapctl/config.go
@@ -28,7 +28,7 @@ import (
 	"strconv"
 	"text/tabwriter"
 
-	"github.com/codegangsta/cli"
+	"github.com/urfave/cli"
 	"github.com/intelsdi-x/snap/core/ctypes"
 )
 
--- cmd/snapctl/flags.go.orig	2017-01-20 05:00:46 UTC
+++ cmd/snapctl/flags.go
@@ -19,7 +19,7 @@ limitations under the License.
 
 package main
 
-import "github.com/codegangsta/cli"
+import "github.com/urfave/cli"
 
 var (
 
--- cmd/snapctl/main.go.orig	2017-01-20 05:00:46 UTC
+++ cmd/snapctl/main.go
@@ -28,7 +28,7 @@ import (
 
 	"golang.org/x/crypto/ssh/terminal"
 
-	"github.com/codegangsta/cli"
+	"github.com/urfave/cli"
 	"github.com/intelsdi-x/snap/mgmt/rest/client"
 )
 
--- cmd/snapctl/metric.go.orig	2017-01-20 05:00:46 UTC
+++ cmd/snapctl/metric.go
@@ -28,7 +28,7 @@ import (
 	"text/tabwriter"
 	"time"
 
-	"github.com/codegangsta/cli"
+	"github.com/urfave/cli"
 	"github.com/intelsdi-x/snap/mgmt/rest/client"
 	"github.com/intelsdi-x/snap/mgmt/rest/rbody"
 
--- cmd/snapctl/plugin.go.orig	2017-01-20 05:00:46 UTC
+++ cmd/snapctl/plugin.go
@@ -28,7 +28,7 @@ import (
 	"text/tabwriter"
 	"time"
 
-	"github.com/codegangsta/cli"
+	"github.com/urfave/cli"
 )
 
 func loadPlugin(ctx *cli.Context) error {
--- cmd/snapctl/task.go.orig	2017-01-20 05:00:46 UTC
+++ cmd/snapctl/task.go
@@ -33,7 +33,7 @@ import (
 	"text/tabwriter"
 	"time"
 
-	"github.com/codegangsta/cli"
+	"github.com/urfave/cli"
 	"github.com/intelsdi-x/snap/mgmt/rest/client"
 	"github.com/intelsdi-x/snap/scheduler/wmap"
 	"github.com/robfig/cron"
--- cmd/snapctl/tribe.go.orig	2017-01-20 05:00:46 UTC
+++ cmd/snapctl/tribe.go
@@ -27,7 +27,7 @@ import (
 	"sort"
 	"text/tabwriter"
 
-	"github.com/codegangsta/cli"
+	"github.com/urfave/cli"
 	"github.com/intelsdi-x/snap/mgmt/tribe/agreement"
 )
 
--- control/flags.go.orig	2017-01-20 05:00:46 UTC
+++ control/flags.go
@@ -22,7 +22,7 @@ package control
 import (
 	"fmt"
 
-	"github.com/codegangsta/cli"
+	"github.com/urfave/cli"
 )
 
 var (
--- mgmt/rest/flags.go.orig	2017-01-20 05:00:46 UTC
+++ mgmt/rest/flags.go
@@ -22,7 +22,7 @@ package rest
 import (
 	"fmt"
 
-	"github.com/codegangsta/cli"
+	"github.com/urfave/cli"
 )
 
 var (
--- mgmt/rest/log_handler.go.orig	2017-01-20 05:00:46 UTC
+++ mgmt/rest/log_handler.go
@@ -23,7 +23,7 @@ import (
 	"net/http"
 
 	log "github.com/Sirupsen/logrus"
-	"github.com/codegangsta/negroni"
+	"github.com/urfave/negroni"
 )
 
 // Logger is a snap middleware that logs to a logrus facility
--- mgmt/rest/server.go.orig	2017-02-06 20:08:19 UTC
+++ mgmt/rest/server.go
@@ -32,7 +32,7 @@ import (
 	"time"
 
 	log "github.com/Sirupsen/logrus"
-	"github.com/codegangsta/negroni"
+	"github.com/urfave/negroni"
 	"github.com/julienschmidt/httprouter"
 
 	"github.com/intelsdi-x/snap/core"
--- mgmt/tribe/flags.go.orig	2017-01-20 05:00:46 UTC
+++ mgmt/tribe/flags.go
@@ -22,7 +22,7 @@ package tribe
 import (
 	"fmt"
 
-	"github.com/codegangsta/cli"
+	"github.com/urfave/cli"
 )
 
 var (
--- scheduler/flags.go.orig	2017-01-20 05:00:46 UTC
+++ scheduler/flags.go
@@ -22,7 +22,7 @@ package scheduler
 import (
 	"fmt"
 
-	"github.com/codegangsta/cli"
+	"github.com/urfave/cli"
 )
 
 var (
--- snapd.go.orig	2017-01-20 05:00:46 UTC
+++ snapd.go
@@ -37,7 +37,7 @@ import (
 	"golang.org/x/crypto/ssh/terminal"
 
 	log "github.com/Sirupsen/logrus"
-	"github.com/codegangsta/cli"
+	"github.com/urfave/cli"
 	"github.com/vrischmann/jsonutil"
 
 	"github.com/intelsdi-x/snap/control"