From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: <gentoo-commits+bounces-878864-garchives=archives.gentoo.org@lists.gentoo.org> Received: from lists.gentoo.org (pigeon.gentoo.org [208.92.234.80]) by finch.gentoo.org (Postfix) with ESMTP id 05154138206 for <garchives@archives.gentoo.org>; Thu, 28 Apr 2016 18:32:22 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id B52D721C002; Thu, 28 Apr 2016 18:32:19 +0000 (UTC) Received: from smtp.gentoo.org (smtp.gentoo.org [140.211.166.183]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id 5D67021C002 for <gentoo-commits@lists.gentoo.org>; Thu, 28 Apr 2016 18:32:19 +0000 (UTC) Received: from oystercatcher.gentoo.org (unknown [IPv6:2a01:4f8:202:4333:225:90ff:fed9:fc84]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id 08376340CFE for <gentoo-commits@lists.gentoo.org>; Thu, 28 Apr 2016 18:32:18 +0000 (UTC) Received: from localhost.localdomain (localhost [127.0.0.1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 5ACBCCF for <gentoo-commits@lists.gentoo.org>; Thu, 28 Apr 2016 18:32:15 +0000 (UTC) From: "William Hubbs" <williamh@gentoo.org> To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "William Hubbs" <williamh@gentoo.org> Message-ID: <1461867955.513cdb5d7b589bdb2d5d9fc4c0f7ce2606854328.williamh@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: dev-lang/go/ X-VCS-Repository: repo/gentoo X-VCS-Files: dev-lang/go/go-9999.ebuild X-VCS-Directories: dev-lang/go/ X-VCS-Committer: williamh X-VCS-Committer-Name: William Hubbs X-VCS-Revision: 513cdb5d7b589bdb2d5d9fc4c0f7ce2606854328 X-VCS-Branch: master Date: Thu, 28 Apr 2016 18:32:15 +0000 (UTC) Precedence: bulk List-Post: <mailto:gentoo-commits@lists.gentoo.org> List-Help: <mailto:gentoo-commits+help@lists.gentoo.org> List-Unsubscribe: <mailto:gentoo-commits+unsubscribe@lists.gentoo.org> List-Subscribe: <mailto:gentoo-commits+subscribe@lists.gentoo.org> List-Id: Gentoo Linux mail <gentoo-commits.gentoo.org> X-BeenThere: gentoo-commits@lists.gentoo.org X-Archives-Salt: 7e87cb7c-f9fc-4634-b2e9-3353835e9550 X-Archives-Hash: dcd86617f0bb658cb16a83d41b4dfbd9 commit: 513cdb5d7b589bdb2d5d9fc4c0f7ce2606854328 Author: William Hubbs <williamh <AT> gentoo <DOT> org> AuthorDate: Thu Apr 28 18:25:28 2016 +0000 Commit: William Hubbs <williamh <AT> gentoo <DOT> org> CommitDate: Thu Apr 28 18:25:55 2016 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=513cdb5d dev-lang/go: sync live ebuild Package-Manager: portage-2.2.26 dev-lang/go/go-9999.ebuild | 10 +++++++--- 1 file changed, 7 insertions(+), 3 deletions(-) diff --git a/dev-lang/go/go-9999.ebuild b/dev-lang/go/go-9999.ebuild index 85536d0..88dace6 100644 --- a/dev-lang/go/go-9999.ebuild +++ b/dev-lang/go/go-9999.ebuild @@ -24,7 +24,10 @@ kernel_linux? ( amd64? ( ${BOOTSTRAP_DIST}/go-linux-amd64-bootstrap.tbz ) arm? ( ${BOOTSTRAP_DIST}/go-linux-arm-bootstrap.tbz ) arm64? ( ${BOOTSTRAP_DIST}/go-linux-arm64-bootstrap.tbz ) - ppc64? ( ${BOOTSTRAP_DIST}/go-linux-ppc64-bootstrap.tbz ) + ppc64? ( + ${BOOTSTRAP_DIST}/go-linux-ppc64-bootstrap.tbz + ${BOOTSTRAP_DIST}/go-linux-ppc64le-bootstrap.tbz + ) x86? ( ${BOOTSTRAP_DIST}/go-linux-386-bootstrap-1.tbz ) ) kernel_SunOS? ( @@ -38,8 +41,6 @@ if [[ ${PV} = 9999 ]]; then inherit git-r3 else SRC_URI+="https://storage.googleapis.com/golang/go${MY_PV}.src.tar.gz" - # go-bootstrap-1.4 only supports go on amd64, arm and x86 architectures. - # Allowing other bootstrap options would enable arm64 and ppc64 builds. case ${PV} in *9999*|*_rc*) ;; *) @@ -87,6 +88,8 @@ go_arch() case "${portage_arch}" in x86) echo 386;; x64-*) echo amd64;; + ppc64) + [[ "$(tc-endian)" = big ]] && echo ppc64 || echo ppc64le ;; *) echo "${portage_arch}";; esac } @@ -174,6 +177,7 @@ src_compile() if [[ ${ARCH} == arm ]]; then export GOARM=$(go_arm) fi + elog "GOROOT_BOOTSTRAP is ${GOROOT_BOOTSTRAP}" cd src ./make.bash || die "build failed"