From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from mp1 ([2001:41d0:2:4a6f::]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits)) by ms11 with LMTPS id d6jfDc9a0l/IbAAA0tVLHw (envelope-from ) for ; Thu, 10 Dec 2020 17:28:47 +0000 Received: from aspmx1.migadu.com ([2001:41d0:2:4a6f::]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits)) by mp1 with LMTPS id CSAFCc9a0l9qEAAAbx9fmQ (envelope-from ) for ; Thu, 10 Dec 2020 17:28:47 +0000 Received: from lists.gnu.org (lists.gnu.org [209.51.188.17]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by aspmx1.migadu.com (Postfix) with ESMTPS id CC92F9402A8 for ; Thu, 10 Dec 2020 17:28:46 +0000 (UTC) Received: from localhost ([::1]:39438 helo=lists1p.gnu.org) by lists.gnu.org with esmtp (Exim 4.90_1) (envelope-from ) id 1knPkD-0001Yg-Hv for larch@yhetil.org; Thu, 10 Dec 2020 12:28:45 -0500 Received: from eggs.gnu.org ([2001:470:142:3::10]:47938) by lists.gnu.org with esmtps (TLS1.2:ECDHE_RSA_AES_256_GCM_SHA384:256) (Exim 4.90_1) (envelope-from ) id 1knPVy-0007Xr-Dk for guix-patches@gnu.org; Thu, 10 Dec 2020 12:14:02 -0500 Received: from debbugs.gnu.org ([209.51.188.43]:55874) by eggs.gnu.org with esmtps (TLS1.2:ECDHE_RSA_AES_128_GCM_SHA256:128) (Exim 4.90_1) (envelope-from ) id 1knPVy-0001ps-6T for guix-patches@gnu.org; Thu, 10 Dec 2020 12:14:02 -0500 Received: from Debian-debbugs by debbugs.gnu.org with local (Exim 4.84_2) (envelope-from ) id 1knPVx-0001fX-TU for guix-patches@gnu.org; Thu, 10 Dec 2020 12:14:01 -0500 X-Loop: help-debbugs@gnu.org Subject: [bug#45161] [PATCH 0/1] Update go? Resent-From: Jack Hill Original-Sender: "Debbugs-submit" Resent-CC: guix-patches@gnu.org Resent-Date: Thu, 10 Dec 2020 17:14:01 +0000 Resent-Message-ID: Resent-Sender: help-debbugs@gnu.org X-GNU-PR-Message: followup 45161 X-GNU-PR-Package: guix-patches X-GNU-PR-Keywords: patch To: David Dashyan Received: via spool by 45161-submit@debbugs.gnu.org id=B45161.16076204376398 (code B ref 45161); Thu, 10 Dec 2020 17:14:01 +0000 Received: (at 45161) by debbugs.gnu.org; 10 Dec 2020 17:13:57 +0000 Received: from localhost ([127.0.0.1]:39187 helo=debbugs.gnu.org) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1knPVt-0001f8-FT for submit@debbugs.gnu.org; Thu, 10 Dec 2020 12:13:57 -0500 Received: from minsky.hcoop.net ([104.248.1.95]:46942) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1knPVp-0001er-OU for 45161@debbugs.gnu.org; Thu, 10 Dec 2020 12:13:55 -0500 Received: from marsh.hcoop.net ([45.55.52.66]) by minsky.hcoop.net with esmtpsa (TLS1.3:ECDHE_RSA_AES_256_GCM_SHA384:256) (Exim 4.92) (envelope-from ) id 1knPVk-000803-0K; Thu, 10 Dec 2020 12:13:48 -0500 Date: Thu, 10 Dec 2020 12:13:46 -0500 (EST) From: Jack Hill X-X-Sender: jackhill@marsh.hcoop.net In-Reply-To: <20201210151024.25316-1-mail@davie.li> Message-ID: References: <20201210151024.25316-1-mail@davie.li> User-Agent: Alpine 2.21 (DEB 202 2017-01-01) MIME-Version: 1.0 Content-Type: text/plain; format=flowed; charset=US-ASCII X-BeenThere: debbugs-submit@debbugs.gnu.org X-Mailman-Version: 2.1.18 Precedence: list X-BeenThere: guix-patches@gnu.org List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Cc: 45161@debbugs.gnu.org Errors-To: guix-patches-bounces+larch=yhetil.org@gnu.org Sender: "Guix-patches" X-Migadu-Flow: FLOW_IN X-Migadu-Spam-Score: -1.30 Authentication-Results: aspmx1.migadu.com; dkim=none; dmarc=none; spf=pass (aspmx1.migadu.com: domain of guix-patches-bounces@gnu.org designates 209.51.188.17 as permitted sender) smtp.mailfrom=guix-patches-bounces@gnu.org X-Migadu-Queue-Id: CC92F9402A8 X-Spam-Score: -1.30 X-Migadu-Scanner: scn1.migadu.com X-TUID: hMFiVTFEbDq8 David, On Thu, 10 Dec 2020, David Dashyan wrote: > Yesterday I found packages that won't compile with curent guix's > go-1.14. Apparently 1.15 is the "stable" thing today. Awesome, thanks for working on this! > I've updated go package locally but when I try to run './pre-inst-env guix > build --rounds=3 go' guix just spits out currently installed go-1.14 store > directories. Am I right that this is not how it should work? It supposed to > find the modified version in source tree, right? I think this is because the go still points at 1.14, see the following definition: > (define-public go go-1.14) We should probably update that so 1.15 is the new default version. > But I've tested it ;) builds and works. I've started testing it locally. I'll report back if I notice anything. Best, Jack