Skip to main content

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index] [List Home]
Re: [paho-dev] Updating Go client external dependancies

Hi Andrey,

I've just made those changes and pushed them to the master branch, thanks for reporting it.

Al

On 02/07/15 12:32, Andrey Prokopiev wrote:
Hello,

can we update external dependencies imports in Go client library?
"git.eclipse.org/gitroot/paho/org.eclipse.paho.mqtt.golang.git
<http://git.eclipse.org/gitroot/paho/org.eclipse.paho.mqtt.golang.git>"
uses two external imports which already moved from code.google.com
<http://code.google.com>:

- "code.google.com/p/go.net/websocket
<http://code.google.com/p/go.net/websocket>" moved to
"golang.org/x/net/websocket <http://golang.org/x/net/websocket>"

- "code.google.com/p/go-uuid/uuid
<http://code.google.com/p/go-uuid/uuid>" moved to
"github.com/pborman/uuid <http://github.com/pborman/uuid>"

"go get" command works now but "gb vendor fetch" failed on websocket
packet. What will happen after closing code.google.com
<http://code.google.com> I don't know.
For updating, we need to replace one line for websocket import in net.go
file and run small script for go-uuid package:
*find . -name "*.go" -type f -exec sed -i 's/code.google.com
<http://code.google.com>\/p\/go-uuid/github.com
<http://github.com>\/pborman/g' {} \;*

Regards
Andrey


_______________________________________________
paho-dev mailing list
paho-dev@xxxxxxxxxxx
To change your delivery options, retrieve your password, or unsubscribe from this list, visit
https://dev.eclipse.org/mailman/listinfo/paho-dev



Back to the top