GNU bug report logs - #61222
[PATCH 0/2] gnu: Add go-1.20.

Previous Next

Package: guix-patches;

Reported by: Hilton Chain <hako <at> ultrarare.space>

Date: Thu, 2 Feb 2023 03:49:02 UTC

Severity: normal

Tags: patch

Done: Leo Famulari <leo <at> famulari.name>

Bug is archived. No further changes may be made.

To add a comment to this bug, you must first unarchive it, by sending
a message to control AT debbugs.gnu.org, with unarchive 61222 in the body.
You can then email your comments to 61222 AT debbugs.gnu.org in the normal way.

Toggle the display of automated, internal messages from the tracker.

View this report as an mbox folder, status mbox, maintainer mbox


Report forwarded to guix-patches <at> gnu.org:
bug#61222; Package guix-patches. (Thu, 02 Feb 2023 03:49:02 GMT) Full text and rfc822 format available.

Acknowledgement sent to Hilton Chain <hako <at> ultrarare.space>:
New bug report received and forwarded. Copy sent to guix-patches <at> gnu.org. (Thu, 02 Feb 2023 03:49:02 GMT) Full text and rfc822 format available.

Message #5 received at submit <at> debbugs.gnu.org (full text, mbox):

From: Hilton Chain <hako <at> ultrarare.space>
To: guix-patches <at> gnu.org
Subject: [PATCH 0/2] gnu: Add go-1.20.
Date: Thu, 02 Feb 2023 11:48:07 +0800
*** BLURB HERE ***

Hilton Chain (2):
  gnu: Add go-1.20.
  gnu: Add go-std-1.20.

 gnu/packages/golang.scm | 20 ++++++++++++++++++++
 1 file changed, 20 insertions(+)


base-commit: 43eed907d22b094c5a9b2931ca5e72caf2b95991
--
2.39.1




Information forwarded to guix-patches <at> gnu.org:
bug#61222; Package guix-patches. (Thu, 02 Feb 2023 03:51:02 GMT) Full text and rfc822 format available.

Message #8 received at 61222 <at> debbugs.gnu.org (full text, mbox):

From: Hilton Chain <hako <at> ultrarare.space>
To: 61222 <at> debbugs.gnu.org
Cc: Hilton Chain <hako <at> ultrarare.space>
Subject: [PATCH 1/2] gnu: Add go-1.20.
Date: Thu, 02 Feb 2023 11:49:37 +0800
* gnu/packages/golang.scm (go-1.20): New variable.
---
 gnu/packages/golang.scm | 19 +++++++++++++++++++
 1 file changed, 19 insertions(+)

diff --git a/gnu/packages/golang.scm b/gnu/packages/golang.scm
index 93df6cb061..2d5d1dca43 100644
--- a/gnu/packages/golang.scm
+++ b/gnu/packages/golang.scm
@@ -889,6 +889,25 @@ (define-public go-1.19
                           '("CONTRIBUTING.md" "PATENTS" "README.md"
                             "SECURITY.md"))))))))))
 
+(define-public go-1.20
+  (package
+    (inherit go-1.19)
+    (name "go")
+    (version "1.20")
+    (source (origin
+              (method git-fetch)
+              (uri (git-reference
+                    (url "https://github.com/golang/go")
+                    (commit (string-append "go" version))))
+              (file-name (git-file-name name version))
+              (sha256
+               (base32
+                "0a7wjzv14kaqg5l7ambv5zj4rj7sgah9yhcg6k6da6ygm6bs4dv3"))))
+    (native-inputs
+     ;; Go 1.20 and later requires Go 1.17 as the bootstrap toolchain.
+     ;; See `src/cmd/dist/notgo117.go`.
+     (alist-replace "go" (list go-1.17) (package-native-inputs go-1.17)))))
+
 (define-public go go-1.17)
 
 (define make-go-std
-- 
2.39.1





Information forwarded to guix-patches <at> gnu.org:
bug#61222; Package guix-patches. (Thu, 02 Feb 2023 03:51:02 GMT) Full text and rfc822 format available.

Message #11 received at 61222 <at> debbugs.gnu.org (full text, mbox):

From: Hilton Chain <hako <at> ultrarare.space>
To: 61222 <at> debbugs.gnu.org
Cc: Hilton Chain <hako <at> ultrarare.space>
Subject: [PATCH 2/2] gnu: Add go-std-1.20.
Date: Thu, 02 Feb 2023 11:50:09 +0800
* gnu/packages/golang.scm (go-std-1.20): New variable.
---
 gnu/packages/golang.scm | 1 +
 1 file changed, 1 insertion(+)

diff --git a/gnu/packages/golang.scm b/gnu/packages/golang.scm
index 2d5d1dca43..1fbc96b693 100644
--- a/gnu/packages/golang.scm
+++ b/gnu/packages/golang.scm
@@ -949,6 +949,7 @@ (define-public go-std-1.16 (make-go-std go-1.16))
 (define-public go-std-1.17 (make-go-std go-1.17))
 (define-public go-std-1.18 (make-go-std go-1.18))
 (define-public go-std-1.19 (make-go-std go-1.19))
+(define-public go-std-1.20 (make-go-std go-1.20))
 
 (define-public go-0xacab-org-leap-shapeshifter
   (let ((commit "0aa6226582efb8e563540ec1d3c5cfcd19200474")
-- 
2.39.1





Information forwarded to guix-patches <at> gnu.org:
bug#61222; Package guix-patches. (Thu, 09 Feb 2023 13:30:02 GMT) Full text and rfc822 format available.

Message #14 received at submit <at> debbugs.gnu.org (full text, mbox):

From: Leo Famulari <leo <at> famulari.name>
To: Hilton Chain via Guix-patches via <guix-patches <at> gnu.org>
Cc: 61222-done <at> debbugs.gnu.org
Subject: Re: [bug#61222] [PATCH 0/2] gnu: Add go-1.20.
Date: Thu, 9 Feb 2023 14:28:44 +0100
On Thu, Feb 02, 2023 at 11:48:07AM +0800, Hilton Chain via Guix-patches via wrote:
> 
> *** BLURB HERE ***
> 
> Hilton Chain (2):
>   gnu: Add go-1.20.
>   gnu: Add go-std-1.20.

Thanks! I tweaked the commit messages, added some more details to the
code comment, and pushed as 1a5f5694a7cd4bb19e9de27266e06b80d33d95cd




Reply sent to Leo Famulari <leo <at> famulari.name>:
You have taken responsibility. (Thu, 09 Feb 2023 13:30:03 GMT) Full text and rfc822 format available.

Notification sent to Hilton Chain <hako <at> ultrarare.space>:
bug acknowledged by developer. (Thu, 09 Feb 2023 13:30:03 GMT) Full text and rfc822 format available.

bug archived. Request was from Debbugs Internal Request <help-debbugs <at> gnu.org> to internal_control <at> debbugs.gnu.org. (Fri, 10 Mar 2023 12:24:06 GMT) Full text and rfc822 format available.

This bug report was last modified 1 year and 41 days ago.

Previous Next


GNU bug tracking system
Copyright (C) 1999 Darren O. Benham, 1997,2003 nCipher Corporation Ltd, 1994-97 Ian Jackson.