You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@brooklyn.apache.org by sv...@apache.org on 2016/04/06 17:11:40 UTC

[4/4] brooklyn-client git commit: Closes #16

Closes #16

Use Go 1.6 vendoring instead of Godep.

Uses current version of dependencies, just moving them to the vendor directory.


Project: http://git-wip-us.apache.org/repos/asf/brooklyn-client/repo
Commit: http://git-wip-us.apache.org/repos/asf/brooklyn-client/commit/f8d18aeb
Tree: http://git-wip-us.apache.org/repos/asf/brooklyn-client/tree/f8d18aeb
Diff: http://git-wip-us.apache.org/repos/asf/brooklyn-client/diff/f8d18aeb

Branch: refs/heads/master
Commit: f8d18aeb3bbd9fedaaa7898192d75588d391803b
Parents: 23421fc 3fa12d4
Author: Svetoslav Neykov <sv...@cloudsoftcorp.com>
Authored: Wed Apr 6 18:10:43 2016 +0300
Committer: Svetoslav Neykov <sv...@cloudsoftcorp.com>
Committed: Wed Apr 6 18:10:43 2016 +0300

----------------------------------------------------------------------
 .gitignore                                      |   2 -
 README.md                                       |  34 +-
 br/Godeps/Godeps.json                           | 135 ---
 br/Godeps/Readme                                |   5 -
 br/Godeps/_workspace/.gitignore                 |   2 -
 .../src/github.com/codegangsta/cli/.travis.yml  |  19 -
 .../src/github.com/codegangsta/cli/LICENSE      |  21 -
 .../src/github.com/codegangsta/cli/README.md    | 352 --------
 .../src/github.com/codegangsta/cli/app.go       | 349 --------
 .../src/github.com/codegangsta/cli/appveyor.yml |  16 -
 .../src/github.com/codegangsta/cli/cli.go       |  40 -
 .../src/github.com/codegangsta/cli/command.go   | 250 ------
 .../src/github.com/codegangsta/cli/context.go   | 388 --------
 .../src/github.com/codegangsta/cli/flag.go      | 546 ------------
 .../src/github.com/codegangsta/cli/help.go      | 248 ------
 .../_workspace/src/golang.org/x/crypto/LICENSE  |  27 -
 .../_workspace/src/golang.org/x/crypto/PATENTS  |  22 -
 .../x/crypto/ssh/terminal/terminal.go           | 892 -------------------
 .../golang.org/x/crypto/ssh/terminal/util.go    | 128 ---
 .../x/crypto/ssh/terminal/util_bsd.go           |  12 -
 .../x/crypto/ssh/terminal/util_linux.go         |  11 -
 .../x/crypto/ssh/terminal/util_windows.go       | 174 ----
 pom.xml                                         |   2 +-
 release/build.sh                                |  13 +-
 vendor/github.com/codegangsta/cli/.travis.yml   |  19 +
 vendor/github.com/codegangsta/cli/LICENSE       |  21 +
 vendor/github.com/codegangsta/cli/README.md     | 352 ++++++++
 vendor/github.com/codegangsta/cli/app.go        | 349 ++++++++
 vendor/github.com/codegangsta/cli/appveyor.yml  |  16 +
 vendor/github.com/codegangsta/cli/cli.go        |  40 +
 vendor/github.com/codegangsta/cli/command.go    | 250 ++++++
 vendor/github.com/codegangsta/cli/context.go    | 388 ++++++++
 vendor/github.com/codegangsta/cli/flag.go       | 546 ++++++++++++
 vendor/github.com/codegangsta/cli/help.go       | 248 ++++++
 vendor/golang.org/x/crypto/LICENSE              |  27 +
 vendor/golang.org/x/crypto/PATENTS              |  22 +
 .../x/crypto/ssh/terminal/terminal.go           | 892 +++++++++++++++++++
 vendor/golang.org/x/crypto/ssh/terminal/util.go | 128 +++
 .../x/crypto/ssh/terminal/util_bsd.go           |  12 +
 .../x/crypto/ssh/terminal/util_linux.go         |  11 +
 .../x/crypto/ssh/terminal/util_windows.go       | 174 ++++
 41 files changed, 3501 insertions(+), 3682 deletions(-)
----------------------------------------------------------------------