mbox series

[v2,0/5] package/go: fixes

Message ID 20180511205037.10078-1-anisse@astier.eu
Headers show
Series package/go: fixes | expand

Message

Anisse Astier May 11, 2018, 8:50 p.m. UTC
Hi,

In this patch series, you'll find a fix to the build issues in the go
package, as well as a debug feature and a minor version bump.

Regards,

Anisse

--
Changes since v1:
 - rebase on top of Angelo's contribution, with my added sign-off to
   honor Developer Certificate of Origin
 - second patch now contains only cleanup
 - fix verbose variable scope pollution
 - DEVELOPERS modification is now a standalone patch



Angelo Compagnucci (1):
  package/go: fixing host go cross compilation

Anisse Astier (4):
  go: cleanup cross-compilation support
  go: add self to developers to get cc-ed for build failures
  go: honor building with V=1 for debugging purposes
  go: bump to version 1.10.2

 DEVELOPERS                                         |  3 ++
 ...d.go-explicit-option-for-crosscompilation.patch | 40 ++++++++++++++++++++++
 package/go/go.hash                                 |  2 +-
 package/go/go.mk                                   | 35 ++++++-------------
 4 files changed, 54 insertions(+), 26 deletions(-)
 create mode 100644 package/go/0001-build.go-explicit-option-for-crosscompilation.patch

Comments

Thomas Petazzoni May 11, 2018, 9:17 p.m. UTC | #1
Hello,

On Fri, 11 May 2018 22:50:32 +0200, Anisse Astier wrote:

> Angelo Compagnucci (1):
>   package/go: fixing host go cross compilation
> 
> Anisse Astier (4):
>   go: cleanup cross-compilation support
>   go: add self to developers to get cc-ed for build failures
>   go: honor building with V=1 for debugging purposes
>   go: bump to version 1.10.2

Thanks a lot, series applied to master.

I've decided to apply the whole series to master because:

 - PATCH 1 solves build failures reported in the autobuilders.

 - PATCH 2 really could have been squashed into PATCH 1, it was mainly
   kept separate to preserve authorship

 - PATCH 3 is just a documentation update, useful to make sure Anisse
   gets notified on "go" breakage.

 - PATCH 4 is trivial

 - PATCH 5 is a security update (I've adjusted the commit title to
   indicate it's a security bump)

Thanks Anisse for this work, much appreciated.

Thomas