You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@brooklyn.apache.org by ge...@apache.org on 2018/03/23 13:50:52 UTC

[25/25] brooklyn-client git commit: Closes #68

Closes #68

Temporarily use fork of NodePrime repo

See https://lists.apache.org/thread.html/10a74756dbeb1243928eb87c379b01ba58357a6204149d98676fa025@%3Cdev.brooklyn.apache.org%3E

Until this is resolved we can use John's fork


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

Branch: refs/heads/master
Commit: 5b640b8d2eaf8da93033bcbeaad4bbd8eadf0679
Parents: 0525221 799e9cc
Author: Geoff Macartney <ge...@cloudsoftcorp.com>
Authored: Fri Mar 23 13:50:16 2018 +0000
Committer: Geoff Macartney <ge...@cloudsoftcorp.com>
Committed: Fri Mar 23 13:50:16 2018 +0000

----------------------------------------------------------------------
 cli/.gitignore                                  |    1 -
 cli/README.md                                   |   13 -
 cli/glide.lock                                  |    5 +-
 cli/glide.yaml                                  |    4 +-
 cli/release/build.sh                            |   13 -
 .../github.com/NodePrime/jsonpath/.drone.yml    |   21 +
 .../github.com/NodePrime/jsonpath/.gitignore    |   24 +
 .../github.com/NodePrime/jsonpath/LICENSE       |   21 +
 .../github.com/NodePrime/jsonpath/README.md     |  138 ++
 .../NodePrime/jsonpath/cli/jsonpath/main.go     |   94 ++
 .../github.com/NodePrime/jsonpath/constants.go  |   14 +
 .../github.com/NodePrime/jsonpath/eval.go       |  335 ++++
 .../NodePrime/jsonpath/eval_states.go           |  193 +++
 .../github.com/NodePrime/jsonpath/eval_test.go  |  101 ++
 .../github.com/NodePrime/jsonpath/expression.go |  429 +++++
 .../NodePrime/jsonpath/expression_states.go     |  287 ++++
 .../jsonpath/expression_states_test.go          |   40 +
 .../NodePrime/jsonpath/expression_test.go       |  226 +++
 .../NodePrime/jsonpath/json_states.go           |  266 +++
 .../NodePrime/jsonpath/json_states_test.go      |  172 ++
 .../github.com/NodePrime/jsonpath/lexer.go      |   86 +
 .../NodePrime/jsonpath/lexer_reader.go          |  161 ++
 .../NodePrime/jsonpath/lexer_slice.go           |  131 ++
 .../github.com/NodePrime/jsonpath/lexer_test.go |  309 ++++
 .../github.com/NodePrime/jsonpath/misc.go       |  181 +++
 .../github.com/NodePrime/jsonpath/path.go       |  208 +++
 .../NodePrime/jsonpath/path_states.go           |  213 +++
 .../NodePrime/jsonpath/path_states_test.go      |   30 +
 .../github.com/NodePrime/jsonpath/path_test.go  |   40 +
 .../github.com/NodePrime/jsonpath/queue.go      |   55 +
 .../github.com/NodePrime/jsonpath/result.go     |   57 +
 cli/vendor/github.com/NodePrime/jsonpath/run.go |   27 +
 .../github.com/NodePrime/jsonpath/stack.go      |  148 ++
 .../github.com/NodePrime/jsonpath/stack_test.go |   56 +
 cli/vendor/github.com/urfave/cli/.travis.yml    |   19 +
 cli/vendor/github.com/urfave/cli/LICENSE        |   21 +
 cli/vendor/github.com/urfave/cli/README.md      |  352 ++++
 cli/vendor/github.com/urfave/cli/app.go         |  349 ++++
 cli/vendor/github.com/urfave/cli/app_test.go    | 1047 ++++++++++++
 cli/vendor/github.com/urfave/cli/appveyor.yml   |   16 +
 .../urfave/cli/autocomplete/bash_autocomplete   |   14 +
 .../urfave/cli/autocomplete/zsh_autocomplete    |    5 +
 cli/vendor/github.com/urfave/cli/cli.go         |   40 +
 cli/vendor/github.com/urfave/cli/command.go     |  250 +++
 .../github.com/urfave/cli/command_test.go       |   97 ++
 cli/vendor/github.com/urfave/cli/context.go     |  388 +++++
 .../github.com/urfave/cli/context_test.go       |  113 ++
 cli/vendor/github.com/urfave/cli/flag.go        |  546 +++++++
 cli/vendor/github.com/urfave/cli/flag_test.go   |  859 ++++++++++
 cli/vendor/github.com/urfave/cli/help.go        |  248 +++
 cli/vendor/github.com/urfave/cli/help_test.go   |   94 ++
 .../github.com/urfave/cli/helpers_test.go       |   19 +
 cli/vendor/golang.org/x/crypto/.gitattributes   |   10 +
 cli/vendor/golang.org/x/crypto/.gitignore       |    2 +
 cli/vendor/golang.org/x/crypto/AUTHORS          |    3 +
 cli/vendor/golang.org/x/crypto/CONTRIBUTING.md  |   31 +
 cli/vendor/golang.org/x/crypto/CONTRIBUTORS     |    3 +
 cli/vendor/golang.org/x/crypto/LICENSE          |   27 +
 cli/vendor/golang.org/x/crypto/PATENTS          |   22 +
 cli/vendor/golang.org/x/crypto/README           |    3 +
 cli/vendor/golang.org/x/crypto/bcrypt/base64.go |   35 +
 cli/vendor/golang.org/x/crypto/bcrypt/bcrypt.go |  294 ++++
 .../golang.org/x/crypto/bcrypt/bcrypt_test.go   |  226 +++
 .../golang.org/x/crypto/blowfish/block.go       |  159 ++
 .../x/crypto/blowfish/blowfish_test.go          |  274 ++++
 .../golang.org/x/crypto/blowfish/cipher.go      |   91 ++
 .../golang.org/x/crypto/blowfish/const.go       |  199 +++
 cli/vendor/golang.org/x/crypto/bn256/bn256.go   |  404 +++++
 .../golang.org/x/crypto/bn256/bn256_test.go     |  304 ++++
 .../golang.org/x/crypto/bn256/constants.go      |   44 +
 cli/vendor/golang.org/x/crypto/bn256/curve.go   |  278 ++++
 .../golang.org/x/crypto/bn256/example_test.go   |   43 +
 cli/vendor/golang.org/x/crypto/bn256/gfp12.go   |  200 +++
 cli/vendor/golang.org/x/crypto/bn256/gfp2.go    |  219 +++
 cli/vendor/golang.org/x/crypto/bn256/gfp6.go    |  296 ++++
 cli/vendor/golang.org/x/crypto/bn256/optate.go  |  395 +++++
 cli/vendor/golang.org/x/crypto/bn256/twist.go   |  249 +++
 cli/vendor/golang.org/x/crypto/cast5/cast5.go   |  526 ++++++
 .../golang.org/x/crypto/cast5/cast5_test.go     |  106 ++
 cli/vendor/golang.org/x/crypto/codereview.cfg   |    1 +
 .../x/crypto/curve25519/const_amd64.s           |   20 +
 .../x/crypto/curve25519/cswap_amd64.s           |   88 +
 .../x/crypto/curve25519/curve25519.go           |  841 ++++++++++
 .../x/crypto/curve25519/curve25519_test.go      |   29 +
 .../golang.org/x/crypto/curve25519/doc.go       |   23 +
 .../x/crypto/curve25519/freeze_amd64.s          |   94 ++
 .../x/crypto/curve25519/ladderstep_amd64.s      | 1398 ++++++++++++++++
 .../x/crypto/curve25519/mont25519_amd64.go      |  240 +++
 .../golang.org/x/crypto/curve25519/mul_amd64.s  |  191 +++
 .../x/crypto/curve25519/square_amd64.s          |  153 ++
 .../golang.org/x/crypto/hkdf/example_test.go    |   61 +
 cli/vendor/golang.org/x/crypto/hkdf/hkdf.go     |   75 +
 .../golang.org/x/crypto/hkdf/hkdf_test.go       |  370 +++++
 cli/vendor/golang.org/x/crypto/md4/md4.go       |  118 ++
 cli/vendor/golang.org/x/crypto/md4/md4_test.go  |   71 +
 cli/vendor/golang.org/x/crypto/md4/md4block.go  |   89 +
 cli/vendor/golang.org/x/crypto/nacl/box/box.go  |   85 +
 .../golang.org/x/crypto/nacl/box/box_test.go    |   78 +
 .../x/crypto/nacl/secretbox/secretbox.go        |  149 ++
 .../x/crypto/nacl/secretbox/secretbox_test.go   |   91 ++
 cli/vendor/golang.org/x/crypto/ocsp/ocsp.go     |  673 ++++++++
 .../golang.org/x/crypto/ocsp/ocsp_test.go       |  584 +++++++
 .../golang.org/x/crypto/openpgp/armor/armor.go  |  219 +++
 .../x/crypto/openpgp/armor/armor_test.go        |   95 ++
 .../golang.org/x/crypto/openpgp/armor/encode.go |  160 ++
 .../x/crypto/openpgp/canonical_text.go          |   59 +
 .../x/crypto/openpgp/canonical_text_test.go     |   52 +
 .../x/crypto/openpgp/clearsign/clearsign.go     |  372 +++++
 .../crypto/openpgp/clearsign/clearsign_test.go  |  197 +++
 .../x/crypto/openpgp/elgamal/elgamal.go         |  122 ++
 .../x/crypto/openpgp/elgamal/elgamal_test.go    |   49 +
 .../x/crypto/openpgp/errors/errors.go           |   72 +
 cli/vendor/golang.org/x/crypto/openpgp/keys.go  |  633 ++++++++
 .../golang.org/x/crypto/openpgp/keys_test.go    |  370 +++++
 .../x/crypto/openpgp/packet/compressed.go       |  123 ++
 .../x/crypto/openpgp/packet/compressed_test.go  |   41 +
 .../x/crypto/openpgp/packet/config.go           |   91 ++
 .../x/crypto/openpgp/packet/encrypted_key.go    |  199 +++
 .../crypto/openpgp/packet/encrypted_key_test.go |  146 ++
 .../x/crypto/openpgp/packet/literal.go          |   89 +
 .../golang.org/x/crypto/openpgp/packet/ocfb.go  |  143 ++
 .../x/crypto/openpgp/packet/ocfb_test.go        |   46 +
 .../crypto/openpgp/packet/one_pass_signature.go |   73 +
 .../x/crypto/openpgp/packet/opaque.go           |  162 ++
 .../x/crypto/openpgp/packet/opaque_test.go      |   67 +
 .../x/crypto/openpgp/packet/packet.go           |  539 ++++++
 .../x/crypto/openpgp/packet/packet_test.go      |  255 +++
 .../x/crypto/openpgp/packet/private_key.go      |  326 ++++
 .../x/crypto/openpgp/packet/private_key_test.go |   69 +
 .../x/crypto/openpgp/packet/public_key.go       |  724 +++++++++
 .../x/crypto/openpgp/packet/public_key_test.go  |  202 +++
 .../x/crypto/openpgp/packet/public_key_v3.go    |  280 ++++
 .../crypto/openpgp/packet/public_key_v3_test.go |   82 +
 .../x/crypto/openpgp/packet/reader.go           |   76 +
 .../x/crypto/openpgp/packet/signature.go        |  699 ++++++++
 .../x/crypto/openpgp/packet/signature_test.go   |   42 +
 .../x/crypto/openpgp/packet/signature_v3.go     |  146 ++
 .../crypto/openpgp/packet/signature_v3_test.go  |   92 ++
 .../openpgp/packet/symmetric_key_encrypted.go   |  155 ++
 .../packet/symmetric_key_encrypted_test.go      |  103 ++
 .../openpgp/packet/symmetrically_encrypted.go   |  290 ++++
 .../packet/symmetrically_encrypted_test.go      |  123 ++
 .../x/crypto/openpgp/packet/userattribute.go    |   91 ++
 .../crypto/openpgp/packet/userattribute_test.go |  109 ++
 .../x/crypto/openpgp/packet/userid.go           |  160 ++
 .../x/crypto/openpgp/packet/userid_test.go      |   87 +
 cli/vendor/golang.org/x/crypto/openpgp/read.go  |  439 +++++
 .../golang.org/x/crypto/openpgp/read_test.go    |  512 ++++++
 .../golang.org/x/crypto/openpgp/s2k/s2k.go      |  273 ++++
 .../golang.org/x/crypto/openpgp/s2k/s2k_test.go |  137 ++
 cli/vendor/golang.org/x/crypto/openpgp/write.go |  378 +++++
 .../golang.org/x/crypto/openpgp/write_test.go   |  259 +++
 .../x/crypto/otr/libotr_test_helper.c           |  197 +++
 cli/vendor/golang.org/x/crypto/otr/otr.go       | 1408 ++++++++++++++++
 cli/vendor/golang.org/x/crypto/otr/otr_test.go  |  470 ++++++
 cli/vendor/golang.org/x/crypto/otr/smp.go       |  572 +++++++
 cli/vendor/golang.org/x/crypto/pbkdf2/pbkdf2.go |   77 +
 .../golang.org/x/crypto/pbkdf2/pbkdf2_test.go   |  157 ++
 .../golang.org/x/crypto/pkcs12/bmp-string.go    |   50 +
 .../x/crypto/pkcs12/bmp-string_test.go          |   63 +
 cli/vendor/golang.org/x/crypto/pkcs12/crypto.go |  131 ++
 .../golang.org/x/crypto/pkcs12/crypto_test.go   |  125 ++
 cli/vendor/golang.org/x/crypto/pkcs12/errors.go |   23 +
 .../x/crypto/pkcs12/internal/rc2/bench_test.go  |   27 +
 .../x/crypto/pkcs12/internal/rc2/rc2.go         |  274 ++++
 .../x/crypto/pkcs12/internal/rc2/rc2_test.go    |   93 ++
 cli/vendor/golang.org/x/crypto/pkcs12/mac.go    |   45 +
 .../golang.org/x/crypto/pkcs12/mac_test.go      |   42 +
 cli/vendor/golang.org/x/crypto/pkcs12/pbkdf.go  |  170 ++
 .../golang.org/x/crypto/pkcs12/pbkdf_test.go    |   34 +
 cli/vendor/golang.org/x/crypto/pkcs12/pkcs12.go |  342 ++++
 .../golang.org/x/crypto/pkcs12/pkcs12_test.go   |  138 ++
 .../golang.org/x/crypto/pkcs12/safebags.go      |   57 +
 .../golang.org/x/crypto/poly1305/const_amd64.s  |   45 +
 .../golang.org/x/crypto/poly1305/poly1305.go    |   32 +
 .../x/crypto/poly1305/poly1305_amd64.s          |  497 ++++++
 .../golang.org/x/crypto/poly1305/poly1305_arm.s |  379 +++++
 .../x/crypto/poly1305/poly1305_test.go          |   86 +
 .../golang.org/x/crypto/poly1305/sum_amd64.go   |   24 +
 .../golang.org/x/crypto/poly1305/sum_arm.go     |   24 +
 .../golang.org/x/crypto/poly1305/sum_ref.go     | 1531 ++++++++++++++++++
 .../golang.org/x/crypto/ripemd160/ripemd160.go  |  120 ++
 .../x/crypto/ripemd160/ripemd160_test.go        |   64 +
 .../x/crypto/ripemd160/ripemd160block.go        |  161 ++
 .../x/crypto/salsa20/salsa/hsalsa20.go          |  144 ++
 .../x/crypto/salsa20/salsa/salsa2020_amd64.s    |  902 +++++++++++
 .../x/crypto/salsa20/salsa/salsa208.go          |  199 +++
 .../x/crypto/salsa20/salsa/salsa20_amd64.go     |   23 +
 .../x/crypto/salsa20/salsa/salsa20_ref.go       |  234 +++
 .../x/crypto/salsa20/salsa/salsa_test.go        |   35 +
 .../golang.org/x/crypto/salsa20/salsa20.go      |   54 +
 .../golang.org/x/crypto/salsa20/salsa20_test.go |  139 ++
 cli/vendor/golang.org/x/crypto/scrypt/scrypt.go |  243 +++
 .../golang.org/x/crypto/scrypt/scrypt_test.go   |  160 ++
 cli/vendor/golang.org/x/crypto/sha3/doc.go      |   66 +
 cli/vendor/golang.org/x/crypto/sha3/hashes.go   |   65 +
 cli/vendor/golang.org/x/crypto/sha3/keccakf.go  |  410 +++++
 cli/vendor/golang.org/x/crypto/sha3/register.go |   18 +
 cli/vendor/golang.org/x/crypto/sha3/sha3.go     |  193 +++
 .../golang.org/x/crypto/sha3/sha3_test.go       |  306 ++++
 cli/vendor/golang.org/x/crypto/sha3/shake.go    |   60 +
 .../sha3/testdata/keccakKats.json.deflate       |  Bin 0 -> 521342 bytes
 cli/vendor/golang.org/x/crypto/sha3/xor.go      |   16 +
 .../golang.org/x/crypto/sha3/xor_generic.go     |   28 +
 .../golang.org/x/crypto/sha3/xor_unaligned.go   |   58 +
 .../golang.org/x/crypto/ssh/agent/client.go     |  615 +++++++
 .../x/crypto/ssh/agent/client_test.go           |  287 ++++
 .../golang.org/x/crypto/ssh/agent/forward.go    |  103 ++
 .../golang.org/x/crypto/ssh/agent/keyring.go    |  184 +++
 .../x/crypto/ssh/agent/keyring_test.go          |   78 +
 .../golang.org/x/crypto/ssh/agent/server.go     |  209 +++
 .../x/crypto/ssh/agent/server_test.go           |   77 +
 .../x/crypto/ssh/agent/testdata_test.go         |   64 +
 .../golang.org/x/crypto/ssh/benchmark_test.go   |  122 ++
 cli/vendor/golang.org/x/crypto/ssh/buffer.go    |   98 ++
 .../golang.org/x/crypto/ssh/buffer_test.go      |   87 +
 cli/vendor/golang.org/x/crypto/ssh/certs.go     |  501 ++++++
 .../golang.org/x/crypto/ssh/certs_test.go       |  216 +++
 cli/vendor/golang.org/x/crypto/ssh/channel.go   |  631 ++++++++
 cli/vendor/golang.org/x/crypto/ssh/cipher.go    |  552 +++++++
 .../golang.org/x/crypto/ssh/cipher_test.go      |  127 ++
 cli/vendor/golang.org/x/crypto/ssh/client.go    |  213 +++
 .../golang.org/x/crypto/ssh/client_auth.go      |  441 +++++
 .../golang.org/x/crypto/ssh/client_auth_test.go |  393 +++++
 .../golang.org/x/crypto/ssh/client_test.go      |   39 +
 cli/vendor/golang.org/x/crypto/ssh/common.go    |  354 ++++
 .../golang.org/x/crypto/ssh/connection.go       |  144 ++
 cli/vendor/golang.org/x/crypto/ssh/doc.go       |   18 +
 .../golang.org/x/crypto/ssh/example_test.go     |  211 +++
 cli/vendor/golang.org/x/crypto/ssh/handshake.go |  412 +++++
 .../golang.org/x/crypto/ssh/handshake_test.go   |  415 +++++
 cli/vendor/golang.org/x/crypto/ssh/kex.go       |  526 ++++++
 cli/vendor/golang.org/x/crypto/ssh/kex_test.go  |   50 +
 cli/vendor/golang.org/x/crypto/ssh/keys.go      |  720 ++++++++
 cli/vendor/golang.org/x/crypto/ssh/keys_test.go |  437 +++++
 cli/vendor/golang.org/x/crypto/ssh/mac.go       |   57 +
 .../golang.org/x/crypto/ssh/mempipe_test.go     |  110 ++
 cli/vendor/golang.org/x/crypto/ssh/messages.go  |  725 +++++++++
 .../golang.org/x/crypto/ssh/messages_test.go    |  254 +++
 cli/vendor/golang.org/x/crypto/ssh/mux.go       |  356 ++++
 cli/vendor/golang.org/x/crypto/ssh/mux_test.go  |  525 ++++++
 cli/vendor/golang.org/x/crypto/ssh/server.go    |  495 ++++++
 cli/vendor/golang.org/x/crypto/ssh/session.go   |  605 +++++++
 .../golang.org/x/crypto/ssh/session_test.go     |  774 +++++++++
 cli/vendor/golang.org/x/crypto/ssh/tcpip.go     |  407 +++++
 .../golang.org/x/crypto/ssh/tcpip_test.go       |   20 +
 .../x/crypto/ssh/terminal/terminal.go           |  892 ++++++++++
 .../x/crypto/ssh/terminal/terminal_test.go      |  269 +++
 .../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 ++
 .../x/crypto/ssh/test/agent_unix_test.go        |   59 +
 .../golang.org/x/crypto/ssh/test/cert_test.go   |   47 +
 cli/vendor/golang.org/x/crypto/ssh/test/doc.go  |    7 +
 .../x/crypto/ssh/test/forward_unix_test.go      |  160 ++
 .../x/crypto/ssh/test/session_test.go           |  340 ++++
 .../golang.org/x/crypto/ssh/test/tcpip_test.go  |   46 +
 .../x/crypto/ssh/test/test_unix_test.go         |  261 +++
 .../x/crypto/ssh/test/testdata_test.go          |   64 +
 .../golang.org/x/crypto/ssh/testdata/doc.go     |    8 +
 .../golang.org/x/crypto/ssh/testdata/keys.go    |   43 +
 .../golang.org/x/crypto/ssh/testdata_test.go    |   63 +
 cli/vendor/golang.org/x/crypto/ssh/transport.go |  332 ++++
 .../golang.org/x/crypto/ssh/transport_test.go   |  109 ++
 cli/vendor/golang.org/x/crypto/tea/cipher.go    |  109 ++
 cli/vendor/golang.org/x/crypto/tea/tea_test.go  |   93 ++
 .../golang.org/x/crypto/twofish/twofish.go      |  342 ++++
 .../golang.org/x/crypto/twofish/twofish_test.go |  129 ++
 cli/vendor/golang.org/x/crypto/xtea/block.go    |   66 +
 cli/vendor/golang.org/x/crypto/xtea/cipher.go   |   82 +
 .../golang.org/x/crypto/xtea/xtea_test.go       |  229 +++
 cli/vendor/golang.org/x/crypto/xts/xts.go       |  138 ++
 cli/vendor/golang.org/x/crypto/xts/xts_test.go  |   85 +
 274 files changed, 56500 insertions(+), 30 deletions(-)
----------------------------------------------------------------------