[go-nuts] Re: Go 1.9 is released

2017-09-26 Thread Igor Maznitsa
if you use mvn-golang plugin  then 
since 2.1.6 version it can process missing SDK in the list and since 2.1.7 
it will be processing the list correctly because google returns not full 
list for just request but need some prefix in request

-- 
You received this message because you are subscribed to the Google Groups 
"golang-nuts" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to golang-nuts+unsubscr...@googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


[go-nuts] Re: Go 1.9 is released

2017-09-26 Thread alskiontheweb
Hello,

We use a maven plugin to build a complex suite of Go based services. That 
plugin looks to the XML index provided 
by https://storage.googleapis.com/golang/ which currently does not include 
the 1.9 binaries even though they are available. Can someone look into why 
the 1.9 revs aren't indexed?

Thanks.

On Thursday, August 24, 2017 at 6:44:25 PM UTC-4, Chris Broadfoot wrote:
>
> Hello gophers,
>
> We just released Go 1.9.
>
> You can read the announcement blog post here:
>   https://blog.golang.org/go1.9
>
> You can download binary and source distributions from our download page:
>   https://golang.org/dl/
>
> To compile from source using a Git checkout, update to the release with 
> "git checkout go1.9" and build as usual.
>
> To find out what has changed, read the release notes:
>   https://golang.org/doc/go1.9
>
> Thanks to everyone who contributed to the release.
>
> Chris
>

-- 
You received this message because you are subscribed to the Google Groups 
"golang-nuts" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to golang-nuts+unsubscr...@googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


[go-nuts] Re: Go 1.9 is released

2017-08-25 Thread ahhb1965
Just wanted to thank everyone who made this 10th release possible ! Great 
work to common and my personal benefit ! Thank You !
Andreas 

On Friday, 25 August 2017 00:44:25 UTC+2, Chris Broadfoot wrote:
>
> Hello gophers,
>
> We just released Go 1.9.
>
 

> 
>
> Thanks to everyone who contributed to the release.
>
> Chris
>

-- 
You received this message because you are subscribed to the Google Groups 
"golang-nuts" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to golang-nuts+unsubscr...@googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


[go-nuts] Re: Go 1.9 is released

2017-08-25 Thread Rich
One liner for installing on Linux. You can change the URL in the curl for 
other OS such as Mac, or any Unix like OS:

cd $GOROOT;cd ..;curl 
https://storage.googleapis.com/golang/go1.9.linux-amd64.tar.gz | sudo tar 
zxvf -;cd;/usr/local/go/bin/go version

if you don't have GOROOT Set:
cd /usr/local;curl 
https://storage.googleapis.com/golang/go1.9.linux-amd64.tar.gz | sudo tar 
zxvf -;cd;/usr/local/go/bin/go version

That installs into /usr/local/go.  


On Thursday, August 24, 2017 at 6:44:25 PM UTC-4, Chris Broadfoot wrote:
>
> Hello gophers,
>
> We just released Go 1.9.
>
> You can read the announcement blog post here:
>   https://blog.golang.org/go1.9
>
> You can download binary and source distributions from our download page:
>   https://golang.org/dl/
>
> To compile from source using a Git checkout, update to the release with 
> "git checkout go1.9" and build as usual.
>
> To find out what has changed, read the release notes:
>   https://golang.org/doc/go1.9
>
> Thanks to everyone who contributed to the release.
>
> Chris
>

-- 
You received this message because you are subscribed to the Google Groups 
"golang-nuts" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to golang-nuts+unsubscr...@googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


[go-nuts] Re: Go 1.9 is released

2017-08-25 Thread Rich

One Liner for installing on Linux / Mac or other Unix like OS: (well almost)

1. Become root
2. cd /usr/local
run this command:

curl https://storage.googleapis.com/golang/go1.9.darwin-amd64.tar.gz 2> 
/dev/null | tar zxvf -

Just make sure you change the URL to curl for the OS version you're working 
on. Above is for Mac, on linux I installed it like this:

cd $GOROOT;cd ..;curl 
https://storage.googleapis.com/golang/go1.9.darwin-amd64.tar.gz | sudo tar 
zxvf -

On Thursday, August 24, 2017 at 6:44:25 PM UTC-4, Chris Broadfoot wrote:
>
> Hello gophers,
>
> We just released Go 1.9.
>
> You can read the announcement blog post here:
>   https://blog.golang.org/go1.9
>
> You can download binary and source distributions from our download page:
>   https://golang.org/dl/
>
> To compile from source using a Git checkout, update to the release with 
> "git checkout go1.9" and build as usual.
>
> To find out what has changed, read the release notes:
>   https://golang.org/doc/go1.9
>
> Thanks to everyone who contributed to the release.
>
> Chris
>

-- 
You received this message because you are subscribed to the Google Groups 
"golang-nuts" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to golang-nuts+unsubscr...@googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


[go-nuts] Re: Go 1.9 is released

2017-08-25 Thread Rich

One Liner for installing on Linux / Mac or other Unix like OS: (well almost)

1. Become root
2. cd /usr/local
run this command:

curl https://storage.googleapis.com/golang/go1.9.darwin-amd64.tar.gz 2> 
/dev/null | tar zxvf -

Just make sure you change the URL to curl for the OS version you're working 
on. Above is for Mac, on linux I installed it like this:

cd $GOROOT;cd ..;curl 
https://storage.googleapis.com/golang/go1.9.darwin-amd64.tar.gz | sudo tar 
zxvf

On Thursday, August 24, 2017 at 6:44:25 PM UTC-4, Chris Broadfoot wrote:
>
> Hello gophers,
>
> We just released Go 1.9.
>
> You can read the announcement blog post here:
>   https://blog.golang.org/go1.9
>
> You can download binary and source distributions from our download page:
>   https://golang.org/dl/
>
> To compile from source using a Git checkout, update to the release with 
> "git checkout go1.9" and build as usual.
>
> To find out what has changed, read the release notes:
>   https://golang.org/doc/go1.9
>
> Thanks to everyone who contributed to the release.
>
> Chris
>

-- 
You received this message because you are subscribed to the Google Groups 
"golang-nuts" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to golang-nuts+unsubscr...@googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


[go-nuts] Re: Go 1.9 is released

2017-08-25 Thread Rich


9:20 AM (less than a minute ago)


One Liner for installing on Linux / Mac or other Unix like OS: (well almost)

1. Become root
2. cd /usr/local
run this command:

curl https://storage.googleapis.com/golang/go1.9.darwin-amd64.tar.gz 2> 
/dev/null | tar zxvf -

Just make sure you change the URL to curl for the OS version you're working 
on. Above is for Mac, on linux I installed it like this:

cd $GOROOT;cd ..;curl 
https://storage.googleapis.com/golang/go1.9.darwin-amd64.tar.gz | sudo tar 
zxvf -

On Thursday, August 24, 2017 at 6:44:25 PM UTC-4, Chris Broadfoot wrote:
>
> Hello gophers,
>
> We just released Go 1.9.
>
> You can read the announcement blog post here:
>   https://blog.golang.org/go1.9
>
> You can download binary and source distributions from our download page:
>   https://golang.org/dl/
>
> To compile from source using a Git checkout, update to the release with 
> "git checkout go1.9" and build as usual.
>
> To find out what has changed, read the release notes:
>   https://golang.org/doc/go1.9
>
> Thanks to everyone who contributed to the release.
>
> Chris
>

-- 
You received this message because you are subscribed to the Google Groups 
"golang-nuts" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to golang-nuts+unsubscr...@googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


[go-nuts] Re: Go 1.9 is released

2017-08-25 Thread Rich
One Liner for installing on Linux / Mac or other Unix like OS: (well almost)

1. Become root
2. cd /usr/local
run this command:

curl https://storage.googleapis.com/golang/go1.9.darwin-amd64.tar.gz 2> 
/dev/null | tar zxvf -



On Thursday, August 24, 2017 at 6:44:25 PM UTC-4, Chris Broadfoot wrote:
>
> Hello gophers,
>
> We just released Go 1.9.
>
> You can read the announcement blog post here:
>   https://blog.golang.org/go1.9
>
> You can download binary and source distributions from our download page:
>   https://golang.org/dl/
>
> To compile from source using a Git checkout, update to the release with 
> "git checkout go1.9" and build as usual.
>
> To find out what has changed, read the release notes:
>   https://golang.org/doc/go1.9
>
> Thanks to everyone who contributed to the release.
>
> Chris
>

-- 
You received this message because you are subscribed to the Google Groups 
"golang-nuts" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to golang-nuts+unsubscr...@googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


Re: [go-nuts] Re: Go 1.9 is released

2017-08-25 Thread Igor Maznitsa
>>The package search [1] turns up this file is provided by libc6 (for 
arm64). 
exactly, I just have downloaded arm64 distributive instead of amd64 :) , 
amd64 works well, I made the error because 
https://storage.googleapis.com/golang/ doesn't contain 1.9 and I have to 
load it manually

-- 
You received this message because you are subscribed to the Google Groups 
"golang-nuts" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to golang-nuts+unsubscr...@googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


[go-nuts] Re: Go 1.9 is released

2017-08-25 Thread ojucie
Thank you, guys. Good job.

-- 
You received this message because you are subscribed to the Google Groups 
"golang-nuts" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to golang-nuts+unsubscr...@googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


Re: [go-nuts] Re: Go 1.9 is released

2017-08-25 Thread Konstantin Khomoutov
On Fri, Aug 25, 2017 at 02:05:52AM -0700, Igor Maznitsa wrote:

> and why the SDK  is not presented in the list 
> https://storage.googleapis.com/golang/ ?
> also under Ubuntu 16.04 LTS I have some error for any attempt to start Go 
> 1.9 from downloaded SDK : 
> /lib/ld-linux-aarch64.so.1: No such file or directory
> I don't have any such error with the 1.8.3, is it normal situation now?

The package search [1] turns up this file is provided by libc6 (for arm64).

So do you really using arm64 (not amd64) and have libc6 installed?
(I doubt the second as this package should be essential on
Debian-derived distros but the former might be the culprit.

1.  
https://packages.ubuntu.com/search?searchon=contents=ld-linux-aarch64.so.1==xenial=any

-- 
You received this message because you are subscribed to the Google Groups 
"golang-nuts" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to golang-nuts+unsubscr...@googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


[go-nuts] Re: Go 1.9 is released

2017-08-25 Thread Igor Maznitsa
and why the SDK  is not presented in the list 
https://storage.googleapis.com/golang/ ?
also under Ubuntu 16.04 LTS I have some error for any attempt to start Go 
1.9 from downloaded SDK : 
*/lib/ld-linux-aarch64.so.1: No such file or directory*
I don't have any such error with the 1.8.3, is it normal situation now?

-- 
You received this message because you are subscribed to the Google Groups 
"golang-nuts" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to golang-nuts+unsubscr...@googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


Re: [go-nuts] Re: Go 1.9 is released

2017-08-24 Thread jimmy frasche
Thanks for all the great work—lots of exciting changes in this release!

On Thu, Aug 24, 2017 at 3:52 PM, Nathan Kerr  wrote:
> Congrats!
>
> I updated my Go Release Timeline and When Should You Upgrade Go? pages.
>
> On Friday, August 25, 2017 at 12:44:25 AM UTC+2, Chris Broadfoot wrote:
>>
>> Hello gophers,
>>
>> We just released Go 1.9.
>>
>> You can read the announcement blog post here:
>>   https://blog.golang.org/go1.9
>>
>> You can download binary and source distributions from our download page:
>>   https://golang.org/dl/
>>
>> To compile from source using a Git checkout, update to the release with
>> "git checkout go1.9" and build as usual.
>>
>> To find out what has changed, read the release notes:
>>   https://golang.org/doc/go1.9
>>
>> Thanks to everyone who contributed to the release.
>>
>> Chris
>
> --
> You received this message because you are subscribed to the Google Groups
> "golang-nuts" group.
> To unsubscribe from this group and stop receiving emails from it, send an
> email to golang-nuts+unsubscr...@googlegroups.com.
>
> For more options, visit https://groups.google.com/d/optout.

-- 
You received this message because you are subscribed to the Google Groups 
"golang-nuts" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to golang-nuts+unsubscr...@googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


[go-nuts] Re: Go 1.9 is released

2017-08-24 Thread Nathan Kerr
Congrats!

I updated my Go Release Timeline 
 and When Should You 
Upgrade Go?  pages.

On Friday, August 25, 2017 at 12:44:25 AM UTC+2, Chris Broadfoot wrote:
>
> Hello gophers,
>
> We just released Go 1.9.
>
> You can read the announcement blog post here:
>   https://blog.golang.org/go1.9
>
> You can download binary and source distributions from our download page:
>   https://golang.org/dl/
>
> To compile from source using a Git checkout, update to the release with 
> "git checkout go1.9" and build as usual.
>
> To find out what has changed, read the release notes:
>   https://golang.org/doc/go1.9
>
> Thanks to everyone who contributed to the release.
>
> Chris
>

-- 
You received this message because you are subscribed to the Google Groups 
"golang-nuts" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to golang-nuts+unsubscr...@googlegroups.com.
For more options, visit https://groups.google.com/d/optout.