PROTON-827: Switch go directory and symlink locations, problems with some go tools.
godoc and godep don't work well with the symlink. Project: http://git-wip-us.apache.org/repos/asf/qpid-proton/repo Commit: http://git-wip-us.apache.org/repos/asf/qpid-proton/commit/639bed99 Tree: http://git-wip-us.apache.org/repos/asf/qpid-proton/tree/639bed99 Diff: http://git-wip-us.apache.org/repos/asf/qpid-proton/diff/639bed99 Branch: refs/heads/proton-go Commit: 639bed9995a7da27603ddec07f5bf077a9614146 Parents: 6ea3649 Author: Alan Conway <[email protected]> Authored: Thu May 14 10:18:10 2015 -0400 Committer: Alan Conway <[email protected]> Committed: Mon Sep 28 14:08:23 2015 -0400 ---------------------------------------------------------------------- go | 1 - go/README.md | 142 + go/amqp/doc.go | 40 + go/amqp/interop | 1 + go/amqp/interop_test.go | 308 ++ go/amqp/marshal.go | 238 ++ go/amqp/message.go | 342 ++ go/amqp/message_test.go | 90 + go/amqp/types.go | 193 + go/amqp/uid.go | 40 + go/amqp/unmarshal.go | 552 +++ go/amqp/url.go | 96 + go/amqp/url_test.go | 51 + go/event/doc.go | 38 + go/event/handlers.go | 411 +++ go/event/message.go | 75 + go/event/pump.go | 357 ++ go/event/wrappers.go | 253 ++ go/event/wrappers_gen.go | 732 ++++ go/internal/error.go | 125 + go/messaging/doc.go | 28 + go/messaging/handler.go | 70 + go/messaging/messaging.go | 250 ++ proton-c/bindings/go/README.md | 138 - proton-c/bindings/go/amqp/doc.go | 40 - proton-c/bindings/go/amqp/interop | 1 - proton-c/bindings/go/amqp/interop_test.go | 308 -- proton-c/bindings/go/amqp/marshal.go | 238 -- proton-c/bindings/go/amqp/message.go | 342 -- proton-c/bindings/go/amqp/message_test.go | 90 - proton-c/bindings/go/amqp/types.go | 193 - proton-c/bindings/go/amqp/uid.go | 40 - proton-c/bindings/go/amqp/unmarshal.go | 552 --- proton-c/bindings/go/amqp/url.go | 96 - proton-c/bindings/go/amqp/url_test.go | 51 - proton-c/bindings/go/event/doc.go | 38 - proton-c/bindings/go/event/handlers.go | 411 --- proton-c/bindings/go/event/message.go | 75 - proton-c/bindings/go/event/pump.go | 357 -- proton-c/bindings/go/event/wrappers.go | 253 -- proton-c/bindings/go/event/wrappers_gen.go | 732 ---- proton-c/bindings/go/internal/error.go | 125 - proton-c/bindings/go/messaging/doc.go | 28 - proton-c/bindings/go/messaging/handler.go | 70 - proton-c/bindings/go/messaging/messaging.go | 250 -- .../qpid.apache.org/proton/go/amqp.a | 1726 +++++++++ .../qpid.apache.org/proton/go/event.a | 3318 +++++++++++++++++ .../qpid.apache.org/proton/go/internal.a | Bin 0 -> 102074 bytes .../qpid.apache.org/proton/go/messaging.a | 1100 ++++++ .../qpid.apache.org/proton/go/reactor.a | 3319 ++++++++++++++++++ 50 files changed, 13895 insertions(+), 4429 deletions(-) ---------------------------------------------------------------------- --------------------------------------------------------------------- To unsubscribe, e-mail: [email protected] For additional commands, e-mail: [email protected]
