Github messages for voidlinux
 help / color / mirror / Atom feed
From: voidlinux-github@inbox.vuxu.org
To: ml@inbox.vuxu.org
Subject: Re: [PR PATCH] [Updated] go: update to 1.13.1.
Date: Sat, 28 Sep 2019 00:15:45 +0200	[thread overview]
Message-ID: <20190927221545.AVBW-ufevFy1dPKfeygf5RwVuIzI5thDizlkrf288qw@z> (raw)
In-Reply-To: <gh-mailinglist-notifications-41a7ca26-5023-4802-975b-f1789d68868e-void-packages-14212@inbox.vuxu.org>

[-- Attachment #1: Type: text/plain, Size: 309 bytes --]

There is an updated pull request by nilium against master on the void-packages repository

https://github.com/nilium/ecks-bops-packages go
https://github.com/void-linux/void-packages/pull/14212

go: update to 1.13.1.


A patch file from https://github.com/void-linux/void-packages/pull/14212.patch is attached

[-- Warning: decoded text below may be mangled, UTF-8 assumed --]
[-- Attachment #2: github-pr-go-14212.patch --]
[-- Type: text/x-diff, Size: 2481 bytes --]

From 9068a45e49d6e590cc92f3d7c8b553b7e523e977 Mon Sep 17 00:00:00 2001
From: Noel Cower <ncower@gmail.com>
Date: Wed, 4 Sep 2019 11:17:42 -0700
Subject: [PATCH] go: update to 1.13.1.

Includes a patch from https://go-review.googlesource.com/c/go/+/197602
to try to resolve i686 build failures reported in
https://golang.org/issues/33977.
---
 .../go/patches/gohostarch-bootstrap-fix.patch | 28 +++++++++++++++++++
 srcpkgs/go/template                           |  4 +--
 2 files changed, 30 insertions(+), 2 deletions(-)
 create mode 100644 srcpkgs/go/patches/gohostarch-bootstrap-fix.patch

diff --git a/srcpkgs/go/patches/gohostarch-bootstrap-fix.patch b/srcpkgs/go/patches/gohostarch-bootstrap-fix.patch
new file mode 100644
index 00000000000..7791b92abe7
--- /dev/null
+++ b/srcpkgs/go/patches/gohostarch-bootstrap-fix.patch
@@ -0,0 +1,28 @@
+From e1b1b7856f416ca6ff086adc00adc89fd900992c Mon Sep 17 00:00:00 2001
+From: Brad Fitzpatrick <bradfitz@golang.org>
+Date: Thu, 26 Sep 2019 19:04:00 +0000
+Subject: [PATCH] cmd/dist: fix bootstrap failure when GOHOSTARCH is set
+
+Fixes #33977
+
+Change-Id: I4b136788f08b08c53087af8d3cd56125e620b51b
+Reviewed-on: https://go-review.googlesource.com/c/go/+/197602
+Run-TryBot: Brad Fitzpatrick <bradfitz@golang.org>
+TryBot-Result: Gobot Gobot <gobot@golang.org>
+Reviewed-by: Cherry Zhang <cherryyz@google.com>
+---
+
+diff --git a/src/cmd/dist/buildtool.go b/src/cmd/dist/buildtool.go
+index f293891..f27ea17 100644
+--- go/src/cmd/dist/buildtool.go
++++ go/src/cmd/dist/buildtool.go
+@@ -250,6 +250,9 @@
+ 	archCaps = fileArch
+ 	fileArch = strings.ToLower(fileArch)
+ 	fileArch = strings.TrimSuffix(fileArch, "splitload")
++	if fileArch == os.Getenv("GOHOSTARCH") {
++		return "", false
++	}
+ 	if fileArch == strings.TrimSuffix(runtime.GOARCH, "le") {
+ 		return "", false
+ 	}
diff --git a/srcpkgs/go/template b/srcpkgs/go/template
index 683e651aa7a..f74f4c9a0ce 100644
--- a/srcpkgs/go/template
+++ b/srcpkgs/go/template
@@ -1,6 +1,6 @@
 # Template file for 'go'
 pkgname=go
-version=1.12.8
+version=1.13.1
 revision=1
 create_wrksrc=yes
 build_wrksrc=go
@@ -10,7 +10,7 @@ maintainer="Michael Aldridge <maldridge@voidlinux.org>"
 license="BSD-3-Clause"
 homepage="http://golang.org/"
 distfiles="https://golang.org/dl/go${version}.src.tar.gz"
-checksum=11ad2e2e31ff63fcf8a2bdffbe9bfa2e1845653358daed593c8c2d03453c9898
+checksum=81f154e69544b9fa92b1475ff5f11e64270260d46e7e36c34aafc8bc96209358
 
 nostrip=yes
 noverifyrdeps=yes

  parent reply	other threads:[~2019-09-27 22:15 UTC|newest]

Thread overview: 21+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2019-09-04 18:18 [PR PATCH] go: update to 1.13 voidlinux-github
2019-09-04 18:32 ` voidlinux-github
2019-09-08 17:04 ` voidlinux-github
2019-09-08 18:32 ` [PR PATCH] [Updated] " voidlinux-github
2019-09-08 18:32 ` voidlinux-github
2019-09-08 19:15 ` voidlinux-github
2019-09-08 19:15 ` voidlinux-github
2019-09-08 19:27 ` voidlinux-github
2019-09-08 19:27 ` voidlinux-github
2019-09-15  4:36 ` voidlinux-github
2019-09-20 12:05 ` voidlinux-github
2019-09-24 18:51 ` voidlinux-github
2019-09-24 19:09 ` voidlinux-github
2019-09-26 18:13 ` [PR PATCH] [Updated] " voidlinux-github
2019-09-26 18:13 ` voidlinux-github
2019-09-26 18:13 ` go: update to 1.13.1 voidlinux-github
2019-09-26 18:16 ` voidlinux-github
2019-09-27 22:15 ` voidlinux-github [this message]
2019-09-27 22:15 ` [PR PATCH] [Updated] " voidlinux-github
2019-09-27 22:52 ` voidlinux-github
2019-09-28  2:41 ` [PR PATCH] [Closed]: " voidlinux-github

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=20190927221545.AVBW-ufevFy1dPKfeygf5RwVuIzI5thDizlkrf288qw@z \
    --to=voidlinux-github@inbox.vuxu.org \
    --cc=ml@inbox.vuxu.org \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).