Received: by mail.netbsd.org (Postfix, from userid 605) id 09F1A84D66; Thu, 2 Feb 2023 09:23:43 +0000 (UTC) Received: from localhost (localhost [127.0.0.1]) by mail.netbsd.org (Postfix) with ESMTP id 36C9384D2C for ; Thu, 2 Feb 2023 09:23:42 +0000 (UTC) X-Virus-Scanned: amavisd-new at netbsd.org Received: from mail.netbsd.org ([IPv6:::1]) by localhost (mail.netbsd.org [IPv6:::1]) (amavisd-new, port 10025) with ESMTP id 1RsU5JQxpOMn for ; Thu, 2 Feb 2023 09:23:41 +0000 (UTC) Received: from cvs.NetBSD.org (ivanova.netbsd.org [199.233.217.197]) by mail.netbsd.org (Postfix) with ESMTP id 816A684CE3 for ; Thu, 2 Feb 2023 09:23:41 +0000 (UTC) Received: by cvs.NetBSD.org (Postfix, from userid 500) id 73B5FFA90; Thu, 2 Feb 2023 09:23:41 +0000 (UTC) Content-Transfer-Encoding: 7bit Content-Type: multipart/mixed; boundary="_----------=_167532982138170" MIME-Version: 1.0 Date: Thu, 2 Feb 2023 09:23:41 +0000 From: "Tobias Nygren" Subject: CVS commit: pkgsrc/lang/go To: pkgsrc-changes@NetBSD.org Reply-To: tnn@netbsd.org X-Mailer: log_accum Message-Id: <20230202092341.73B5FFA90@cvs.NetBSD.org> Sender: pkgsrc-changes-owner@NetBSD.org List-Id: Precedence: bulk List-Unsubscribe: This is a multi-part message in MIME format. --_----------=_167532982138170 Content-Disposition: inline Content-Transfer-Encoding: 8bit Content-Type: text/plain; charset="US-ASCII" Module Name: pkgsrc Committed By: tnn Date: Thu Feb 2 09:23:41 UTC 2023 Modified Files: pkgsrc/lang/go: bootstrap.mk Log Message: go/bootstrap.mk: support setting GO_BOOTSTRAP_REQD=118 for wip/go120 To generate a diff of this commit: cvs rdiff -u -r1.9 -r1.10 pkgsrc/lang/go/bootstrap.mk Please note that diffs are not public domain; they are subject to the copyright notices on the relevant files. --_----------=_167532982138170 Content-Disposition: inline Content-Length: 915 Content-Transfer-Encoding: binary Content-Type: text/x-diff; charset=us-ascii Modified files: Index: pkgsrc/lang/go/bootstrap.mk diff -u pkgsrc/lang/go/bootstrap.mk:1.9 pkgsrc/lang/go/bootstrap.mk:1.10 --- pkgsrc/lang/go/bootstrap.mk:1.9 Sat Jan 28 12:34:30 2023 +++ pkgsrc/lang/go/bootstrap.mk Thu Feb 2 09:23:41 2023 @@ -1,4 +1,4 @@ -# $NetBSD: bootstrap.mk,v 1.9 2023/01/28 12:34:30 jperkin Exp $ +# $NetBSD: bootstrap.mk,v 1.10 2023/02/02 09:23:41 tnn Exp $ .if !defined(GOROOT_BOOTSTRAP) || !exists(${GOROOT_BOOTSTRAP}/bin/go) . if ${MACHINE_ARCH} == "aarch64" || \ @@ -6,6 +6,9 @@ (${OPSYS} == "SunOS" && ${OS_VARIANT} != "Solaris") BUILD_DEPENDS+= go-bin-[0-9]*:../../lang/go-bin GOROOT_BOOTSTRAP= ${PREFIX}/go-bin +. elif defined(GO_BOOTSTRAP_REQD) +BUILD_DEPENDS+= go${GO_BOOTSTRAP_REQD}-[0-9]*:../../lang/go${GO_BOOTSTRAP_REQD} +GOROOT_BOOTSTRAP= ${PREFIX}/${GO_BOOTSTRAP_REQD} . else BUILD_DEPENDS+= go14-1.4*:../../lang/go14 GOROOT_BOOTSTRAP= ${PREFIX}/go14 --_----------=_167532982138170--