From e2593634481734830ec3c4af0b8ad3db64a405e4 Mon Sep 17 00:00:00 2001 From: John McCabe Date: Tue, 24 May 2016 16:53:55 +0100 Subject: [PATCH] move codegangsta to new urfave org - see https://github.com/urfave/cli/commit/024b4c6240a085f57e3c7e7378106a3252dc0a77 --- LICENSE | 4 ++-- app/app.go | 2 +- command/command.go | 2 +- command_metadata/command_metadata.go | 2 +- command_runner/runner.go | 2 +- commands/access.go | 2 +- commands/activity-stream.go | 2 +- commands/activity.go | 2 +- commands/add-catalog.go | 2 +- commands/add-children.go | 2 +- commands/add-policy.go | 2 +- commands/application.go | 2 +- commands/catalog.go | 2 +- commands/config.go | 2 +- commands/delete.go | 2 +- commands/deploy.go | 2 +- commands/destroy-policy.go | 2 +- commands/effector.go | 2 +- commands/entity.go | 2 +- commands/invoke.go | 2 +- commands/list.go | 2 +- commands/locations.go | 2 +- commands/login.go | 2 +- commands/policy.go | 2 +- commands/rename.go | 2 +- commands/sensor.go | 2 +- commands/set.go | 2 +- commands/spec.go | 2 +- commands/start-policy.go | 2 +- commands/stop-policy.go | 2 +- commands/tree.go | 2 +- commands/version.go | 2 +- release/license/files/LICENSE | 4 ++-- release/license/source-inclusions.yaml | 2 +- vendor/github.com/{codegangsta => urfave}/cli/.travis.yml | 0 vendor/github.com/{codegangsta => urfave}/cli/LICENSE | 0 vendor/github.com/{codegangsta => urfave}/cli/README.md | 0 vendor/github.com/{codegangsta => urfave}/cli/app.go | 0 vendor/github.com/{codegangsta => urfave}/cli/appveyor.yml | 0 vendor/github.com/{codegangsta => urfave}/cli/cli.go | 0 vendor/github.com/{codegangsta => urfave}/cli/command.go | 0 vendor/github.com/{codegangsta => urfave}/cli/context.go | 0 vendor/github.com/{codegangsta => urfave}/cli/flag.go | 0 vendor/github.com/{codegangsta => urfave}/cli/help.go | 0 44 files changed, 36 insertions(+), 36 deletions(-) rename vendor/github.com/{codegangsta => urfave}/cli/.travis.yml (100%) rename vendor/github.com/{codegangsta => urfave}/cli/LICENSE (100%) rename vendor/github.com/{codegangsta => urfave}/cli/README.md (100%) rename vendor/github.com/{codegangsta => urfave}/cli/app.go (100%) rename vendor/github.com/{codegangsta => urfave}/cli/appveyor.yml (100%) rename vendor/github.com/{codegangsta => urfave}/cli/cli.go (100%) rename vendor/github.com/{codegangsta => urfave}/cli/command.go (100%) rename vendor/github.com/{codegangsta => urfave}/cli/context.go (100%) rename vendor/github.com/{codegangsta => urfave}/cli/flag.go (100%) rename vendor/github.com/{codegangsta => urfave}/cli/help.go (100%) diff --git a/LICENSE b/LICENSE index 13abdda..9764158 100644 --- a/LICENSE +++ b/LICENSE @@ -194,8 +194,8 @@ Contents: (2) Notices for bundled software -This project includes the software: github.com/codegangsta/cli - Available at: https://github.com/codegangsta/cli +This project includes the software: github.com/urfave/cli + Available at: https://github.com/urfave/cli Used under the following license: The MIT License (http://opensource.org/licenses/MIT) Copyright (C) 2013 Jeremy Saenz diff --git a/app/app.go b/app/app.go index 55557bf..5c83a41 100644 --- a/app/app.go +++ b/app/app.go @@ -23,7 +23,7 @@ import ( "github.com/apache/brooklyn-client/command_metadata" "github.com/apache/brooklyn-client/command_runner" "github.com/apache/brooklyn-client/error_handler" - "github.com/codegangsta/cli" + "github.com/urfave/cli" "os" "strings" ) diff --git a/command/command.go b/command/command.go index 14c03a5..1a16282 100644 --- a/command/command.go +++ b/command/command.go @@ -21,7 +21,7 @@ package command import ( "github.com/apache/brooklyn-client/command_metadata" "github.com/apache/brooklyn-client/scope" - "github.com/codegangsta/cli" + "github.com/urfave/cli" ) type Command interface { diff --git a/command_metadata/command_metadata.go b/command_metadata/command_metadata.go index 7f5c1b9..eac321f 100644 --- a/command_metadata/command_metadata.go +++ b/command_metadata/command_metadata.go @@ -18,7 +18,7 @@ */ package command_metadata -import "github.com/codegangsta/cli" +import "github.com/urfave/cli" type CommandMetadata struct { Name string diff --git a/command_runner/runner.go b/command_runner/runner.go index 5fc86e5..c123b5f 100644 --- a/command_runner/runner.go +++ b/command_runner/runner.go @@ -21,7 +21,7 @@ package command_runner import ( "github.com/apache/brooklyn-client/command_factory" "github.com/apache/brooklyn-client/scope" - "github.com/codegangsta/cli" + "github.com/urfave/cli" ) type Runner interface { diff --git a/commands/access.go b/commands/access.go index 1ddef76..87e26cd 100644 --- a/commands/access.go +++ b/commands/access.go @@ -25,7 +25,7 @@ import ( "github.com/apache/brooklyn-client/error_handler" "github.com/apache/brooklyn-client/net" "github.com/apache/brooklyn-client/scope" - "github.com/codegangsta/cli" + "github.com/urfave/cli" ) type Access struct { diff --git a/commands/activity-stream.go b/commands/activity-stream.go index 38cec20..eceadc4 100644 --- a/commands/activity-stream.go +++ b/commands/activity-stream.go @@ -25,7 +25,7 @@ import ( "github.com/apache/brooklyn-client/error_handler" "github.com/apache/brooklyn-client/net" "github.com/apache/brooklyn-client/scope" - "github.com/codegangsta/cli" + "github.com/urfave/cli" ) type ActivityStreamEnv struct { diff --git a/commands/activity.go b/commands/activity.go index cee097b..d748c1a 100644 --- a/commands/activity.go +++ b/commands/activity.go @@ -28,7 +28,7 @@ import ( "github.com/apache/brooklyn-client/net" "github.com/apache/brooklyn-client/scope" "github.com/apache/brooklyn-client/terminal" - "github.com/codegangsta/cli" + "github.com/urfave/cli" "sort" "strconv" "strings" diff --git a/commands/add-catalog.go b/commands/add-catalog.go index bf79f23..14d3c9b 100644 --- a/commands/add-catalog.go +++ b/commands/add-catalog.go @@ -25,7 +25,7 @@ import ( "github.com/apache/brooklyn-client/error_handler" "github.com/apache/brooklyn-client/net" "github.com/apache/brooklyn-client/scope" - "github.com/codegangsta/cli" + "github.com/urfave/cli" ) type AddCatalog struct { diff --git a/commands/add-children.go b/commands/add-children.go index 6492044..049fecb 100644 --- a/commands/add-children.go +++ b/commands/add-children.go @@ -25,7 +25,7 @@ import ( "github.com/apache/brooklyn-client/net" "github.com/apache/brooklyn-client/scope" "github.com/apache/brooklyn-client/terminal" - "github.com/codegangsta/cli" + "github.com/urfave/cli" "time" ) diff --git a/commands/add-policy.go b/commands/add-policy.go index a17e6c5..35de8c4 100644 --- a/commands/add-policy.go +++ b/commands/add-policy.go @@ -19,7 +19,7 @@ package commands import ( - "github.com/codegangsta/cli" + "github.com/urfave/cli" //"github.com/apache/brooklyn-client/api/entity_policies" "github.com/apache/brooklyn-client/command_metadata" "github.com/apache/brooklyn-client/net" diff --git a/commands/application.go b/commands/application.go index 3538689..c321227 100644 --- a/commands/application.go +++ b/commands/application.go @@ -29,7 +29,7 @@ import ( "github.com/apache/brooklyn-client/net" "github.com/apache/brooklyn-client/scope" "github.com/apache/brooklyn-client/terminal" - "github.com/codegangsta/cli" + "github.com/urfave/cli" "strings" ) diff --git a/commands/catalog.go b/commands/catalog.go index 2cb884d..fd1d8ad 100644 --- a/commands/catalog.go +++ b/commands/catalog.go @@ -25,7 +25,7 @@ import ( "github.com/apache/brooklyn-client/net" "github.com/apache/brooklyn-client/scope" "github.com/apache/brooklyn-client/terminal" - "github.com/codegangsta/cli" + "github.com/urfave/cli" ) type Catalog struct { diff --git a/commands/config.go b/commands/config.go index 8af3046..33d9cba 100644 --- a/commands/config.go +++ b/commands/config.go @@ -26,7 +26,7 @@ import ( "github.com/apache/brooklyn-client/net" "github.com/apache/brooklyn-client/scope" "github.com/apache/brooklyn-client/terminal" - "github.com/codegangsta/cli" + "github.com/urfave/cli" ) type Config struct { diff --git a/commands/delete.go b/commands/delete.go index e4bfdae..90c60f9 100644 --- a/commands/delete.go +++ b/commands/delete.go @@ -25,7 +25,7 @@ import ( "github.com/apache/brooklyn-client/error_handler" "github.com/apache/brooklyn-client/net" "github.com/apache/brooklyn-client/scope" - "github.com/codegangsta/cli" + "github.com/urfave/cli" ) type Delete struct { diff --git a/commands/deploy.go b/commands/deploy.go index 3b0607c..540a97f 100644 --- a/commands/deploy.go +++ b/commands/deploy.go @@ -26,7 +26,7 @@ import ( "github.com/apache/brooklyn-client/net" "github.com/apache/brooklyn-client/scope" "github.com/apache/brooklyn-client/terminal" - "github.com/codegangsta/cli" + "github.com/urfave/cli" "io/ioutil" "os" "strings" diff --git a/commands/destroy-policy.go b/commands/destroy-policy.go index c358d70..4ea37ec 100644 --- a/commands/destroy-policy.go +++ b/commands/destroy-policy.go @@ -25,7 +25,7 @@ import ( "github.com/apache/brooklyn-client/error_handler" "github.com/apache/brooklyn-client/net" "github.com/apache/brooklyn-client/scope" - "github.com/codegangsta/cli" + "github.com/urfave/cli" ) type DestroyPolicy struct { diff --git a/commands/effector.go b/commands/effector.go index 7105cf9..aeff664 100644 --- a/commands/effector.go +++ b/commands/effector.go @@ -25,7 +25,7 @@ import ( "github.com/apache/brooklyn-client/net" "github.com/apache/brooklyn-client/scope" "github.com/apache/brooklyn-client/terminal" - "github.com/codegangsta/cli" + "github.com/urfave/cli" "strings" ) diff --git a/commands/entity.go b/commands/entity.go index b6688a3..e5903c9 100644 --- a/commands/entity.go +++ b/commands/entity.go @@ -27,7 +27,7 @@ import ( "github.com/apache/brooklyn-client/net" "github.com/apache/brooklyn-client/scope" "github.com/apache/brooklyn-client/terminal" - "github.com/codegangsta/cli" + "github.com/urfave/cli" "os" ) diff --git a/commands/invoke.go b/commands/invoke.go index 21842f8..a719ed7 100644 --- a/commands/invoke.go +++ b/commands/invoke.go @@ -26,7 +26,7 @@ import ( "github.com/apache/brooklyn-client/error_handler" "github.com/apache/brooklyn-client/net" "github.com/apache/brooklyn-client/scope" - "github.com/codegangsta/cli" + "github.com/urfave/cli" "io/ioutil" "strings" ) diff --git a/commands/list.go b/commands/list.go index d675f77..7758568 100644 --- a/commands/list.go +++ b/commands/list.go @@ -25,7 +25,7 @@ import ( "github.com/apache/brooklyn-client/error_handler" "github.com/apache/brooklyn-client/net" "github.com/apache/brooklyn-client/scope" - "github.com/codegangsta/cli" + "github.com/urfave/cli" "strings" ) diff --git a/commands/locations.go b/commands/locations.go index 79646d5..f197130 100644 --- a/commands/locations.go +++ b/commands/locations.go @@ -25,7 +25,7 @@ import ( "github.com/apache/brooklyn-client/net" "github.com/apache/brooklyn-client/scope" "github.com/apache/brooklyn-client/terminal" - "github.com/codegangsta/cli" + "github.com/urfave/cli" ) type Locations struct { diff --git a/commands/login.go b/commands/login.go index fd47196..de6eaf1 100644 --- a/commands/login.go +++ b/commands/login.go @@ -26,7 +26,7 @@ import ( "github.com/apache/brooklyn-client/io" "github.com/apache/brooklyn-client/net" "github.com/apache/brooklyn-client/scope" - "github.com/codegangsta/cli" + "github.com/urfave/cli" "golang.org/x/crypto/ssh/terminal" "syscall" ) diff --git a/commands/policy.go b/commands/policy.go index b548ab8..1d587fd 100644 --- a/commands/policy.go +++ b/commands/policy.go @@ -27,7 +27,7 @@ import ( "github.com/apache/brooklyn-client/net" "github.com/apache/brooklyn-client/scope" "github.com/apache/brooklyn-client/terminal" - "github.com/codegangsta/cli" + "github.com/urfave/cli" "sort" ) diff --git a/commands/rename.go b/commands/rename.go index 70df396..7891971 100644 --- a/commands/rename.go +++ b/commands/rename.go @@ -25,7 +25,7 @@ import ( "github.com/apache/brooklyn-client/error_handler" "github.com/apache/brooklyn-client/net" "github.com/apache/brooklyn-client/scope" - "github.com/codegangsta/cli" + "github.com/urfave/cli" ) type Rename struct { diff --git a/commands/sensor.go b/commands/sensor.go index d4fb78d..ac75660 100644 --- a/commands/sensor.go +++ b/commands/sensor.go @@ -27,7 +27,7 @@ import ( "github.com/apache/brooklyn-client/net" "github.com/apache/brooklyn-client/scope" "github.com/apache/brooklyn-client/terminal" - "github.com/codegangsta/cli" + "github.com/urfave/cli" "sort" ) diff --git a/commands/set.go b/commands/set.go index 5342e4d..ae1a594 100644 --- a/commands/set.go +++ b/commands/set.go @@ -25,7 +25,7 @@ import ( "github.com/apache/brooklyn-client/error_handler" "github.com/apache/brooklyn-client/net" "github.com/apache/brooklyn-client/scope" - "github.com/codegangsta/cli" + "github.com/urfave/cli" ) type SetConfig struct { diff --git a/commands/spec.go b/commands/spec.go index 64d0a8c..06819b9 100644 --- a/commands/spec.go +++ b/commands/spec.go @@ -25,7 +25,7 @@ import ( "github.com/apache/brooklyn-client/error_handler" "github.com/apache/brooklyn-client/net" "github.com/apache/brooklyn-client/scope" - "github.com/codegangsta/cli" + "github.com/urfave/cli" ) type Spec struct { diff --git a/commands/start-policy.go b/commands/start-policy.go index 46c3823..68dbec7 100644 --- a/commands/start-policy.go +++ b/commands/start-policy.go @@ -25,7 +25,7 @@ import ( "github.com/apache/brooklyn-client/error_handler" "github.com/apache/brooklyn-client/net" "github.com/apache/brooklyn-client/scope" - "github.com/codegangsta/cli" + "github.com/urfave/cli" ) type StartPolicy struct { diff --git a/commands/stop-policy.go b/commands/stop-policy.go index da67bea..2700802 100644 --- a/commands/stop-policy.go +++ b/commands/stop-policy.go @@ -25,7 +25,7 @@ import ( "github.com/apache/brooklyn-client/error_handler" "github.com/apache/brooklyn-client/net" "github.com/apache/brooklyn-client/scope" - "github.com/codegangsta/cli" + "github.com/urfave/cli" ) type StopPolicy struct { diff --git a/commands/tree.go b/commands/tree.go index 96e19d6..5665997 100644 --- a/commands/tree.go +++ b/commands/tree.go @@ -26,7 +26,7 @@ import ( "github.com/apache/brooklyn-client/models" "github.com/apache/brooklyn-client/net" "github.com/apache/brooklyn-client/scope" - "github.com/codegangsta/cli" + "github.com/urfave/cli" ) type Tree struct { diff --git a/commands/version.go b/commands/version.go index a378e1e..39de4b6 100644 --- a/commands/version.go +++ b/commands/version.go @@ -25,7 +25,7 @@ import ( "github.com/apache/brooklyn-client/error_handler" "github.com/apache/brooklyn-client/net" "github.com/apache/brooklyn-client/scope" - "github.com/codegangsta/cli" + "github.com/urfave/cli" ) type Version struct { diff --git a/release/license/files/LICENSE b/release/license/files/LICENSE index 13abdda..9764158 100644 --- a/release/license/files/LICENSE +++ b/release/license/files/LICENSE @@ -194,8 +194,8 @@ Contents: (2) Notices for bundled software -This project includes the software: github.com/codegangsta/cli - Available at: https://github.com/codegangsta/cli +This project includes the software: github.com/urfave/cli + Available at: https://github.com/urfave/cli Used under the following license: The MIT License (http://opensource.org/licenses/MIT) Copyright (C) 2013 Jeremy Saenz diff --git a/release/license/source-inclusions.yaml b/release/license/source-inclusions.yaml index c985c5b..dddc9dc 100644 --- a/release/license/source-inclusions.yaml +++ b/release/license/source-inclusions.yaml @@ -20,5 +20,5 @@ # extras file for org.heneveld.license-audit-maven-plugin # listing projects from which *source* files are included -- id: github.com/codegangsta/cli +- id: github.com/urfave/cli - id: golang.org/x/crypto/ssh diff --git a/vendor/github.com/codegangsta/cli/.travis.yml b/vendor/github.com/urfave/cli/.travis.yml similarity index 100% rename from vendor/github.com/codegangsta/cli/.travis.yml rename to vendor/github.com/urfave/cli/.travis.yml diff --git a/vendor/github.com/codegangsta/cli/LICENSE b/vendor/github.com/urfave/cli/LICENSE similarity index 100% rename from vendor/github.com/codegangsta/cli/LICENSE rename to vendor/github.com/urfave/cli/LICENSE diff --git a/vendor/github.com/codegangsta/cli/README.md b/vendor/github.com/urfave/cli/README.md similarity index 100% rename from vendor/github.com/codegangsta/cli/README.md rename to vendor/github.com/urfave/cli/README.md diff --git a/vendor/github.com/codegangsta/cli/app.go b/vendor/github.com/urfave/cli/app.go similarity index 100% rename from vendor/github.com/codegangsta/cli/app.go rename to vendor/github.com/urfave/cli/app.go diff --git a/vendor/github.com/codegangsta/cli/appveyor.yml b/vendor/github.com/urfave/cli/appveyor.yml similarity index 100% rename from vendor/github.com/codegangsta/cli/appveyor.yml rename to vendor/github.com/urfave/cli/appveyor.yml diff --git a/vendor/github.com/codegangsta/cli/cli.go b/vendor/github.com/urfave/cli/cli.go similarity index 100% rename from vendor/github.com/codegangsta/cli/cli.go rename to vendor/github.com/urfave/cli/cli.go diff --git a/vendor/github.com/codegangsta/cli/command.go b/vendor/github.com/urfave/cli/command.go similarity index 100% rename from vendor/github.com/codegangsta/cli/command.go rename to vendor/github.com/urfave/cli/command.go diff --git a/vendor/github.com/codegangsta/cli/context.go b/vendor/github.com/urfave/cli/context.go similarity index 100% rename from vendor/github.com/codegangsta/cli/context.go rename to vendor/github.com/urfave/cli/context.go diff --git a/vendor/github.com/codegangsta/cli/flag.go b/vendor/github.com/urfave/cli/flag.go similarity index 100% rename from vendor/github.com/codegangsta/cli/flag.go rename to vendor/github.com/urfave/cli/flag.go diff --git a/vendor/github.com/codegangsta/cli/help.go b/vendor/github.com/urfave/cli/help.go similarity index 100% rename from vendor/github.com/codegangsta/cli/help.go rename to vendor/github.com/urfave/cli/help.go