Return-Path: X-Original-To: archive-asf-public-internal@cust-asf2.ponee.io Delivered-To: archive-asf-public-internal@cust-asf2.ponee.io Received: from cust-asf.ponee.io (cust-asf.ponee.io [163.172.22.183]) by cust-asf2.ponee.io (Postfix) with ESMTP id 4D38B2009E8 for ; Mon, 30 May 2016 17:01:23 +0200 (CEST) Received: by cust-asf.ponee.io (Postfix) id 4BC23160A3E; Mon, 30 May 2016 15:01:23 +0000 (UTC) Delivered-To: archive-asf-public@cust-asf.ponee.io Received: from mail.apache.org (hermes.apache.org [140.211.11.3]) by cust-asf.ponee.io (Postfix) with SMTP id 95EED160A3C for ; Mon, 30 May 2016 17:01:22 +0200 (CEST) Received: (qmail 24958 invoked by uid 500); 30 May 2016 15:01:21 -0000 Mailing-List: contact commits-help@brooklyn.apache.org; run by ezmlm Precedence: bulk List-Help: List-Unsubscribe: List-Post: List-Id: Reply-To: dev@brooklyn.apache.org Delivered-To: mailing list commits@brooklyn.apache.org Received: (qmail 24920 invoked by uid 99); 30 May 2016 15:01:21 -0000 Received: from git1-us-west.apache.org (HELO git1-us-west.apache.org) (140.211.11.23) by apache.org (qpsmtpd/0.29) with ESMTP; Mon, 30 May 2016 15:01:21 +0000 Received: by git1-us-west.apache.org (ASF Mail Server at git1-us-west.apache.org, from userid 33) id 83C54DFDEF; Mon, 30 May 2016 15:01:21 +0000 (UTC) Content-Type: text/plain; charset="us-ascii" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit From: svet@apache.org To: commits@brooklyn.apache.org Date: Mon, 30 May 2016 15:01:23 -0000 Message-Id: <7d73539edf5446748cdbcc54f9d4267e@git.apache.org> In-Reply-To: <471de79b9f2340ffbe708d0ff5d6503d@git.apache.org> References: <471de79b9f2340ffbe708d0ff5d6503d@git.apache.org> X-Mailer: ASF-Git Admin Mailer Subject: [3/3] brooklyn-client git commit: Closes #20 archived-at: Mon, 30 May 2016 15:01:23 -0000 Closes #20 move codegangsta to new urfave org - see https://github.com/urfave/cli/commit/024b4c6240a085f57e3c7e7378106a3252dc0a77 as an aside we should look further into the 1.6 vendoring tooling as we're aren't persisting a reference to the source repo (commit id/tag/branch etc). Project: http://git-wip-us.apache.org/repos/asf/brooklyn-client/repo Commit: http://git-wip-us.apache.org/repos/asf/brooklyn-client/commit/39fad136 Tree: http://git-wip-us.apache.org/repos/asf/brooklyn-client/tree/39fad136 Diff: http://git-wip-us.apache.org/repos/asf/brooklyn-client/diff/39fad136 Branch: refs/heads/master Commit: 39fad136da7759f7a842e88909baf3eb43749ca7 Parents: 217b28c e259363 Author: Svetoslav Neykov Authored: Mon May 30 18:01:14 2016 +0300 Committer: Svetoslav Neykov Committed: Mon May 30 18:01:14 2016 +0300 ---------------------------------------------------------------------- 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/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/github.com/urfave/cli/.travis.yml | 19 + vendor/github.com/urfave/cli/LICENSE | 21 + vendor/github.com/urfave/cli/README.md | 352 +++++++++++++ vendor/github.com/urfave/cli/app.go | 349 +++++++++++++ vendor/github.com/urfave/cli/appveyor.yml | 16 + vendor/github.com/urfave/cli/cli.go | 40 ++ vendor/github.com/urfave/cli/command.go | 250 +++++++++ vendor/github.com/urfave/cli/context.go | 388 ++++++++++++++ vendor/github.com/urfave/cli/flag.go | 546 ++++++++++++++++++++ vendor/github.com/urfave/cli/help.go | 248 +++++++++ 54 files changed, 2265 insertions(+), 2265 deletions(-) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/brooklyn-client/blob/39fad136/commands/add-catalog.go ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/brooklyn-client/blob/39fad136/commands/add-children.go ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/brooklyn-client/blob/39fad136/commands/deploy.go ----------------------------------------------------------------------