* [bug#65943] [PATCH 00/33] Some Go packages
@ 2023-09-14 7:09 Edouard Klein
2023-09-14 7:09 ` [bug#65939] [PATCH 01/33] gnu: Add go-github-com-sourcegraph-go-lsp Edouard Klein
` (33 more replies)
0 siblings, 34 replies; 103+ messages in thread
From: Edouard Klein @ 2023-09-14 7:09 UTC (permalink / raw)
To: 65943; +Cc: Edouard Klein, Katherine Cox-Buday
Hi Guix,
This is me trying to package go-github-com-hugelgupf-p9.
This repo pulls roughly half of the global Go's ecosystem with it.
On top of that, the automatic importer chokes on some of the
dependencies because upstream's tags are a bit messy, so I had to
manually import most of those.
Anyway, halfway through I had learnt how to package multiple-modules go
repository (see for example go-github-com-u-root-uio-*).
Then I realized that the little utility I'm actually interested in
(go-github-com-hugelgupf-p9-cmd-p9ufs) has very little dependencies
(only two, actually) and that I had done all this for naught.
So, not to let that work go to waste, I included the packages there as
well, they may prove useful to other people.
The payload for me is go-github-com-hugelgupf-p9-cmd-p9ufs and its two
dependencies, go-golang-org-x-sys (updated) and
go-github-com-u-root-uio-ulog.
Some packages have their tests disabled, but it can't be worse than the
package literally not existing.
Cheers,
Edouard
Edouard Klein (33):
gnu: Add go-github-com-sourcegraph-go-lsp.
doc: golang: Minor grammar fix on comment
gnu: Add go-src-elv-sh.
gnu: Add go-github-com-vishvananda-netns.
gnu: Add go-github-com-vishvananda-netlink.
gnu: Add go-github-com-hashicorp-errwrap.
gnu: Add go-github-com-hashicorp-go-multierror.
gnu: Add go-github-com-josharian-native.
gnu: Add go-github-com-pierrec-lz4-v4.
gnu: Add go-github-com-u-root-uio.
gnu: Fix go-github-com-u-root-uio.
gnu: Add go-github-com-u-root-uio-ulog.
gnu: Add go-github-com-u-root-uio-cp.
gnu: Add go-github-com-u-root-gobusybox-src-pkg-bb.
gnu: Add go-github-com-mdlayher-socket.
gnu: Add go-github-com-mdlayher-packet.
gnu: Add go-github-com-klauspost-pgzip.
gnu: Add go-github-com-fanliao-go-promise.
gnu: Add go-github-com-hugelgupf-socketpair.
gnu: go-golang-org-x-sys: Update to 0.12.0.
gnu: go-github-com-frankban-quicktest: Update to 1.14.6.
gnu: Add go-github-com-cilium-ebpf.
gnu: Add go-github-com-mdlayher-netlink.
gnu: Add go-github-com-jsimonetti-rtnetlink.
gnu: Add go-github-com-neelance-astrewrite.
gnu: Add go-github-com-neelance-sourcemap.
gnu: Add go-github-com-shurcool-go-importgraphutil.
gnu: Add go-github-com-inconshreveable-mousetrap.
gnu: Add go-github-com-u-root-uio-rand.
gnu: Add go-github-com-insomniacslk-dhcp-dhcpv4.
gnu: Add go-github-com-netflix-go-expect.
gnu: Add go-cloud-google-com-go-workflows.
gnu: Add go-github-com-hugelgupf-p9-cmd-p9ufs.
gnu/packages/golang.scm | 828 +++++++++++++++++++++++++++++++++++++++-
1 file changed, 820 insertions(+), 8 deletions(-)
base-commit: 2eb6df537c36da8bf8e81ff698421f6fb1bfd1ab
--
2.40.1
^ permalink raw reply [flat|nested] 103+ messages in thread
* [bug#65939] [PATCH 01/33] gnu: Add go-github-com-sourcegraph-go-lsp.
2023-09-14 7:09 [bug#65943] [PATCH 00/33] Some Go packages Edouard Klein
@ 2023-09-14 7:09 ` Edouard Klein
[not found] ` <handler.65939.B.169467595726308.ack@debbugs.gnu.org>
2023-09-14 7:29 ` [bug#65939] [PATCH 01/33] gnu: Add go-github-com-sourcegraph-go-lsp Edouard Klein
2023-09-14 7:09 ` [bug#65942] [PATCH 02/33] doc: golang: Minor grammar fix on comment Edouard Klein
` (32 subsequent siblings)
33 siblings, 2 replies; 103+ messages in thread
From: Edouard Klein @ 2023-09-14 7:09 UTC (permalink / raw)
To: 65939; +Cc: Edouard Klein, Katherine Cox-Buday
* gnu/packages/golang.scm (go-github-com-sourcegraph-go-lsp): New variable.
---
gnu/packages/golang.scm | 24 ++++++++++++++++++++++++
1 file changed, 24 insertions(+)
diff --git a/gnu/packages/golang.scm b/gnu/packages/golang.scm
index cbd4bafd20..d9914463ff 100644
--- a/gnu/packages/golang.scm
+++ b/gnu/packages/golang.scm
@@ -41,6 +41,7 @@
;;; Copyright © 2022 Christopher Howard <christopher@librehacker.com>
;;; Copyright © 2023 Hilton Chain <hako@ultrarare.space>
;;; Copyright © 2023 Timo Wilken <guix@twilken.net>
+;;; Copyright © 2023 Edouard Klein <edk@beaver-labs.com>
;;;
;;; This file is part of GNU Guix.
;;;
@@ -13200,6 +13201,29 @@ (define-public go-github-com-google-shlex
using shell-style rules for quoting and commenting.")
(license license:asl2.0)))
+(define-public go-github-com-sourcegraph-go-lsp
+ (package
+ (name "go-github-com-sourcegraph-go-lsp")
+ (version "0.0.0-20200429204803-219e11d77f5d")
+ (source (origin
+ (method git-fetch)
+ (uri (git-reference
+ (url "https://github.com/sourcegraph/go-lsp")
+ (commit (go-version->git-ref version))))
+ (file-name (git-file-name name version))
+ (sha256
+ (base32
+ "1192qrdlm698z7dsl5i88rk9p31dgx4xq7ljzhn17dl2mynbc2l2"))))
+ (build-system go-build-system)
+ (arguments
+ '(#:import-path "github.com/sourcegraph/go-lsp"))
+ (home-page "https://github.com/sourcegraph/go-lsp")
+ (synopsis "go-lsp")
+ (description
+ "Package lsp contains Go types for the messages used in the Language Server
+Protocol.")
+ (license license:expat)))
+
(define-public go-github-com-gorilla-websocket
(package
(name "go-github-com-gorilla-websocket")
--
2.40.1
^ permalink raw reply related [flat|nested] 103+ messages in thread
* [bug#65942] [PATCH 02/33] doc: golang: Minor grammar fix on comment
2023-09-14 7:09 [bug#65943] [PATCH 00/33] Some Go packages Edouard Klein
2023-09-14 7:09 ` [bug#65939] [PATCH 01/33] gnu: Add go-github-com-sourcegraph-go-lsp Edouard Klein
@ 2023-09-14 7:09 ` Edouard Klein
[not found] ` <handler.65942.B.169467596126351.ack@debbugs.gnu.org>
2023-09-14 7:09 ` [bug#65950] [PATCH 03/33] gnu: Add go-src-elv-sh Edouard Klein
` (31 subsequent siblings)
33 siblings, 1 reply; 103+ messages in thread
From: Edouard Klein @ 2023-09-14 7:09 UTC (permalink / raw)
To: 65942; +Cc: Edouard Klein, Katherine Cox-Buday
---
gnu/packages/golang.scm | 4 ++--
1 file changed, 2 insertions(+), 2 deletions(-)
diff --git a/gnu/packages/golang.scm b/gnu/packages/golang.scm
index d9914463ff..f6b7eedab7 100644
--- a/gnu/packages/golang.scm
+++ b/gnu/packages/golang.scm
@@ -13961,7 +13961,7 @@ (define-public go-github-com-onsi-ginkgo
(license license:expat)))
;;;
-;;; Avoid adding new packages to the end of this file. To reduce the chances
-;;; of a merge conflict, place them above by existing packages with similar
+;;; Avoid adding new packages at the end of this file. To reduce the chances
+;;; of a merge conflict, place them above existing packages with similar
;;; functionality or similar names.
;;;
--
2.40.1
^ permalink raw reply related [flat|nested] 103+ messages in thread
* [bug#65950] [PATCH 03/33] gnu: Add go-src-elv-sh.
2023-09-14 7:09 [bug#65943] [PATCH 00/33] Some Go packages Edouard Klein
2023-09-14 7:09 ` [bug#65939] [PATCH 01/33] gnu: Add go-github-com-sourcegraph-go-lsp Edouard Klein
2023-09-14 7:09 ` [bug#65942] [PATCH 02/33] doc: golang: Minor grammar fix on comment Edouard Klein
@ 2023-09-14 7:09 ` Edouard Klein
[not found] ` <handler.65950.B.169467598526588.ack@debbugs.gnu.org>
2023-09-14 7:09 ` [bug#65944] [PATCH 04/33] gnu: Add go-github-com-vishvananda-netns Edouard Klein
` (30 subsequent siblings)
33 siblings, 1 reply; 103+ messages in thread
From: Edouard Klein @ 2023-09-14 7:09 UTC (permalink / raw)
To: 65950; +Cc: Edouard Klein, Katherine Cox-Buday
* gnu/packages/golang.scm (go-src-elv-sh): New variable.
---
gnu/packages/golang.scm | 35 +++++++++++++++++++++++++++++++++++
1 file changed, 35 insertions(+)
diff --git a/gnu/packages/golang.scm b/gnu/packages/golang.scm
index f6b7eedab7..57dee78330 100644
--- a/gnu/packages/golang.scm
+++ b/gnu/packages/golang.scm
@@ -75,6 +75,7 @@ (define-module (gnu packages golang)
#:use-module (gnu packages base)
#:use-module ((gnu packages bootstrap) #:select (glibc-dynamic-linker))
#:use-module (gnu packages check)
+ #:use-module (gnu packages databases)
#:use-module (gnu packages fonts)
#:use-module (gnu packages gcc)
#:use-module (gnu packages glib)
@@ -13224,6 +13225,40 @@ (define-public go-github-com-sourcegraph-go-lsp
Protocol.")
(license license:expat)))
+(define-public go-src-elv-sh
+ (package
+ (name "go-src-elv-sh")
+ (version "0.19.2")
+ (source (origin
+ (method git-fetch)
+ (uri (git-reference
+ (url "https://github.com/elves/elvish")
+ (commit (string-append "v" version))))
+ (file-name (git-file-name name version))
+ (sha256
+ (base32
+ "1285j66b7kajyxffpcil8zl9p5awqw2n4si5vg4zlci651fcj8vq"))))
+ (build-system go-build-system)
+ (arguments
+ `(#:import-path "src.elv.sh/cmd/elvish"
+ #:unpack-path "src.elv.sh"
+ #:go ,go-1.20))
+ (propagated-inputs `(("go-golang-org-x-sys" ,go-golang-org-x-sys)
+ ("go-go-etcd-io-bbolt" ,go-go-etcd-io-bbolt)
+ ("go-github-com-sourcegraph-jsonrpc2" ,go-github-com-sourcegraph-jsonrpc2)
+ ("go-github-com-sourcegraph-go-lsp" ,go-github-com-sourcegraph-go-lsp)
+ ("go-github-com-mattn-go-isatty" ,go-github-com-mattn-go-isatty)
+ ("go-github-com-google-go-cmp" ,go-github-com-google-go-cmp-cmp)
+ ("go-github-com-creack-pty" ,go-github-com-creack-pty)))
+ (home-page "https://src.elv.sh")
+ (synopsis
+ "Elvish: Expressive Programming Language + Versatile Interactive Shell")
+ (description
+ "Elvish is an expressive programming language and a versatile interactive shell,
+combined into one seamless package. It runs on Linux, BSDs, @code{macOS} and
+Windows.")
+ (license license:bsd-2)))
+
(define-public go-github-com-gorilla-websocket
(package
(name "go-github-com-gorilla-websocket")
--
2.40.1
^ permalink raw reply related [flat|nested] 103+ messages in thread
* [bug#65944] [PATCH 04/33] gnu: Add go-github-com-vishvananda-netns.
2023-09-14 7:09 [bug#65943] [PATCH 00/33] Some Go packages Edouard Klein
` (2 preceding siblings ...)
2023-09-14 7:09 ` [bug#65950] [PATCH 03/33] gnu: Add go-src-elv-sh Edouard Klein
@ 2023-09-14 7:09 ` Edouard Klein
[not found] ` <handler.65944.B.169467596226374.ack@debbugs.gnu.org>
2023-09-14 7:09 ` [bug#65941] [PATCH 05/33] gnu: Add go-github-com-vishvananda-netlink Edouard Klein
` (29 subsequent siblings)
33 siblings, 1 reply; 103+ messages in thread
From: Edouard Klein @ 2023-09-14 7:09 UTC (permalink / raw)
To: 65944; +Cc: Edouard Klein, Katherine Cox-Buday
* gnu/packages/golang.scm (go-github-com-vishvananda-netns): New variable.
---
gnu/packages/golang.scm | 31 +++++++++++++++++++++++++++++++
1 file changed, 31 insertions(+)
diff --git a/gnu/packages/golang.scm b/gnu/packages/golang.scm
index 57dee78330..5a00fd0a2b 100644
--- a/gnu/packages/golang.scm
+++ b/gnu/packages/golang.scm
@@ -13259,6 +13259,37 @@ (define-public go-src-elv-sh
Windows.")
(license license:bsd-2)))
+(define-public go-github-com-vishvananda-netns
+ (package
+ (name "go-github-com-vishvananda-netns")
+ (version "0.0.4")
+ (source (origin
+ (method git-fetch)
+ (uri (git-reference
+ (url "https://github.com/vishvananda/netns")
+ (commit (string-append "v" version))))
+ (file-name (git-file-name name version))
+ (sha256
+ (base32
+ "0rci8c211m57nya9il81fz6459pia3dj5i4b16fp34vjrkcxliml"))))
+ (build-system go-build-system)
+ (arguments
+ '(#:tests? #f ;; From what I understand, and I may very well be wrong,
+ ;; the tests require root access. At least they fail with "operation not permitted".
+ #:import-path "github.com/vishvananda/netns"))
+ (propagated-inputs `(("go-golang-org-x-sys" ,go-golang-org-x-sys)))
+ (home-page "https://github.com/vishvananda/netns")
+ (synopsis "netns - network namespaces in go")
+ (description
+ "Package netns allows ultra-simple network namespace handling. @code{NsHandles}
+can be retrieved and set. Note that the current namespace is thread local so
+actions that set and reset namespaces should use @code{LockOSThread} to make
+sure the namespace doesn't change due to a goroutine switch. It is best to
+close @code{NsHandles} when you are done with them. This can be accomplished
+via a `defer ns.Close()` on the handle. Changing namespaces requires elevated
+privileges, so in most cases this code needs to be run as root.")
+ (license license:asl2.0)))
+
(define-public go-github-com-gorilla-websocket
(package
(name "go-github-com-gorilla-websocket")
--
2.40.1
^ permalink raw reply related [flat|nested] 103+ messages in thread
* [bug#65941] [PATCH 05/33] gnu: Add go-github-com-vishvananda-netlink.
2023-09-14 7:09 [bug#65943] [PATCH 00/33] Some Go packages Edouard Klein
` (3 preceding siblings ...)
2023-09-14 7:09 ` [bug#65944] [PATCH 04/33] gnu: Add go-github-com-vishvananda-netns Edouard Klein
@ 2023-09-14 7:09 ` Edouard Klein
[not found] ` <handler.65941.B.169467596126344.ack@debbugs.gnu.org>
2023-09-14 7:09 ` [bug#65945] [PATCH 06/33] gnu: Add go-github-com-hashicorp-errwrap Edouard Klein
` (28 subsequent siblings)
33 siblings, 1 reply; 103+ messages in thread
From: Edouard Klein @ 2023-09-14 7:09 UTC (permalink / raw)
To: 65941; +Cc: Edouard Klein, Katherine Cox-Buday
* gnu/packages/golang.scm (go-github-com-vishvananda-netlink): New variable.
---
gnu/packages/golang.scm | 32 ++++++++++++++++++++++++++++++++
1 file changed, 32 insertions(+)
diff --git a/gnu/packages/golang.scm b/gnu/packages/golang.scm
index 5a00fd0a2b..0f64892d56 100644
--- a/gnu/packages/golang.scm
+++ b/gnu/packages/golang.scm
@@ -13259,6 +13259,38 @@ (define-public go-src-elv-sh
Windows.")
(license license:bsd-2)))
+(define-public go-github-com-vishvananda-netlink
+ (package
+ (name "go-github-com-vishvananda-netlink")
+ (version "1.1.0")
+ (source (origin
+ (method git-fetch)
+ (uri (git-reference
+ (url "https://github.com/vishvananda/netlink")
+ (commit (string-append "v" version))))
+ (file-name (git-file-name name version))
+ (sha256
+ (base32
+ "1vhl30p1gx636a088ls4h6a0l8jjyfvz79fr5w0qzdrg4qg9h08h"))))
+ (build-system go-build-system)
+ (arguments
+ '(#:tests? #f ;; From what I understand, and I may very well be wrong,
+ ;; the tests require root access. At least they fail with "operation not permitted".
+ #:import-path "github.com/vishvananda/netlink"))
+ (propagated-inputs `(("go-golang-org-x-sys" ,go-golang-org-x-sys)
+ ("go-github-com-vishvananda-netns" ,go-github-com-vishvananda-netns)))
+ (home-page "https://github.com/vishvananda/netlink")
+ (synopsis "netlink - netlink library for go")
+ (description
+ "Package netlink provides a simple library for netlink. Netlink is the interface
+a user-space program in linux uses to communicate with the kernel. It can be
+used to add and remove interfaces, set up ip addresses and routes, and confiugre
+ipsec. Netlink communication requires elevated privileges, so in most cases
+this code needs to be run as root. The low level primitives for netlink are
+contained in the nl subpackage. This package attempts to provide a high-level
+interface that is loosly modeled on the iproute2 cli.")
+ (license license:asl2.0)))
+
(define-public go-github-com-vishvananda-netns
(package
(name "go-github-com-vishvananda-netns")
--
2.40.1
^ permalink raw reply related [flat|nested] 103+ messages in thread
* [bug#65945] [PATCH 06/33] gnu: Add go-github-com-hashicorp-errwrap.
2023-09-14 7:09 [bug#65943] [PATCH 00/33] Some Go packages Edouard Klein
` (4 preceding siblings ...)
2023-09-14 7:09 ` [bug#65941] [PATCH 05/33] gnu: Add go-github-com-vishvananda-netlink Edouard Klein
@ 2023-09-14 7:09 ` Edouard Klein
[not found] ` <handler.65945.B.169467596326381.ack@debbugs.gnu.org>
2023-09-14 7:09 ` [bug#65940] [PATCH 07/33] gnu: Add go-github-com-hashicorp-go-multierror Edouard Klein
` (27 subsequent siblings)
33 siblings, 1 reply; 103+ messages in thread
From: Edouard Klein @ 2023-09-14 7:09 UTC (permalink / raw)
To: 65945; +Cc: Edouard Klein, Katherine Cox-Buday
* gnu/packages/golang.scm (go-github-com-hashicorp-errwrap): New variable.
---
gnu/packages/golang.scm | 22 ++++++++++++++++++++++
1 file changed, 22 insertions(+)
diff --git a/gnu/packages/golang.scm b/gnu/packages/golang.scm
index 0f64892d56..435c553e05 100644
--- a/gnu/packages/golang.scm
+++ b/gnu/packages/golang.scm
@@ -13259,6 +13259,28 @@ (define-public go-src-elv-sh
Windows.")
(license license:bsd-2)))
+(define-public go-github-com-hashicorp-errwrap
+ (package
+ (name "go-github-com-hashicorp-errwrap")
+ (version "1.1.0")
+ (source (origin
+ (method git-fetch)
+ (uri (git-reference
+ (url "https://github.com/hashicorp/errwrap")
+ (commit (string-append "v" version))))
+ (file-name (git-file-name name version))
+ (sha256
+ (base32
+ "0p5wdz8p7dmwphmb33gwhy3iwci5k9wkfqmmfa6ay1lz0cqjwp7a"))))
+ (build-system go-build-system)
+ (arguments
+ '(#:import-path "github.com/hashicorp/errwrap"))
+ (home-page "https://github.com/hashicorp/errwrap")
+ (synopsis "errwrap")
+ (description
+ "Package errwrap implements methods to formalize error wrapping in Go.")
+ (license license:mpl2.0)))
+
(define-public go-github-com-vishvananda-netlink
(package
(name "go-github-com-vishvananda-netlink")
--
2.40.1
^ permalink raw reply related [flat|nested] 103+ messages in thread
* [bug#65940] [PATCH 07/33] gnu: Add go-github-com-hashicorp-go-multierror.
2023-09-14 7:09 [bug#65943] [PATCH 00/33] Some Go packages Edouard Klein
` (5 preceding siblings ...)
2023-09-14 7:09 ` [bug#65945] [PATCH 06/33] gnu: Add go-github-com-hashicorp-errwrap Edouard Klein
@ 2023-09-14 7:09 ` Edouard Klein
[not found] ` <handler.65940.B.169467596126335.ack@debbugs.gnu.org>
2023-09-14 7:09 ` [bug#65953] [PATCH 08/33] gnu: Add go-github-com-josharian-native Edouard Klein
` (26 subsequent siblings)
33 siblings, 1 reply; 103+ messages in thread
From: Edouard Klein @ 2023-09-14 7:09 UTC (permalink / raw)
To: 65940; +Cc: Edouard Klein, Katherine Cox-Buday
* gnu/packages/golang.scm (go-github-com-hashicorp-go-multierror): New variable.
---
gnu/packages/golang.scm | 24 ++++++++++++++++++++++++
1 file changed, 24 insertions(+)
diff --git a/gnu/packages/golang.scm b/gnu/packages/golang.scm
index 435c553e05..8215f29dd5 100644
--- a/gnu/packages/golang.scm
+++ b/gnu/packages/golang.scm
@@ -13281,6 +13281,30 @@ (define-public go-github-com-hashicorp-errwrap
"Package errwrap implements methods to formalize error wrapping in Go.")
(license license:mpl2.0)))
+(define-public go-github-com-hashicorp-go-multierror
+ (package
+ (name "go-github-com-hashicorp-go-multierror")
+ (version "1.1.1")
+ (source (origin
+ (method git-fetch)
+ (uri (git-reference
+ (url "https://github.com/hashicorp/go-multierror")
+ (commit (string-append "v" version))))
+ (file-name (git-file-name name version))
+ (sha256
+ (base32
+ "0l4s41skdpifndn9s8y6s9vzgghdzg4z8z0lld9qjr28888wzp00"))))
+ (build-system go-build-system)
+ (arguments
+ '(#:import-path "github.com/hashicorp/go-multierror"))
+ (propagated-inputs `(("go-github-com-hashicorp-errwrap" ,go-github-com-hashicorp-errwrap)))
+ (home-page "https://github.com/hashicorp/go-multierror")
+ (synopsis "go-multierror")
+ (description
+ "@@code{go-multierror} is a package for Go that provides a mechanism for
+representing a list of @@code{error} values as a single @@code{error}.")
+ (license license:mpl2.0)))
+
(define-public go-github-com-vishvananda-netlink
(package
(name "go-github-com-vishvananda-netlink")
--
2.40.1
^ permalink raw reply related [flat|nested] 103+ messages in thread
* [bug#65953] [PATCH 08/33] gnu: Add go-github-com-josharian-native.
2023-09-14 7:09 [bug#65943] [PATCH 00/33] Some Go packages Edouard Klein
` (6 preceding siblings ...)
2023-09-14 7:09 ` [bug#65940] [PATCH 07/33] gnu: Add go-github-com-hashicorp-go-multierror Edouard Klein
@ 2023-09-14 7:09 ` Edouard Klein
[not found] ` <handler.65953.B.169467598626610.ack@debbugs.gnu.org>
2023-09-14 7:09 ` [bug#65946] [PATCH 09/33] gnu: Add go-github-com-pierrec-lz4-v4 Edouard Klein
` (25 subsequent siblings)
33 siblings, 1 reply; 103+ messages in thread
From: Edouard Klein @ 2023-09-14 7:09 UTC (permalink / raw)
To: 65953; +Cc: Edouard Klein, Katherine Cox-Buday
* gnu/packages/golang.scm (go-github-com-josharian-native): New variable.
---
gnu/packages/golang.scm | 21 +++++++++++++++++++++
1 file changed, 21 insertions(+)
diff --git a/gnu/packages/golang.scm b/gnu/packages/golang.scm
index 8215f29dd5..261c859d27 100644
--- a/gnu/packages/golang.scm
+++ b/gnu/packages/golang.scm
@@ -13305,6 +13305,27 @@ (define-public go-github-com-hashicorp-go-multierror
representing a list of @@code{error} values as a single @@code{error}.")
(license license:mpl2.0)))
+(define-public go-github-com-josharian-native
+ (package
+ (name "go-github-com-josharian-native")
+ (version "1.1.0")
+ (source (origin
+ (method git-fetch)
+ (uri (git-reference
+ (url "https://github.com/josharian/native")
+ (commit (string-append "v" version))))
+ (file-name (git-file-name name version))
+ (sha256
+ (base32
+ "1wa4yzc3r06qjklqjf4n30zx9v660w8hmxkmybzwk03fmlv2rcyj"))))
+ (build-system go-build-system)
+ (arguments
+ '(#:import-path "github.com/josharian/native"))
+ (home-page "https://github.com/josharian/native")
+ (synopsis #f)
+ (description "Package native provides easy access to native byte order.")
+ (license license:expat)))
+
(define-public go-github-com-vishvananda-netlink
(package
(name "go-github-com-vishvananda-netlink")
--
2.40.1
^ permalink raw reply related [flat|nested] 103+ messages in thread
* [bug#65946] [PATCH 09/33] gnu: Add go-github-com-pierrec-lz4-v4.
2023-09-14 7:09 [bug#65943] [PATCH 00/33] Some Go packages Edouard Klein
` (7 preceding siblings ...)
2023-09-14 7:09 ` [bug#65953] [PATCH 08/33] gnu: Add go-github-com-josharian-native Edouard Klein
@ 2023-09-14 7:09 ` Edouard Klein
[not found] ` <handler.65946.B.169467596426391.ack@debbugs.gnu.org>
2023-09-14 7:09 ` [bug#65954] [PATCH 10/33] gnu: Add go-github-com-u-root-uio Edouard Klein
` (24 subsequent siblings)
33 siblings, 1 reply; 103+ messages in thread
From: Edouard Klein @ 2023-09-14 7:09 UTC (permalink / raw)
To: 65946; +Cc: Edouard Klein, Katherine Cox-Buday
* gnu/packages/golang.scm (go-github-com-pierrec-lz4-v4): New variable.
---
gnu/packages/golang.scm | 24 ++++++++++++++++++++++++
1 file changed, 24 insertions(+)
diff --git a/gnu/packages/golang.scm b/gnu/packages/golang.scm
index 261c859d27..05c81b56bb 100644
--- a/gnu/packages/golang.scm
+++ b/gnu/packages/golang.scm
@@ -13259,6 +13259,30 @@ (define-public go-src-elv-sh
Windows.")
(license license:bsd-2)))
+(define-public go-github-com-pierrec-lz4-v4
+ (package
+ (name "go-github-com-pierrec-lz4-v4")
+ (version "4.1.18")
+ (source (origin
+ (method git-fetch)
+ (uri (git-reference
+ (url "https://github.com/pierrec/lz4")
+ (commit (string-append "v" version))))
+ (file-name (git-file-name name version))
+ (sha256
+ (base32
+ "054b40963h3l13a7nxw3990b3a9033ypin7l79da6fiv2ynnsnb8"))))
+ (build-system go-build-system)
+ (arguments
+ '(#:tests? #f ;; The tests fail, but I have neither the time nor the skill
+ ;; to make them pass.
+ #:import-path "github.com/pierrec/lz4/v4"))
+ (home-page "https://github.com/pierrec/lz4")
+ (synopsis "lz4 : LZ4 compression in pure Go")
+ (description
+ "Package lz4 implements reading and writing lz4 compressed data.")
+ (license license:bsd-3)))
+
(define-public go-github-com-hashicorp-errwrap
(package
(name "go-github-com-hashicorp-errwrap")
--
2.40.1
^ permalink raw reply related [flat|nested] 103+ messages in thread
* [bug#65954] [PATCH 10/33] gnu: Add go-github-com-u-root-uio.
2023-09-14 7:09 [bug#65943] [PATCH 00/33] Some Go packages Edouard Klein
` (8 preceding siblings ...)
2023-09-14 7:09 ` [bug#65946] [PATCH 09/33] gnu: Add go-github-com-pierrec-lz4-v4 Edouard Klein
@ 2023-09-14 7:09 ` Edouard Klein
[not found] ` <handler.65954.B.169467598626616.ack@debbugs.gnu.org>
2023-09-14 7:09 ` [bug#65952] [PATCH 11/33] gnu: Fix go-github-com-u-root-uio Edouard Klein
` (23 subsequent siblings)
33 siblings, 1 reply; 103+ messages in thread
From: Edouard Klein @ 2023-09-14 7:09 UTC (permalink / raw)
To: 65954; +Cc: Edouard Klein, Katherine Cox-Buday
* gnu/packages/golang.scm (go-github-com-u-root-uio): New variable.
---
gnu/packages/golang.scm | 31 +++++++++++++++++++++++++++++++
1 file changed, 31 insertions(+)
diff --git a/gnu/packages/golang.scm b/gnu/packages/golang.scm
index 05c81b56bb..0e6d0d1adb 100644
--- a/gnu/packages/golang.scm
+++ b/gnu/packages/golang.scm
@@ -13350,6 +13350,37 @@ (define-public go-github-com-josharian-native
(description "Package native provides easy access to native byte order.")
(license license:expat)))
+(define-public go-github-com-u-root-uio
+ (package
+ (name "go-github-com-u-root-uio")
+ (version "0.0.0-20230305220412-3e8cd9d6bf63")
+ (source (origin
+ (method git-fetch)
+ (uri (git-reference
+ (url "https://github.com/u-root/uio")
+ (commit (go-version->git-ref version))))
+ (file-name (git-file-name name version))
+ (sha256
+ (base32
+ "1gvv66ixkgwikjx8sjdknvrmd08wv2ia02q8n8y3mnkhrgyyx1yf"))))
+ (build-system go-build-system)
+ (arguments
+ '(#:import-path "github.com/u-root/uio/uio"
+ #:unpack-path "github.com/u-root/uio/"
+ #:tests? #f;;The tests fail because of go-github-com-pierrec-lz4-v4 but
+ ;; the output make it seem that test is broken, not the code. The
+ ;; output looks like "Got something, want something else", but
+ ;; something and something else look pretty much the same (at a cursory
+ ;; glance). I'll move on as I don't think this has an actual impact.
+ ))
+ (propagated-inputs `(("go-golang-org-x-sys" ,go-golang-org-x-sys)
+ ("go-github-com-pierrec-lz4-v4" ,go-github-com-pierrec-lz4-v4)
+ ("go-github-com-josharian-native" ,go-github-com-josharian-native)))
+ (home-page "https://github.com/u-root/uio")
+ (synopsis "uio")
+ (description #f)
+ (license license:bsd-3)))
+
(define-public go-github-com-vishvananda-netlink
(package
(name "go-github-com-vishvananda-netlink")
--
2.40.1
^ permalink raw reply related [flat|nested] 103+ messages in thread
* [bug#65952] [PATCH 11/33] gnu: Fix go-github-com-u-root-uio.
2023-09-14 7:09 [bug#65943] [PATCH 00/33] Some Go packages Edouard Klein
` (9 preceding siblings ...)
2023-09-14 7:09 ` [bug#65954] [PATCH 10/33] gnu: Add go-github-com-u-root-uio Edouard Klein
@ 2023-09-14 7:09 ` Edouard Klein
[not found] ` <handler.65952.B.169467598526602.ack@debbugs.gnu.org>
2023-09-14 7:09 ` [bug#65948] [PATCH 12/33] gnu: Add go-github-com-u-root-uio-ulog Edouard Klein
` (22 subsequent siblings)
33 siblings, 1 reply; 103+ messages in thread
From: Edouard Klein @ 2023-09-14 7:09 UTC (permalink / raw)
To: 65952; +Cc: Edouard Klein, Katherine Cox-Buday
* gnu/packages/golang.scm (go-github-com-u-root-uio-uio): New variable.
* gnu/packages/golang.scm (go-github-com-u-root-uio): Remove variable.
go-github-com-u-root-uio needs to be broken down into its component packages
---
gnu/packages/golang.scm | 6 +++---
1 file changed, 3 insertions(+), 3 deletions(-)
diff --git a/gnu/packages/golang.scm b/gnu/packages/golang.scm
index 0e6d0d1adb..4baf228752 100644
--- a/gnu/packages/golang.scm
+++ b/gnu/packages/golang.scm
@@ -13350,9 +13350,9 @@ (define-public go-github-com-josharian-native
(description "Package native provides easy access to native byte order.")
(license license:expat)))
-(define-public go-github-com-u-root-uio
+(define-public go-github-com-u-root-uio-uio
(package
- (name "go-github-com-u-root-uio")
+ (name "go-github-com-u-root-uio-uio")
(version "0.0.0-20230305220412-3e8cd9d6bf63")
(source (origin
(method git-fetch)
@@ -13366,7 +13366,7 @@ (define-public go-github-com-u-root-uio
(build-system go-build-system)
(arguments
'(#:import-path "github.com/u-root/uio/uio"
- #:unpack-path "github.com/u-root/uio/"
+ #:unpack-path "github.com/u-root/uio"
#:tests? #f;;The tests fail because of go-github-com-pierrec-lz4-v4 but
;; the output make it seem that test is broken, not the code. The
;; output looks like "Got something, want something else", but
--
2.40.1
^ permalink raw reply related [flat|nested] 103+ messages in thread
* [bug#65948] [PATCH 12/33] gnu: Add go-github-com-u-root-uio-ulog.
2023-09-14 7:09 [bug#65943] [PATCH 00/33] Some Go packages Edouard Klein
` (10 preceding siblings ...)
2023-09-14 7:09 ` [bug#65952] [PATCH 11/33] gnu: Fix go-github-com-u-root-uio Edouard Klein
@ 2023-09-14 7:09 ` Edouard Klein
[not found] ` <handler.65948.B.169467598426572.ack@debbugs.gnu.org>
2023-09-14 7:09 ` [bug#65947] [PATCH 13/33] gnu: Add go-github-com-u-root-uio-cp Edouard Klein
` (21 subsequent siblings)
33 siblings, 1 reply; 103+ messages in thread
From: Edouard Klein @ 2023-09-14 7:09 UTC (permalink / raw)
To: 65948; +Cc: Edouard Klein, Katherine Cox-Buday
* gnu/packages/golang.scm (go-github-com-u-root-uio-ulog): New variable.
---
gnu/packages/golang.scm | 30 ++++++++++++++++++++++++++++++
1 file changed, 30 insertions(+)
diff --git a/gnu/packages/golang.scm b/gnu/packages/golang.scm
index 4baf228752..cb882058cf 100644
--- a/gnu/packages/golang.scm
+++ b/gnu/packages/golang.scm
@@ -13381,6 +13381,36 @@ (define-public go-github-com-u-root-uio-uio
(description #f)
(license license:bsd-3)))
+(define-public go-github-com-u-root-uio-ulog
+ (package
+ (name "go-github-com-u-root-uio-cp")
+ (version "0.0.0-20230305220412-3e8cd9d6bf63")
+ (source (origin
+ (method git-fetch)
+ (uri (git-reference
+ (url "https://github.com/u-root/uio")
+ (commit (go-version->git-ref version))))
+ (file-name (git-file-name name version))
+ (sha256
+ (base32
+ "1gvv66ixkgwikjx8sjdknvrmd08wv2ia02q8n8y3mnkhrgyyx1yf"))))
+ (build-system go-build-system)
+ (arguments
+ (list
+ #:import-path "github.com/u-root/uio/ulog"
+ #:unpack-path "github.com/u-root/uio"
+ #:install-source? #t
+ ;; Source-only package
+ #:tests? #f
+ #:phases
+ #~(modify-phases %standard-phases
+ ;; Source-only package
+ (delete 'build))))
+ (home-page "https://github.com/u-root/uio")
+ (synopsis "uio")
+ (description #f)
+ (license license:bsd-3)))
+
(define-public go-github-com-vishvananda-netlink
(package
(name "go-github-com-vishvananda-netlink")
--
2.40.1
^ permalink raw reply related [flat|nested] 103+ messages in thread
* [bug#65947] [PATCH 13/33] gnu: Add go-github-com-u-root-uio-cp.
2023-09-14 7:09 [bug#65943] [PATCH 00/33] Some Go packages Edouard Klein
` (11 preceding siblings ...)
2023-09-14 7:09 ` [bug#65948] [PATCH 12/33] gnu: Add go-github-com-u-root-uio-ulog Edouard Klein
@ 2023-09-14 7:09 ` Edouard Klein
[not found] ` <handler.65947.B.169467598326565.ack@debbugs.gnu.org>
2023-09-14 7:09 ` [bug#65951] [PATCH 14/33] gnu: Add go-github-com-u-root-gobusybox-src-pkg-bb Edouard Klein
` (20 subsequent siblings)
33 siblings, 1 reply; 103+ messages in thread
From: Edouard Klein @ 2023-09-14 7:09 UTC (permalink / raw)
To: 65947; +Cc: Edouard Klein, Katherine Cox-Buday
* gnu/packages/golang.scm (go-github-com-u-root-uio-cp): New variable.
---
gnu/packages/golang.scm | 30 ++++++++++++++++++++++++++++++
1 file changed, 30 insertions(+)
diff --git a/gnu/packages/golang.scm b/gnu/packages/golang.scm
index cb882058cf..2ce2c57347 100644
--- a/gnu/packages/golang.scm
+++ b/gnu/packages/golang.scm
@@ -13411,6 +13411,36 @@ (define-public go-github-com-u-root-uio-ulog
(description #f)
(license license:bsd-3)))
+(define-public go-github-com-u-root-uio-cp
+ (package
+ (name "go-github-com-u-root-uio-cp")
+ (version "0.0.0-20230305220412-3e8cd9d6bf63")
+ (source (origin
+ (method git-fetch)
+ (uri (git-reference
+ (url "https://github.com/u-root/uio")
+ (commit (go-version->git-ref version))))
+ (file-name (git-file-name name version))
+ (sha256
+ (base32
+ "1gvv66ixkgwikjx8sjdknvrmd08wv2ia02q8n8y3mnkhrgyyx1yf"))))
+ (build-system go-build-system)
+ (arguments
+ (list
+ #:import-path "github.com/u-root/uio/cp"
+ #:unpack-path "github.com/u-root/uio"
+ #:install-source? #t
+ ;; Source-only package
+ #:tests? #f
+ #:phases
+ #~(modify-phases %standard-phases
+ ;; Source-only package
+ (delete 'build))))
+ (home-page "https://github.com/u-root/uio")
+ (synopsis "uio")
+ (description #f)
+ (license license:bsd-3)))
+
(define-public go-github-com-vishvananda-netlink
(package
(name "go-github-com-vishvananda-netlink")
--
2.40.1
^ permalink raw reply related [flat|nested] 103+ messages in thread
* [bug#65951] [PATCH 14/33] gnu: Add go-github-com-u-root-gobusybox-src-pkg-bb.
2023-09-14 7:09 [bug#65943] [PATCH 00/33] Some Go packages Edouard Klein
` (12 preceding siblings ...)
2023-09-14 7:09 ` [bug#65947] [PATCH 13/33] gnu: Add go-github-com-u-root-uio-cp Edouard Klein
@ 2023-09-14 7:09 ` Edouard Klein
[not found] ` <handler.65951.B.169467598526595.ack@debbugs.gnu.org>
2023-09-14 7:09 ` [bug#65955] [PATCH 15/33] gnu: Add go-github-com-mdlayher-socket Edouard Klein
` (19 subsequent siblings)
33 siblings, 1 reply; 103+ messages in thread
From: Edouard Klein @ 2023-09-14 7:09 UTC (permalink / raw)
To: 65951; +Cc: Edouard Klein, Katherine Cox-Buday
* gnu/packages/golang.scm (go-github-com-u-root-gobusybox-src-pkg-bb): New variable.
---
gnu/packages/golang.scm | 33 +++++++++++++++++++++++++++++++++
1 file changed, 33 insertions(+)
diff --git a/gnu/packages/golang.scm b/gnu/packages/golang.scm
index 2ce2c57347..08fd4c5010 100644
--- a/gnu/packages/golang.scm
+++ b/gnu/packages/golang.scm
@@ -13441,6 +13441,39 @@ (define-public go-github-com-u-root-uio-cp
(description #f)
(license license:bsd-3)))
+
+(define-public go-github-com-u-root-gobusybox-src-pkg-bb
+ (package
+ (name "go-github-com-u-root-gobusybox-src-pkg-bb")
+ (version "0.0.0-20230817123913-21a9727f4316")
+ (source (origin
+ (method git-fetch)
+ (uri (git-reference
+ (url "https://github.com/u-root/gobusybox")
+ (commit (go-version->git-ref version))))
+ (file-name (git-file-name name version))
+ (sha256
+ (base32
+ "0n03f150487459ljmhzfpjm6jdf7axifl9qfahq5mwcynb495w2z"))))
+ (build-system go-build-system)
+ (arguments
+ '(#:import-path "github.com/u-root/gobusybox/src/pkg/bb"
+ #:unpack-path "github.com/u-root/gobusybox"))
+ (propagated-inputs `(("go-golang-org-x-xerrors" ,go-golang-org-x-xerrors)
+ ("go-github-com-hashicorp-errwrap" ,go-github-com-hashicorp-errwrap)
+ ("go-golang-org-x-tools" ,go-golang-org-x-tools)
+ ("go-golang-org-x-sys" ,go-golang-org-x-sys)
+ ("go-golang-org-x-mod" ,go-golang-org-x-mod)
+ ("go-github-com-u-root-uio-uio" ,go-github-com-u-root-uio-uio)
+ ("go-github-com-u-root-uio-ulog" ,go-github-com-u-root-uio-ulog)
+ ("go-github-com-u-root-uio-cp" ,go-github-com-u-root-uio-cp)
+ ("go-github-com-hashicorp-go-multierror" ,go-github-com-hashicorp-go-multierror)
+ ("go-github-com-google-goterm" ,go-github-com-google-goterm)))
+ (home-page "https://github.com/u-root/gobusybox")
+ (synopsis #f)
+ (description #f)
+ (license license:bsd-3)))
+
(define-public go-github-com-vishvananda-netlink
(package
(name "go-github-com-vishvananda-netlink")
--
2.40.1
^ permalink raw reply related [flat|nested] 103+ messages in thread
* [bug#65955] [PATCH 15/33] gnu: Add go-github-com-mdlayher-socket.
2023-09-14 7:09 [bug#65943] [PATCH 00/33] Some Go packages Edouard Klein
` (13 preceding siblings ...)
2023-09-14 7:09 ` [bug#65951] [PATCH 14/33] gnu: Add go-github-com-u-root-gobusybox-src-pkg-bb Edouard Klein
@ 2023-09-14 7:09 ` Edouard Klein
[not found] ` <handler.65955.B.169467598626624.ack@debbugs.gnu.org>
2023-09-14 7:09 ` [bug#65956] [PATCH 16/33] gnu: Add go-github-com-mdlayher-packet Edouard Klein
` (18 subsequent siblings)
33 siblings, 1 reply; 103+ messages in thread
From: Edouard Klein @ 2023-09-14 7:09 UTC (permalink / raw)
To: 65955; +Cc: Edouard Klein, Katherine Cox-Buday
* gnu/packages/golang.scm (go-github-com-mdlayher-socket): New variable.
---
gnu/packages/golang.scm | 29 +++++++++++++++++++++++++++++
1 file changed, 29 insertions(+)
diff --git a/gnu/packages/golang.scm b/gnu/packages/golang.scm
index 08fd4c5010..9723c36dc0 100644
--- a/gnu/packages/golang.scm
+++ b/gnu/packages/golang.scm
@@ -13474,6 +13474,35 @@ (define-public go-github-com-u-root-gobusybox-src-pkg-bb
(description #f)
(license license:bsd-3)))
+(define-public go-github-com-mdlayher-socket
+ (package
+ (name "go-github-com-mdlayher-socket")
+ (version "0.5.0")
+ (source (origin
+ (method git-fetch)
+ (uri (git-reference
+ (url "https://github.com/mdlayher/socket")
+ (commit (string-append "v" version))))
+ (file-name (git-file-name name version))
+ (sha256
+ (base32
+ "1g0bifm7xyfisgk0jmvyshmrnawkwvamn40hvg8f46xs3s5incfz"))))
+ (build-system go-build-system)
+ (arguments
+ `(#:import-path "github.com/mdlayher/socket"
+ #:go ,go-1.20))
+ (propagated-inputs `(("go-golang-org-x-sys" ,go-golang-org-x-sys)
+ ("go-golang-org-x-sync" ,go-golang-org-x-sync)
+ ("go-golang-org-x-net" ,go-golang-org-x-net)
+ ("go-github-com-google-go-cmp-cmp" ,go-github-com-google-go-cmp-cmp)))
+ (home-page "https://github.com/mdlayher/socket")
+ (synopsis "socket")
+ (description
+ "Package socket provides a low-level network connection type which integrates
+with Go's runtime network poller to provide asynchronous I/O and deadline
+support.")
+ (license license:expat)))
+
(define-public go-github-com-vishvananda-netlink
(package
(name "go-github-com-vishvananda-netlink")
--
2.40.1
^ permalink raw reply related [flat|nested] 103+ messages in thread
* [bug#65956] [PATCH 16/33] gnu: Add go-github-com-mdlayher-packet.
2023-09-14 7:09 [bug#65943] [PATCH 00/33] Some Go packages Edouard Klein
` (14 preceding siblings ...)
2023-09-14 7:09 ` [bug#65955] [PATCH 15/33] gnu: Add go-github-com-mdlayher-socket Edouard Klein
@ 2023-09-14 7:09 ` Edouard Klein
[not found] ` <handler.65956.B.169467598726632.ack@debbugs.gnu.org>
2023-09-14 7:09 ` [bug#65958] [PATCH 17/33] gnu: Add go-github-com-klauspost-pgzip Edouard Klein
` (17 subsequent siblings)
33 siblings, 1 reply; 103+ messages in thread
From: Edouard Klein @ 2023-09-14 7:09 UTC (permalink / raw)
To: 65956; +Cc: Edouard Klein, Katherine Cox-Buday
* gnu/packages/golang.scm (go-github-com-mdlayher-packet): New variable.
---
gnu/packages/golang.scm | 30 ++++++++++++++++++++++++++++++
1 file changed, 30 insertions(+)
diff --git a/gnu/packages/golang.scm b/gnu/packages/golang.scm
index 9723c36dc0..075f341b9b 100644
--- a/gnu/packages/golang.scm
+++ b/gnu/packages/golang.scm
@@ -13503,6 +13503,36 @@ (define-public go-github-com-mdlayher-socket
support.")
(license license:expat)))
+(define-public go-github-com-mdlayher-packet
+ (package
+ (name "go-github-com-mdlayher-packet")
+ (version "1.1.2")
+ (source (origin
+ (method git-fetch)
+ (uri (git-reference
+ (url "https://github.com/mdlayher/packet")
+ (commit (string-append "v" version))))
+ (file-name (git-file-name name version))
+ (sha256
+ (base32
+ "17jms60j1xygsn5z61r2kz8yywsihf0xjzlhq3v5cpqf08mljwsn"))))
+ (build-system go-build-system)
+ (arguments
+ `(#:import-path "github.com/mdlayher/packet"
+ #:go ,go-1.20))
+ (propagated-inputs `(("go-golang-org-x-sync" ,go-golang-org-x-sync)
+ ("go-golang-org-x-sys" ,go-golang-org-x-sys)
+ ("go-golang-org-x-net" ,go-golang-org-x-net)
+ ("go-github-com-mdlayher-socket" ,go-github-com-mdlayher-socket)
+ ("go-github-com-josharian-native" ,go-github-com-josharian-native)
+ ("go-github-com-google-go-cmp-cmp" ,go-github-com-google-go-cmp-cmp)))
+ (home-page "https://github.com/mdlayher/packet")
+ (synopsis "packet")
+ (description
+ "Package packet provides access to Linux packet sockets (AF_PACKET).")
+ (license license:expat)))
+
+
(define-public go-github-com-vishvananda-netlink
(package
(name "go-github-com-vishvananda-netlink")
--
2.40.1
^ permalink raw reply related [flat|nested] 103+ messages in thread
* [bug#65958] [PATCH 17/33] gnu: Add go-github-com-klauspost-pgzip.
2023-09-14 7:09 [bug#65943] [PATCH 00/33] Some Go packages Edouard Klein
` (15 preceding siblings ...)
2023-09-14 7:09 ` [bug#65956] [PATCH 16/33] gnu: Add go-github-com-mdlayher-packet Edouard Klein
@ 2023-09-14 7:09 ` Edouard Klein
[not found] ` <handler.65958.B.169467598826647.ack@debbugs.gnu.org>
2023-09-14 7:09 ` [bug#65949] [PATCH 18/33] gnu: Add go-github-com-fanliao-go-promise Edouard Klein
` (16 subsequent siblings)
33 siblings, 1 reply; 103+ messages in thread
From: Edouard Klein @ 2023-09-14 7:09 UTC (permalink / raw)
To: 65958; +Cc: Edouard Klein, Katherine Cox-Buday
* gnu/packages/golang.scm (go-github-com-klauspost-pgzip): New variable.
---
gnu/packages/golang.scm | 25 +++++++++++++++++++++++++
1 file changed, 25 insertions(+)
diff --git a/gnu/packages/golang.scm b/gnu/packages/golang.scm
index 075f341b9b..f2924ae796 100644
--- a/gnu/packages/golang.scm
+++ b/gnu/packages/golang.scm
@@ -12015,6 +12015,31 @@ (define-public go-github-com-klauspost-compress
(description "@code{compress} provides various compression algorithms.")
(license license:bsd-3)))
+(define-public go-github-com-klauspost-pgzip
+ (package
+ (name "go-github-com-klauspost-pgzip")
+ (version "1.2.6")
+ (source (origin
+ (method git-fetch)
+ (uri (git-reference
+ (url "https://github.com/klauspost/pgzip")
+ (commit (string-append "v" version))))
+ (file-name (git-file-name name version))
+ (sha256
+ (base32
+ "1j29wr6nd9ncdbkjphyziv0h8p5s2mj222cgcfqxmzjnfn7623d8"))))
+ (build-system go-build-system)
+ (arguments
+ '(#:import-path "github.com/klauspost/pgzip"))
+ (propagated-inputs
+ (list go-github-com-klauspost-compress))
+ (home-page "https://github.com/klauspost/pgzip")
+ (synopsis "pgzip")
+ (description
+ "Package pgzip implements reading and writing of gzip format compressed files, as
+specified in @@url{https://rfc-editor.org/rfc/rfc1952.html,RFC 1952}.")
+ (license license:expat)))
+
(define-public go-github-com-oneofone-xxhash
(package
(name "go-github-com-oneofone-xxhash")
--
2.40.1
^ permalink raw reply related [flat|nested] 103+ messages in thread
* [bug#65949] [PATCH 18/33] gnu: Add go-github-com-fanliao-go-promise.
2023-09-14 7:09 [bug#65943] [PATCH 00/33] Some Go packages Edouard Klein
` (16 preceding siblings ...)
2023-09-14 7:09 ` [bug#65958] [PATCH 17/33] gnu: Add go-github-com-klauspost-pgzip Edouard Klein
@ 2023-09-14 7:09 ` Edouard Klein
[not found] ` <handler.65949.B.169467598426579.ack@debbugs.gnu.org>
2023-09-14 7:09 ` [bug#65970] [PATCH 19/33] gnu: Add go-github-com-hugelgupf-socketpair Edouard Klein
` (15 subsequent siblings)
33 siblings, 1 reply; 103+ messages in thread
From: Edouard Klein @ 2023-09-14 7:09 UTC (permalink / raw)
To: 65949; +Cc: Edouard Klein, Katherine Cox-Buday
* gnu/packages/golang.scm (go-github-com-fanliao-go-promise): New variable.
---
gnu/packages/golang.scm | 25 +++++++++++++++++++++++++
1 file changed, 25 insertions(+)
diff --git a/gnu/packages/golang.scm b/gnu/packages/golang.scm
index f2924ae796..7f19cfa608 100644
--- a/gnu/packages/golang.scm
+++ b/gnu/packages/golang.scm
@@ -13557,6 +13557,31 @@ (define-public go-github-com-mdlayher-packet
"Package packet provides access to Linux packet sockets (AF_PACKET).")
(license license:expat)))
+(define-public go-github-com-fanliao-go-promise
+ (package
+ (name "go-github-com-fanliao-go-promise")
+ (version "0.0.0-20141029170127-1890db352a72")
+ (source (origin
+ (method git-fetch)
+ (uri (git-reference
+ (url "https://github.com/fanliao/go-promise")
+ (commit (go-version->git-ref version))))
+ (file-name (git-file-name name version))
+ (sha256
+ (base32
+ "0nlls86fx6sxsvwp5k769h5knwh96j8fahhivh6fagzjjyyqcijd"))))
+ (build-system go-build-system)
+ (arguments
+ '(#:import-path "github.com/fanliao/go-promise"
+ ;; The tests fail but I'm too lazy to look into it
+ #:tests? #f))
+ (propagated-inputs (list go-github.com-smartystreets-goconvey))
+ (home-page "https://github.com/fanliao/go-promise")
+ (synopsis "Installation")
+ (description
+ "Package promise provides a complete promise and future implementation. A quick
+start sample:")
+ (license license:expat)))
(define-public go-github-com-vishvananda-netlink
(package
--
2.40.1
^ permalink raw reply related [flat|nested] 103+ messages in thread
* [bug#65970] [PATCH 19/33] gnu: Add go-github-com-hugelgupf-socketpair.
2023-09-14 7:09 [bug#65943] [PATCH 00/33] Some Go packages Edouard Klein
` (17 preceding siblings ...)
2023-09-14 7:09 ` [bug#65949] [PATCH 18/33] gnu: Add go-github-com-fanliao-go-promise Edouard Klein
@ 2023-09-14 7:09 ` Edouard Klein
[not found] ` <handler.65970.B.169467599226734.ack@debbugs.gnu.org>
2023-09-14 7:09 ` [bug#65959] [PATCH 20/33] gnu: go-golang-org-x-sys: Update to 0.12.0 Edouard Klein
` (14 subsequent siblings)
33 siblings, 1 reply; 103+ messages in thread
From: Edouard Klein @ 2023-09-14 7:09 UTC (permalink / raw)
To: 65970; +Cc: Edouard Klein, Katherine Cox-Buday
* gnu/packages/golang.scm (go-github-com-hugelgupf-socketpair): New variable.
---
gnu/packages/golang.scm | 22 ++++++++++++++++++++++
1 file changed, 22 insertions(+)
diff --git a/gnu/packages/golang.scm b/gnu/packages/golang.scm
index 7f19cfa608..1c1472e8c4 100644
--- a/gnu/packages/golang.scm
+++ b/gnu/packages/golang.scm
@@ -13583,6 +13583,28 @@ (define-public go-github-com-fanliao-go-promise
start sample:")
(license license:expat)))
+(define-public go-github-com-hugelgupf-socketpair
+ (package
+ (name "go-github-com-hugelgupf-socketpair")
+ (version "0.0.0-20230822150718-707395b1939a")
+ (source (origin
+ (method git-fetch)
+ (uri (git-reference
+ (url "https://github.com/hugelgupf/socketpair")
+ (commit (go-version->git-ref version))))
+ (file-name (git-file-name name version))
+ (sha256
+ (base32
+ "1hbv29bfyi2s5z71403mzgv4yc7fjg63kyh2y9m9pl8zq3amjsvv"))))
+ (build-system go-build-system)
+ (arguments
+ '(#:import-path "github.com/hugelgupf/socketpair"))
+ (home-page "https://github.com/hugelgupf/socketpair")
+ (synopsis "socketpair")
+ (description
+ "Package socketpair provides bidirectionally connected net.Conns.")
+ (license license:bsd-3)))
+
(define-public go-github-com-vishvananda-netlink
(package
(name "go-github-com-vishvananda-netlink")
--
2.40.1
^ permalink raw reply related [flat|nested] 103+ messages in thread
* [bug#65959] [PATCH 20/33] gnu: go-golang-org-x-sys: Update to 0.12.0.
2023-09-14 7:09 [bug#65943] [PATCH 00/33] Some Go packages Edouard Klein
` (18 preceding siblings ...)
2023-09-14 7:09 ` [bug#65970] [PATCH 19/33] gnu: Add go-github-com-hugelgupf-socketpair Edouard Klein
@ 2023-09-14 7:09 ` Edouard Klein
[not found] ` <handler.65959.B.169467598826655.ack@debbugs.gnu.org>
2023-09-14 7:09 ` [bug#65969] [PATCH 21/33] gnu: go-github-com-frankban-quicktest: Update to 1.14.6 Edouard Klein
` (13 subsequent siblings)
33 siblings, 1 reply; 103+ messages in thread
From: Edouard Klein @ 2023-09-14 7:09 UTC (permalink / raw)
To: 65959; +Cc: Edouard Klein, Katherine Cox-Buday
* gnu/packages/golang.scm (go-golang-org-x-sys): Update to 0.12.0.
---
gnu/packages/golang.scm | 8 ++++----
1 file changed, 4 insertions(+), 4 deletions(-)
diff --git a/gnu/packages/golang.scm b/gnu/packages/golang.scm
index 1c1472e8c4..229cb97b01 100644
--- a/gnu/packages/golang.scm
+++ b/gnu/packages/golang.scm
@@ -4222,11 +4222,11 @@ (define-public go-golang-org-x-sync
(license license:bsd-3))))
(define-public go-golang-org-x-sys
- (let ((commit "b60007cc4e6f966b1c542e343d026d06723e5653")
- (revision "0"))
+ (let ((commit "38ebf4150f9b8b3b3345ee2a1f7cfb0d774567f8")
+ (revision "1"))
(package
(name "go-golang-org-x-sys")
- (version (git-version "0.4.0" revision commit))
+ (version (git-version "0.12.0" revision commit))
(source (origin
(method git-fetch)
(uri (git-reference
@@ -4235,7 +4235,7 @@ (define-public go-golang-org-x-sys
(file-name (git-file-name name version))
(sha256
(base32
- "0fr2d6fnpbqx6n89sg9lsinqkdaw49y068kqj2g0cxlhbh69hzii"))))
+ "160ppzd31arrq33lrvclz3qgp73acx3j2r4xccd67yvyqsihwfzr"))))
(build-system go-build-system)
(arguments
(list
--
2.40.1
^ permalink raw reply related [flat|nested] 103+ messages in thread
* [bug#65969] [PATCH 21/33] gnu: go-github-com-frankban-quicktest: Update to 1.14.6.
2023-09-14 7:09 [bug#65943] [PATCH 00/33] Some Go packages Edouard Klein
` (19 preceding siblings ...)
2023-09-14 7:09 ` [bug#65959] [PATCH 20/33] gnu: go-golang-org-x-sys: Update to 0.12.0 Edouard Klein
@ 2023-09-14 7:09 ` Edouard Klein
[not found] ` <handler.65969.B.169467599226726.ack@debbugs.gnu.org>
2023-09-14 7:09 ` [bug#65961] [PATCH 22/33] gnu: Add go-github-com-cilium-ebpf Edouard Klein
` (12 subsequent siblings)
33 siblings, 1 reply; 103+ messages in thread
From: Edouard Klein @ 2023-09-14 7:09 UTC (permalink / raw)
To: 65969; +Cc: Edouard Klein, Katherine Cox-Buday
* gnu/packages/golang.scm (go-github-com-frankban-quicktest): Update to 1.14.6.
---
gnu/packages/golang.scm | 4 ++--
1 file changed, 2 insertions(+), 2 deletions(-)
diff --git a/gnu/packages/golang.scm b/gnu/packages/golang.scm
index 229cb97b01..c55fcde5fc 100644
--- a/gnu/packages/golang.scm
+++ b/gnu/packages/golang.scm
@@ -11042,7 +11042,7 @@ (define-public go-github-com-gologme-log
(define-public go-github-com-frankban-quicktest
(package
(name "go-github-com-frankban-quicktest")
- (version "1.11.1")
+ (version "1.14.6")
(source
(origin
(method git-fetch)
@@ -11052,7 +11052,7 @@ (define-public go-github-com-frankban-quicktest
(file-name (git-file-name name version))
(sha256
(base32
- "0b1b44b2hli2p969gqz30z8v9z6ahlklpqzi17nwk1lsjz9yv938"))))
+ "0gnh9v4cg39pw8y356299zhh5jmq2p4cf9945lfiqsjsk7h6ld70"))))
(build-system go-build-system)
(arguments
'(#:import-path "github.com/frankban/quicktest"))
--
2.40.1
^ permalink raw reply related [flat|nested] 103+ messages in thread
* [bug#65961] [PATCH 22/33] gnu: Add go-github-com-cilium-ebpf.
2023-09-14 7:09 [bug#65943] [PATCH 00/33] Some Go packages Edouard Klein
` (20 preceding siblings ...)
2023-09-14 7:09 ` [bug#65969] [PATCH 21/33] gnu: go-github-com-frankban-quicktest: Update to 1.14.6 Edouard Klein
@ 2023-09-14 7:09 ` Edouard Klein
[not found] ` <handler.65961.B.169467598926669.ack@debbugs.gnu.org>
2023-09-14 7:09 ` [bug#65957] [PATCH 23/33] gnu: Add go-github-com-mdlayher-netlink Edouard Klein
` (11 subsequent siblings)
33 siblings, 1 reply; 103+ messages in thread
From: Edouard Klein @ 2023-09-14 7:09 UTC (permalink / raw)
To: 65961; +Cc: Edouard Klein, Katherine Cox-Buday
* gnu/packages/golang.scm (go-github-com-cilium-ebpf): New variable.
---
gnu/packages/golang.scm | 32 ++++++++++++++++++++++++++++++++
1 file changed, 32 insertions(+)
diff --git a/gnu/packages/golang.scm b/gnu/packages/golang.scm
index c55fcde5fc..041c14a9cc 100644
--- a/gnu/packages/golang.scm
+++ b/gnu/packages/golang.scm
@@ -13605,6 +13605,38 @@ (define-public go-github-com-hugelgupf-socketpair
"Package socketpair provides bidirectionally connected net.Conns.")
(license license:bsd-3)))
+(define-public go-github-com-cilium-ebpf
+ (package
+ (name "go-github-com-cilium-ebpf")
+ (version "0.11.0")
+ (source (origin
+ (method git-fetch)
+ (uri (git-reference
+ (url "https://github.com/cilium/ebpf")
+ (commit (string-append "v" version))))
+ (file-name (git-file-name name version))
+ (sha256
+ (base32
+ "01qwvlbr4fi5j88dfivvivi9avjka3jvw311c2ab75vmg8z9vdps"))))
+ (build-system go-build-system)
+ (arguments
+ `(#:import-path "github.com/cilium/ebpf"
+ #:tests? #f ;; Bunch of "operation not permitted", would be a pain to
+ ;; debug. I'm letting it go
+ #:go ,go-1.20))
+ (propagated-inputs `(("go-github-com-rogpeppe-go-internal" ,go-github-com-rogpeppe-go-internal)
+ ("go-github-com-kr-text" ,go-github-com-kr-text)
+ ("go-github-com-kr-pretty" ,go-github-com-kr-pretty)
+ ("go-golang-org-x-sys" ,go-golang-org-x-sys)
+ ("go-golang-org-x-exp" ,go-golang-org-x-exp)
+ ("go-github-com-google-go-cmp-cmp" ,go-github-com-google-go-cmp-cmp)
+ ("go-github-com-frankban-quicktest" ,go-github-com-frankban-quicktest)))
+ (home-page "https://github.com/cilium/ebpf")
+ (synopsis "eBPF")
+ (description
+ "Package ebpf is a toolkit for working with @code{eBPF} programs.")
+ (license license:expat)))
+
(define-public go-github-com-vishvananda-netlink
(package
(name "go-github-com-vishvananda-netlink")
--
2.40.1
^ permalink raw reply related [flat|nested] 103+ messages in thread
* [bug#65957] [PATCH 23/33] gnu: Add go-github-com-mdlayher-netlink.
2023-09-14 7:09 [bug#65943] [PATCH 00/33] Some Go packages Edouard Klein
` (21 preceding siblings ...)
2023-09-14 7:09 ` [bug#65961] [PATCH 22/33] gnu: Add go-github-com-cilium-ebpf Edouard Klein
@ 2023-09-14 7:09 ` Edouard Klein
[not found] ` <handler.65957.B.169467598726639.ack@debbugs.gnu.org>
2023-09-14 7:09 ` [bug#65966] [PATCH 24/33] gnu: Add go-github-com-jsimonetti-rtnetlink Edouard Klein
` (10 subsequent siblings)
33 siblings, 1 reply; 103+ messages in thread
From: Edouard Klein @ 2023-09-14 7:09 UTC (permalink / raw)
To: 65957; +Cc: Edouard Klein, Katherine Cox-Buday
* gnu/packages/golang.scm (go-github-com-mdlayher-netlink): New variable.
---
gnu/packages/golang.scm | 31 +++++++++++++++++++++++++++++++
1 file changed, 31 insertions(+)
diff --git a/gnu/packages/golang.scm b/gnu/packages/golang.scm
index 041c14a9cc..3bf113fd70 100644
--- a/gnu/packages/golang.scm
+++ b/gnu/packages/golang.scm
@@ -80,6 +80,7 @@ (define-module (gnu packages golang)
#:use-module (gnu packages gcc)
#:use-module (gnu packages glib)
#:use-module (gnu packages gnupg)
+ #:use-module (gnu packages linux)
#:use-module (gnu packages lua)
#:use-module (gnu packages mail)
#:use-module (gnu packages mp3)
@@ -13637,6 +13638,36 @@ (define-public go-github-com-cilium-ebpf
"Package ebpf is a toolkit for working with @code{eBPF} programs.")
(license license:expat)))
+(define-public go-github-com-mdlayher-netlink
+ (package
+ (name "go-github-com-mdlayher-netlink")
+ (version "1.7.2")
+ (source (origin
+ (method git-fetch)
+ (uri (git-reference
+ (url "https://github.com/mdlayher/netlink")
+ (commit (string-append "v" version))))
+ (file-name (git-file-name name version))
+ (sha256
+ (base32
+ "1pxd0qn73jr9n64gkp2kd8q8x7xgssm3v8a68vkh88al55g8jkma"))))
+ (build-system go-build-system)
+ (arguments
+ `(#:import-path "github.com/mdlayher/netlink"
+ #:go ,go-1.20))
+ (propagated-inputs `(("go-golang-org-x-sync" ,go-golang-org-x-sync)
+ ("go-golang-org-x-sys" ,go-golang-org-x-sys)
+ ("go-golang-org-x-net" ,go-golang-org-x-net)
+ ("go-github-com-mdlayher-socket" ,go-github-com-mdlayher-socket)
+ ("go-github-com-josharian-native" ,go-github-com-josharian-native)
+ ("go-github-com-google-go-cmp-cmp" ,go-github-com-google-go-cmp-cmp)
+ ("iproute2" ,iproute)))
+ (home-page "https://github.com/mdlayher/netlink")
+ (synopsis "netlink")
+ (description
+ "Package netlink provides low-level access to Linux netlink sockets (AF_NETLINK).")
+ (license license:expat)))
+
(define-public go-github-com-vishvananda-netlink
(package
(name "go-github-com-vishvananda-netlink")
--
2.40.1
^ permalink raw reply related [flat|nested] 103+ messages in thread
* [bug#65966] [PATCH 24/33] gnu: Add go-github-com-jsimonetti-rtnetlink.
2023-09-14 7:09 [bug#65943] [PATCH 00/33] Some Go packages Edouard Klein
` (22 preceding siblings ...)
2023-09-14 7:09 ` [bug#65957] [PATCH 23/33] gnu: Add go-github-com-mdlayher-netlink Edouard Klein
@ 2023-09-14 7:09 ` Edouard Klein
[not found] ` <handler.65966.B.169467599126704.ack@debbugs.gnu.org>
2023-09-14 7:09 ` [bug#65960] [PATCH 25/33] gnu: Add go-github-com-neelance-astrewrite Edouard Klein
` (9 subsequent siblings)
33 siblings, 1 reply; 103+ messages in thread
From: Edouard Klein @ 2023-09-14 7:09 UTC (permalink / raw)
To: 65966; +Cc: Edouard Klein, Katherine Cox-Buday
* gnu/packages/golang.scm (go-github-com-jsimonetti-rtnetlink): New variable.
---
gnu/packages/golang.scm | 35 +++++++++++++++++++++++++++++++++++
1 file changed, 35 insertions(+)
diff --git a/gnu/packages/golang.scm b/gnu/packages/golang.scm
index 3bf113fd70..bb19e9605f 100644
--- a/gnu/packages/golang.scm
+++ b/gnu/packages/golang.scm
@@ -13668,6 +13668,41 @@ (define-public go-github-com-mdlayher-netlink
"Package netlink provides low-level access to Linux netlink sockets (AF_NETLINK).")
(license license:expat)))
+(define-public go-github-com-jsimonetti-rtnetlink
+ (package
+ (name "go-github-com-jsimonetti-rtnetlink")
+ (version "1.3.5")
+ (source (origin
+ (method git-fetch)
+ (uri (git-reference
+ (url "https://github.com/jsimonetti/rtnetlink")
+ (commit (string-append "v" version))))
+ (file-name (git-file-name name version))
+ (sha256
+ (base32
+ "19kifm0c4lpq1y25g2acnfm5cfrizbygqa50a3sdp9368s1gaay5"))))
+ (build-system go-build-system)
+ (arguments
+ `(#:import-path "github.com/jsimonetti/rtnetlink"
+ #:go ,go-1.20))
+ (propagated-inputs `(("go-golang-org-x-sync" ,go-golang-org-x-sync)
+ ("go-golang-org-x-net" ,go-golang-org-x-net)
+ ("go-golang-org-x-exp" ,go-golang-org-x-exp)
+ ("go-github-com-mdlayher-socket" ,go-github-com-mdlayher-socket)
+ ("go-github-com-josharian-native" ,go-github-com-josharian-native)
+ ("go-golang-org-x-sys" ,go-golang-org-x-sys)
+ ("go-github-com-mdlayher-netlink" ,go-github-com-mdlayher-netlink)
+ ("go-github-com-google-go-cmp-cmp" ,go-github-com-google-go-cmp-cmp)
+ ("go-github-com-cilium-ebpf" ,go-github-com-cilium-ebpf)))
+ (home-page "https://github.com/jsimonetti/rtnetlink")
+ (synopsis "rtnetlink")
+ (description
+ "Package rtnetlink allows the kernel's routing tables to be read and altered.
+Network routes, IP addresses, Link parameters, Neighbor setups, Queueing
+disciplines, Traffic classes and Packet classifiers may all be controlled. It
+is based on netlink messages.")
+ (license license:expat)))
+
(define-public go-github-com-vishvananda-netlink
(package
(name "go-github-com-vishvananda-netlink")
--
2.40.1
^ permalink raw reply related [flat|nested] 103+ messages in thread
* [bug#65960] [PATCH 25/33] gnu: Add go-github-com-neelance-astrewrite.
2023-09-14 7:09 [bug#65943] [PATCH 00/33] Some Go packages Edouard Klein
` (23 preceding siblings ...)
2023-09-14 7:09 ` [bug#65966] [PATCH 24/33] gnu: Add go-github-com-jsimonetti-rtnetlink Edouard Klein
@ 2023-09-14 7:09 ` Edouard Klein
[not found] ` <handler.65960.B.169467598826662.ack@debbugs.gnu.org>
2023-09-14 7:09 ` [bug#65964] [PATCH 26/33] gnu: Add go-github-com-neelance-sourcemap Edouard Klein
` (8 subsequent siblings)
33 siblings, 1 reply; 103+ messages in thread
From: Edouard Klein @ 2023-09-14 7:09 UTC (permalink / raw)
To: 65960; +Cc: Edouard Klein, Katherine Cox-Buday
* gnu/packages/golang.scm (go-github-com-neelance-astrewrite): New variable.
---
gnu/packages/golang.scm | 21 +++++++++++++++++++++
1 file changed, 21 insertions(+)
diff --git a/gnu/packages/golang.scm b/gnu/packages/golang.scm
index bb19e9605f..7299b1b17a 100644
--- a/gnu/packages/golang.scm
+++ b/gnu/packages/golang.scm
@@ -13703,6 +13703,27 @@ (define-public go-github-com-jsimonetti-rtnetlink
is based on netlink messages.")
(license license:expat)))
+(define-public go-github-com-neelance-astrewrite
+ (package
+ (name "go-github-com-neelance-astrewrite")
+ (version "0.0.0-20160511093645-99348263ae86")
+ (source (origin
+ (method git-fetch)
+ (uri (git-reference
+ (url "https://github.com/neelance/astrewrite")
+ (commit (go-version->git-ref version))))
+ (file-name (git-file-name name version))
+ (sha256
+ (base32
+ "07527807p8q6h05iq4qy0xrlcmwyzj76gpk0yqf71yaj447mz24v"))))
+ (build-system go-build-system)
+ (arguments
+ '(#:import-path "github.com/neelance/astrewrite"))
+ (home-page "https://github.com/neelance/astrewrite")
+ (synopsis #f)
+ (description #f)
+ (license license:bsd-2)))
+
(define-public go-github-com-vishvananda-netlink
(package
(name "go-github-com-vishvananda-netlink")
--
2.40.1
^ permalink raw reply related [flat|nested] 103+ messages in thread
* [bug#65964] [PATCH 26/33] gnu: Add go-github-com-neelance-sourcemap.
2023-09-14 7:09 [bug#65943] [PATCH 00/33] Some Go packages Edouard Klein
` (24 preceding siblings ...)
2023-09-14 7:09 ` [bug#65960] [PATCH 25/33] gnu: Add go-github-com-neelance-astrewrite Edouard Klein
@ 2023-09-14 7:09 ` Edouard Klein
[not found] ` <handler.65964.B.169467599026690.ack@debbugs.gnu.org>
2023-09-14 7:09 ` [bug#65962] [PATCH 27/33] gnu: Add go-github-com-shurcool-go-importgraphutil Edouard Klein
` (7 subsequent siblings)
33 siblings, 1 reply; 103+ messages in thread
From: Edouard Klein @ 2023-09-14 7:09 UTC (permalink / raw)
To: 65964; +Cc: Edouard Klein, Katherine Cox-Buday
* gnu/packages/golang.scm (go-github-com-neelance-sourcemap): New variable.
---
gnu/packages/golang.scm | 21 +++++++++++++++++++++
1 file changed, 21 insertions(+)
diff --git a/gnu/packages/golang.scm b/gnu/packages/golang.scm
index 7299b1b17a..982c64b660 100644
--- a/gnu/packages/golang.scm
+++ b/gnu/packages/golang.scm
@@ -13724,6 +13724,27 @@ (define-public go-github-com-neelance-astrewrite
(description #f)
(license license:bsd-2)))
+(define-public go-github-com-neelance-sourcemap
+ (package
+ (name "go-github-com-neelance-sourcemap")
+ (version "0.0.0-20200213170602-2833bce08e4c")
+ (source (origin
+ (method git-fetch)
+ (uri (git-reference
+ (url "https://github.com/neelance/sourcemap")
+ (commit (go-version->git-ref version))))
+ (file-name (git-file-name name version))
+ (sha256
+ (base32
+ "05ymjg1z9phf0wp4w058kvf13bmn4skv67chb3r04z69in8y8jih"))))
+ (build-system go-build-system)
+ (arguments
+ '(#:import-path "github.com/neelance/sourcemap"))
+ (home-page "https://github.com/neelance/sourcemap")
+ (synopsis #f)
+ (description #f)
+ (license license:bsd-2)))
+
(define-public go-github-com-vishvananda-netlink
(package
(name "go-github-com-vishvananda-netlink")
--
2.40.1
^ permalink raw reply related [flat|nested] 103+ messages in thread
* [bug#65962] [PATCH 27/33] gnu: Add go-github-com-shurcool-go-importgraphutil.
2023-09-14 7:09 [bug#65943] [PATCH 00/33] Some Go packages Edouard Klein
` (25 preceding siblings ...)
2023-09-14 7:09 ` [bug#65964] [PATCH 26/33] gnu: Add go-github-com-neelance-sourcemap Edouard Klein
@ 2023-09-14 7:09 ` Edouard Klein
[not found] ` <handler.65962.B.169467598926676.ack@debbugs.gnu.org>
2023-09-14 7:09 ` [bug#65965] [PATCH 28/33] gnu: Add go-github-com-inconshreveable-mousetrap Edouard Klein
` (6 subsequent siblings)
33 siblings, 1 reply; 103+ messages in thread
From: Edouard Klein @ 2023-09-14 7:09 UTC (permalink / raw)
To: 65962; +Cc: Edouard Klein, Katherine Cox-Buday
* gnu/packages/golang.scm (go-github-com-shurcool-go-importgraphutil): New variable.
---
gnu/packages/golang.scm | 23 +++++++++++++++++++++++
1 file changed, 23 insertions(+)
diff --git a/gnu/packages/golang.scm b/gnu/packages/golang.scm
index 982c64b660..1c5a72a0ac 100644
--- a/gnu/packages/golang.scm
+++ b/gnu/packages/golang.scm
@@ -13745,6 +13745,29 @@ (define-public go-github-com-neelance-sourcemap
(description #f)
(license license:bsd-2)))
+(define-public go-github-com-shurcool-go-importgraphutil
+ (package
+ (name "go-github-com-shurcool-go-importgraphutil")
+ (version "0.0.0-20230706063926-5fe729b41b3a")
+ (source (origin
+ (method git-fetch)
+ (uri (git-reference
+ (url "https://github.com/shurcooL/go")
+ (commit (go-version->git-ref version))))
+ (file-name (git-file-name name version))
+ (sha256
+ (base32
+ "0dym1msgjgywjhsl01frrqx4x4s96pcp1laavs9swz53z5ww95qq"))))
+ (build-system go-build-system)
+ (arguments
+ '(#:import-path "github.com/shurcooL/go/importgraphutil"
+ #:unpack-path "github.com/shurcooL/go"))
+ (propagated-inputs (list go-golang-org-x-tools))
+ (home-page "https://github.com/shurcooL/go")
+ (synopsis "go")
+ (description "Common Go code.")
+ (license license:expat)))
+
(define-public go-github-com-vishvananda-netlink
(package
(name "go-github-com-vishvananda-netlink")
--
2.40.1
^ permalink raw reply related [flat|nested] 103+ messages in thread
* [bug#65965] [PATCH 28/33] gnu: Add go-github-com-inconshreveable-mousetrap.
2023-09-14 7:09 [bug#65943] [PATCH 00/33] Some Go packages Edouard Klein
` (26 preceding siblings ...)
2023-09-14 7:09 ` [bug#65962] [PATCH 27/33] gnu: Add go-github-com-shurcool-go-importgraphutil Edouard Klein
@ 2023-09-14 7:09 ` Edouard Klein
[not found] ` <handler.65965.B.169467599026697.ack@debbugs.gnu.org>
2023-09-14 7:09 ` [bug#65972] [PATCH 29/33] gnu: Add go-github-com-u-root-uio-rand Edouard Klein
` (5 subsequent siblings)
33 siblings, 1 reply; 103+ messages in thread
From: Edouard Klein @ 2023-09-14 7:09 UTC (permalink / raw)
To: 65965; +Cc: Edouard Klein, Katherine Cox-Buday
* gnu/packages/golang.scm (go-github-com-inconshreveable-mousetrap): New variable.
---
gnu/packages/golang.scm | 21 +++++++++++++++++++++
1 file changed, 21 insertions(+)
diff --git a/gnu/packages/golang.scm b/gnu/packages/golang.scm
index 1c5a72a0ac..873afbf7dd 100644
--- a/gnu/packages/golang.scm
+++ b/gnu/packages/golang.scm
@@ -13768,6 +13768,27 @@ (define-public go-github-com-shurcool-go-importgraphutil
(description "Common Go code.")
(license license:expat)))
+(define-public go-github-com-inconshreveable-mousetrap
+ (package
+ (name "go-github-com-inconshreveable-mousetrap")
+ (version "1.1.0")
+ (source (origin
+ (method git-fetch)
+ (uri (git-reference
+ (url "https://github.com/inconshreveable/mousetrap")
+ (commit (string-append "v" version))))
+ (file-name (git-file-name name version))
+ (sha256
+ (base32
+ "14gjpvwgx3hmbd92jlwafgibiak2jqp25rq4q50cq89w8wgmhsax"))))
+ (build-system go-build-system)
+ (arguments
+ '(#:import-path "github.com/inconshreveable/mousetrap"))
+ (home-page "https://github.com/inconshreveable/mousetrap")
+ (synopsis "mousetrap")
+ (description "mousetrap is a tiny library that answers a single question.")
+ (license license:asl2.0)))
+
(define-public go-github-com-vishvananda-netlink
(package
(name "go-github-com-vishvananda-netlink")
--
2.40.1
^ permalink raw reply related [flat|nested] 103+ messages in thread
* [bug#65972] [PATCH 29/33] gnu: Add go-github-com-u-root-uio-rand.
2023-09-14 7:09 [bug#65943] [PATCH 00/33] Some Go packages Edouard Klein
` (27 preceding siblings ...)
2023-09-14 7:09 ` [bug#65965] [PATCH 28/33] gnu: Add go-github-com-inconshreveable-mousetrap Edouard Klein
@ 2023-09-14 7:09 ` Edouard Klein
[not found] ` <handler.65972.B.169467599326747.ack@debbugs.gnu.org>
2023-09-14 7:09 ` [bug#65968] [PATCH 30/33] gnu: Add go-github-com-insomniacslk-dhcp-dhcpv4 Edouard Klein
` (4 subsequent siblings)
33 siblings, 1 reply; 103+ messages in thread
From: Edouard Klein @ 2023-09-14 7:09 UTC (permalink / raw)
To: 65972; +Cc: Edouard Klein, Katherine Cox-Buday
* gnu/packages/golang.scm (go-github-com-u-root-uio-rand): New variable.
---
gnu/packages/golang.scm | 29 +++++++++++++++++++++++++++++
1 file changed, 29 insertions(+)
diff --git a/gnu/packages/golang.scm b/gnu/packages/golang.scm
index 873afbf7dd..198c07910e 100644
--- a/gnu/packages/golang.scm
+++ b/gnu/packages/golang.scm
@@ -13467,6 +13467,35 @@ (define-public go-github-com-u-root-uio-cp
(description #f)
(license license:bsd-3)))
+(define-public go-github-com-u-root-uio-rand
+ (package
+ (name "go-github-com-u-root-uio-rand")
+ (version "0.0.0-20230305220412-3e8cd9d6bf63")
+ (source (origin
+ (method git-fetch)
+ (uri (git-reference
+ (url "https://github.com/u-root/uio")
+ (commit (go-version->git-ref version))))
+ (file-name (git-file-name name version))
+ (sha256
+ (base32
+ "1gvv66ixkgwikjx8sjdknvrmd08wv2ia02q8n8y3mnkhrgyyx1yf"))))
+ (build-system go-build-system)
+ (arguments
+ (list
+ #:import-path "github.com/u-root/uio/rand"
+ #:unpack-path "github.com/u-root/uio"
+ #:install-source? #t
+ ;; Source-only package
+ #:tests? #f
+ #:phases
+ #~(modify-phases %standard-phases
+ ;; Source-only package
+ (delete 'build))))
+ (home-page "https://github.com/u-root/uio")
+ (synopsis "uio")
+ (description #f)
+ (license license:bsd-3)))
(define-public go-github-com-u-root-gobusybox-src-pkg-bb
(package
--
2.40.1
^ permalink raw reply related [flat|nested] 103+ messages in thread
* [bug#65968] [PATCH 30/33] gnu: Add go-github-com-insomniacslk-dhcp-dhcpv4.
2023-09-14 7:09 [bug#65943] [PATCH 00/33] Some Go packages Edouard Klein
` (28 preceding siblings ...)
2023-09-14 7:09 ` [bug#65972] [PATCH 29/33] gnu: Add go-github-com-u-root-uio-rand Edouard Klein
@ 2023-09-14 7:09 ` Edouard Klein
[not found] ` <handler.65968.B.169467599126719.ack@debbugs.gnu.org>
2023-09-14 7:09 ` [bug#65971] [PATCH 31/33] gnu: Add go-github-com-netflix-go-expect Edouard Klein
` (3 subsequent siblings)
33 siblings, 1 reply; 103+ messages in thread
From: Edouard Klein @ 2023-09-14 7:09 UTC (permalink / raw)
To: 65968; +Cc: Edouard Klein, Katherine Cox-Buday
* gnu/packages/golang.scm (go-github-com-insomniacslk-dhcp-dhcpv4): New variable.
---
gnu/packages/golang.scm | 45 +++++++++++++++++++++++++++++++++++++++++
1 file changed, 45 insertions(+)
diff --git a/gnu/packages/golang.scm b/gnu/packages/golang.scm
index 198c07910e..64c2964aa7 100644
--- a/gnu/packages/golang.scm
+++ b/gnu/packages/golang.scm
@@ -13753,6 +13753,51 @@ (define-public go-github-com-neelance-astrewrite
(description #f)
(license license:bsd-2)))
+(define-public go-github-com-insomniacslk-dhcp-dhcpv4
+ (package
+ (name "go-github-com-insomniacslk-dhcp-dhcpv4")
+ (version "0.0.0-20230908212754-65c27093e38a")
+ (source (origin
+ (method git-fetch)
+ (uri (git-reference
+ (url "https://github.com/insomniacslk/dhcp")
+ (commit (go-version->git-ref version))))
+ (file-name (git-file-name name version))
+ (sha256
+ (base32
+ "0vinhq7d7880hqsxy6xrji6sf7wdc2926zb0m9m4rhcr9hczkm4b"))))
+ (build-system go-build-system)
+ (arguments
+ `(#:import-path "github.com/insomniacslk/dhcp/dhcpv4"
+ #:unpack-path "github.com/insomniacslk/dhcp"
+ #:go ,go-1.20))
+ (propagated-inputs `(("go-gopkg-in-yaml-v3" ,go-gopkg-in-yaml-v3)
+ ("go-golang-org-x-sync" ,go-golang-org-x-sync)
+ ("go-github-com-stretchr-objx" ,go-github-com-stretchr-objx)
+ ("go-github.com-smartystreets-goconvey" ,go-github.com-smartystreets-goconvey)
+ ("go-github-com-pmezard-go-difflib" ,go-github-com-pmezard-go-difflib)
+ ("go-github-com-pierrec-lz4-v4" ,go-github-com-pierrec-lz4-v4)
+ ("go-github-com-mdlayher-socket" ,go-github-com-mdlayher-socket)
+ ("go-github-com-josharian-native" ,go-github-com-josharian-native)
+ ("go-github-com-davecgh-go-spew" ,go-github-com-davecgh-go-spew)
+ ("go-golang-org-x-sys" ,go-golang-org-x-sys)
+ ("go-golang-org-x-net" ,go-golang-org-x-net)
+ ("go-github-com-u-root-uio-uio" ,go-github-com-u-root-uio-uio)
+ ("go-github-com-u-root-uio-rand" ,go-github-com-u-root-uio-rand)
+ ("go-github-com-stretchr-testify" ,go-github-com-stretchr-testify)
+ ("go-github-com-mdlayher-packet" ,go-github-com-mdlayher-packet)
+ ("go-github-com-mdlayher-netlink" ,go-github-com-mdlayher-netlink)
+ ("go-github-com-jsimonetti-rtnetlink" ,go-github-com-jsimonetti-rtnetlink)
+ ("go-github-com-hugelgupf-socketpair" ,go-github-com-hugelgupf-socketpair)
+ ("go-github-com-google-go-cmp-cmp" ,go-github-com-google-go-cmp-cmp)
+ ("go-github-com-fanliao-go-promise" ,go-github-com-fanliao-go-promise)))
+ (home-page "https://github.com/insomniacslk/dhcp")
+ (synopsis "dhcp")
+ (description
+ "DHCPv4 and DHCPv6 decoding/encoding library with client and server code, written
+in Go.")
+ (license license:bsd-3)))
+
(define-public go-github-com-neelance-sourcemap
(package
(name "go-github-com-neelance-sourcemap")
--
2.40.1
^ permalink raw reply related [flat|nested] 103+ messages in thread
* [bug#65971] [PATCH 31/33] gnu: Add go-github-com-netflix-go-expect.
2023-09-14 7:09 [bug#65943] [PATCH 00/33] Some Go packages Edouard Klein
` (29 preceding siblings ...)
2023-09-14 7:09 ` [bug#65968] [PATCH 30/33] gnu: Add go-github-com-insomniacslk-dhcp-dhcpv4 Edouard Klein
@ 2023-09-14 7:09 ` Edouard Klein
[not found] ` <handler.65971.B.169467599326741.ack@debbugs.gnu.org>
2023-09-14 7:09 ` [bug#65967] [PATCH 32/33] gnu: Add go-cloud-google-com-go-workflows Edouard Klein
` (2 subsequent siblings)
33 siblings, 1 reply; 103+ messages in thread
From: Edouard Klein @ 2023-09-14 7:09 UTC (permalink / raw)
To: 65971; +Cc: Edouard Klein, Katherine Cox-Buday
* gnu/packages/golang.scm (go-github-com-netflix-go-expect): New variable.
---
gnu/packages/golang.scm | 27 +++++++++++++++++++++++++++
1 file changed, 27 insertions(+)
diff --git a/gnu/packages/golang.scm b/gnu/packages/golang.scm
index 64c2964aa7..fefc127e9d 100644
--- a/gnu/packages/golang.scm
+++ b/gnu/packages/golang.scm
@@ -13842,6 +13842,33 @@ (define-public go-github-com-shurcool-go-importgraphutil
(description "Common Go code.")
(license license:expat)))
+(define-public go-github-com-netflix-go-expect
+ (package
+ (name "go-github-com-netflix-go-expect")
+ (version "0.0.0-20220104043353-73e0943537d2")
+ (source (origin
+ (method git-fetch)
+ (uri (git-reference
+ (url "https://github.com/Netflix/go-expect")
+ (commit (go-version->git-ref version))))
+ (file-name (git-file-name name version))
+ (sha256
+ (base32
+ "0zkvhnc4ii6ygvcsj54ng0kql26rnny7l3hy1w61g88mxjsww1b9"))))
+ (build-system go-build-system)
+ (arguments
+ '(#:import-path "github.com/Netflix/go-expect"))
+ (propagated-inputs `(("go-github-com-stretchr-testify" ,go-github-com-stretchr-testify)
+ ("go-github-com-creack-pty" ,go-github-com-creack-pty)))
+ (home-page "https://github.com/Netflix/go-expect")
+ (synopsis "go-expect")
+ (description
+ "Package expect provides an expect-like interface to automate control of
+applications. It is unlike expect in that it does not spawn or manage process
+lifecycle. This package only focuses on expecting output and sending input
+through it's psuedoterminal.")
+ (license license:asl2.0)))
+
(define-public go-github-com-inconshreveable-mousetrap
(package
(name "go-github-com-inconshreveable-mousetrap")
--
2.40.1
^ permalink raw reply related [flat|nested] 103+ messages in thread
* [bug#65967] [PATCH 32/33] gnu: Add go-cloud-google-com-go-workflows.
2023-09-14 7:09 [bug#65943] [PATCH 00/33] Some Go packages Edouard Klein
` (30 preceding siblings ...)
2023-09-14 7:09 ` [bug#65971] [PATCH 31/33] gnu: Add go-github-com-netflix-go-expect Edouard Klein
@ 2023-09-14 7:09 ` Edouard Klein
[not found] ` <handler.65967.B.169467599126712.ack@debbugs.gnu.org>
2023-09-14 7:09 ` [bug#65963] [PATCH 33/33] gnu: Add go-github-com-hugelgupf-p9-cmd-p9ufs Edouard Klein
[not found] ` <handler.65943.B.169467596226359.ack@debbugs.gnu.org>
33 siblings, 1 reply; 103+ messages in thread
From: Edouard Klein @ 2023-09-14 7:09 UTC (permalink / raw)
To: 65967; +Cc: Edouard Klein, Katherine Cox-Buday
* gnu/packages/golang.scm (go-cloud-google-com-go-workflows): New variable.
---
gnu/packages/golang.scm | 32 ++++++++++++++++++++++++++++++++
1 file changed, 32 insertions(+)
diff --git a/gnu/packages/golang.scm b/gnu/packages/golang.scm
index fefc127e9d..f6d924d571 100644
--- a/gnu/packages/golang.scm
+++ b/gnu/packages/golang.scm
@@ -4800,6 +4800,38 @@ (define-public go-github-com-emicklei-go-restful
with the HTTP protocol definition.")
(license license:expat)))
+(define-public go-cloud-google-com-go-workflows
+ (package
+ (name "go-cloud-google-com-go-workflows")
+ (version "1.12.0")
+ (source
+ (origin
+ (method git-fetch)
+ (uri (git-reference
+ (url "https://github.com/googleapis/google-cloud-go")
+ (commit (string-append "workflows/v" version))))
+ (file-name (git-file-name name version))
+ (sha256
+ (base32
+ "0nz7lrvfc503jgdiywy2h09b96ixcldv0lgxhxabpf3kkgd0qdvj"))))
+ (build-system go-build-system)
+ (arguments
+ (list
+ #:import-path "cloud.google.com/go/workflows"
+ #:unpack-path "cloud.google.com/go"
+ #:install-source? #t
+ ;; Source-only package
+ #:tests? #f
+ #:phases
+ #~(modify-phases %standard-phases
+ ;; Source-only package
+ (delete 'build))))
+ (home-page
+ "https://pkg.go.dev/cloud.google.com/go/workflows")
+ (synopsis #f)
+ (description #f)
+ (license license:asl2.0)))
+
(define-public go-cloud-google-com-go-compute-metadata
(package
(name "go-cloud-google-com-go-compute-metadata")
--
2.40.1
^ permalink raw reply related [flat|nested] 103+ messages in thread
* [bug#65963] [PATCH 33/33] gnu: Add go-github-com-hugelgupf-p9-cmd-p9ufs.
2023-09-14 7:09 [bug#65943] [PATCH 00/33] Some Go packages Edouard Klein
` (31 preceding siblings ...)
2023-09-14 7:09 ` [bug#65967] [PATCH 32/33] gnu: Add go-cloud-google-com-go-workflows Edouard Klein
@ 2023-09-14 7:09 ` Edouard Klein
[not found] ` <handler.65963.B.169467599026683.ack@debbugs.gnu.org>
[not found] ` <handler.65943.B.169467596226359.ack@debbugs.gnu.org>
33 siblings, 1 reply; 103+ messages in thread
From: Edouard Klein @ 2023-09-14 7:09 UTC (permalink / raw)
To: 65963; +Cc: Edouard Klein, Katherine Cox-Buday
* gnu/packages/golang.scm (go-github-com-hugelgupf-p9-cmd-p9ufs): New variable.
---
gnu/packages/golang.scm | 27 +++++++++++++++++++++++++++
1 file changed, 27 insertions(+)
diff --git a/gnu/packages/golang.scm b/gnu/packages/golang.scm
index f6d924d571..34ed97da26 100644
--- a/gnu/packages/golang.scm
+++ b/gnu/packages/golang.scm
@@ -13985,6 +13985,33 @@ (define-public go-github-com-vishvananda-netns
privileges, so in most cases this code needs to be run as root.")
(license license:asl2.0)))
+(define-public go-github-com-hugelgupf-p9-cmd-p9ufs
+ (package
+ (name "go-github-com-hugelgupf-p9-cmd-p9ufs")
+ (version "0.3.0")
+ (source (origin
+ (method git-fetch)
+ (uri (git-reference
+ (url "https://github.com/hugelgupf/p9")
+ (commit (string-append "v" version))))
+ (file-name (git-file-name name version))
+ (sha256
+ (base32
+ "1ylbqh4in95xbj1pmdnxk3rhz0956gqg1m8sbivl30lyr6cmzphb"))))
+ (build-system go-build-system)
+ (arguments
+ `(#:import-path "github.com/hugelgupf/p9/cmd/p9ufs"
+ #:unpack-path "github.com/hugelgupf/p9"
+ #:go ,go-1.20))
+ (propagated-inputs `(("go-golang-org-x-sys" ,go-golang-org-x-sys)
+ ("go-github-com-u-root-uio-ulog" ,go-github-com-u-root-uio-ulog)))
+ (home-page "https://github.com/hugelgupf/p9")
+ (synopsis "p9")
+ (description
+ "p9 is a Golang 9P2000.L client and server originally written for @code{gVisor}.
+p9 supports Windows, BSD, and Linux on most Go-available architectures.")
+ (license license:asl2.0)))
+
(define-public go-github-com-gorilla-websocket
(package
(name "go-github-com-gorilla-websocket")
--
2.40.1
^ permalink raw reply related [flat|nested] 103+ messages in thread
* [bug#65943] Acknowledgement ([PATCH 00/33] Some Go packages)
[not found] ` <handler.65943.B.169467596226359.ack@debbugs.gnu.org>
@ 2023-09-14 7:25 ` Edouard Klein
2023-09-14 7:48 ` bug#65943: " Edouard Klein
0 siblings, 1 reply; 103+ messages in thread
From: Edouard Klein @ 2023-09-14 7:25 UTC (permalink / raw)
To: 65943
I would like to apologize for messing up git send-email and opening 33
useless bugs instead of sending 33 patches on the same thread.
This is clearly a mistake on my end, but I feel this is a good time to
say that I find the git email workflow extremely clunky and confusing,
and that it is a huge hurdle for me. There have been time where I did
not submit patches to guix because I just couldn't be hassled to deal
with git send-email.
If I could just push a branch to a remote repo, I would do it in a
heatbeat. I'll launch a thread on guix-devel about that.
Again, this is my mistake here, sorry.
I'll resend the patches on this thread and close the others.
help-debbugs@gnu.org (GNU bug Tracking System) writes:
> Thank you for filing a new bug report with debbugs.gnu.org.
>
> This is an automatically generated reply to let you know your message
> has been received.
>
> Your message is being forwarded to the package maintainers and other
> interested parties for their attention; they will reply in due course.
>
> As you requested using X-Debbugs-CC, your message was also forwarded to
> Katherine Cox-Buday <cox.katherine.e+guix@gmail.com>
> (after having been given a bug report number, if it did not have one).
>
> Your message has been sent to the package maintainer(s):
> guix-patches@gnu.org
>
> If you wish to submit further information on this problem, please
> send it to 65943@debbugs.gnu.org.
>
> Please do not send mail to help-debbugs@gnu.org unless you wish
> to report a problem with the Bug-tracking system.
^ permalink raw reply [flat|nested] 103+ messages in thread
* [bug#65939] Acknowledgement ([PATCH 01/33] gnu: Add go-github-com-sourcegraph-go-lsp.)
[not found] ` <handler.65939.B.169467595726308.ack@debbugs.gnu.org>
@ 2023-09-14 7:28 ` Edouard Klein
2023-09-14 7:35 ` bug#65939: " Edouard Klein
0 siblings, 1 reply; 103+ messages in thread
From: Edouard Klein @ 2023-09-14 7:28 UTC (permalink / raw)
To: 65939
close
help-debbugs@gnu.org (GNU bug Tracking System) writes:
> Thank you for filing a new bug report with debbugs.gnu.org.
>
> This is an automatically generated reply to let you know your message
> has been received.
>
> Your message is being forwarded to the package maintainers and other
> interested parties for their attention; they will reply in due course.
>
> As you requested using X-Debbugs-CC, your message was also forwarded to
> Katherine Cox-Buday <cox.katherine.e+guix@gmail.com>
> (after having been given a bug report number, if it did not have one).
>
> Your message has been sent to the package maintainer(s):
> guix-patches@gnu.org
>
> If you wish to submit further information on this problem, please
> send it to 65939@debbugs.gnu.org.
>
> Please do not send mail to help-debbugs@gnu.org unless you wish
> to report a problem with the Bug-tracking system.
^ permalink raw reply [flat|nested] 103+ messages in thread
* [bug#65939] [PATCH 01/33] gnu: Add go-github-com-sourcegraph-go-lsp.
2023-09-14 7:09 ` [bug#65939] [PATCH 01/33] gnu: Add go-github-com-sourcegraph-go-lsp Edouard Klein
[not found] ` <handler.65939.B.169467595726308.ack@debbugs.gnu.org>
@ 2023-09-14 7:29 ` Edouard Klein
2023-09-14 7:29 ` [bug#65939] [PATCH 02/33] doc: golang: Minor grammar fix on comment Edouard Klein
` (31 more replies)
1 sibling, 32 replies; 103+ messages in thread
From: Edouard Klein @ 2023-09-14 7:29 UTC (permalink / raw)
To: 65939; +Cc: Edouard Klein, Katherine Cox-Buday
* gnu/packages/golang.scm (go-github-com-sourcegraph-go-lsp): New variable.
---
gnu/packages/golang.scm | 24 ++++++++++++++++++++++++
1 file changed, 24 insertions(+)
diff --git a/gnu/packages/golang.scm b/gnu/packages/golang.scm
index cbd4bafd20..d9914463ff 100644
--- a/gnu/packages/golang.scm
+++ b/gnu/packages/golang.scm
@@ -41,6 +41,7 @@
;;; Copyright © 2022 Christopher Howard <christopher@librehacker.com>
;;; Copyright © 2023 Hilton Chain <hako@ultrarare.space>
;;; Copyright © 2023 Timo Wilken <guix@twilken.net>
+;;; Copyright © 2023 Edouard Klein <edk@beaver-labs.com>
;;;
;;; This file is part of GNU Guix.
;;;
@@ -13200,6 +13201,29 @@ (define-public go-github-com-google-shlex
using shell-style rules for quoting and commenting.")
(license license:asl2.0)))
+(define-public go-github-com-sourcegraph-go-lsp
+ (package
+ (name "go-github-com-sourcegraph-go-lsp")
+ (version "0.0.0-20200429204803-219e11d77f5d")
+ (source (origin
+ (method git-fetch)
+ (uri (git-reference
+ (url "https://github.com/sourcegraph/go-lsp")
+ (commit (go-version->git-ref version))))
+ (file-name (git-file-name name version))
+ (sha256
+ (base32
+ "1192qrdlm698z7dsl5i88rk9p31dgx4xq7ljzhn17dl2mynbc2l2"))))
+ (build-system go-build-system)
+ (arguments
+ '(#:import-path "github.com/sourcegraph/go-lsp"))
+ (home-page "https://github.com/sourcegraph/go-lsp")
+ (synopsis "go-lsp")
+ (description
+ "Package lsp contains Go types for the messages used in the Language Server
+Protocol.")
+ (license license:expat)))
+
(define-public go-github-com-gorilla-websocket
(package
(name "go-github-com-gorilla-websocket")
base-commit: 2eb6df537c36da8bf8e81ff698421f6fb1bfd1ab
--
2.40.1
^ permalink raw reply related [flat|nested] 103+ messages in thread
* [bug#65939] [PATCH 02/33] doc: golang: Minor grammar fix on comment
2023-09-14 7:29 ` [bug#65939] [PATCH 01/33] gnu: Add go-github-com-sourcegraph-go-lsp Edouard Klein
@ 2023-09-14 7:29 ` Edouard Klein
2023-09-14 7:29 ` [bug#65939] [PATCH 03/33] gnu: Add go-src-elv-sh Edouard Klein
` (30 subsequent siblings)
31 siblings, 0 replies; 103+ messages in thread
From: Edouard Klein @ 2023-09-14 7:29 UTC (permalink / raw)
To: 65939; +Cc: Edouard Klein, Katherine Cox-Buday
---
gnu/packages/golang.scm | 4 ++--
1 file changed, 2 insertions(+), 2 deletions(-)
diff --git a/gnu/packages/golang.scm b/gnu/packages/golang.scm
index d9914463ff..f6b7eedab7 100644
--- a/gnu/packages/golang.scm
+++ b/gnu/packages/golang.scm
@@ -13961,7 +13961,7 @@ (define-public go-github-com-onsi-ginkgo
(license license:expat)))
;;;
-;;; Avoid adding new packages to the end of this file. To reduce the chances
-;;; of a merge conflict, place them above by existing packages with similar
+;;; Avoid adding new packages at the end of this file. To reduce the chances
+;;; of a merge conflict, place them above existing packages with similar
;;; functionality or similar names.
;;;
--
2.40.1
^ permalink raw reply related [flat|nested] 103+ messages in thread
* [bug#65939] [PATCH 03/33] gnu: Add go-src-elv-sh.
2023-09-14 7:29 ` [bug#65939] [PATCH 01/33] gnu: Add go-github-com-sourcegraph-go-lsp Edouard Klein
2023-09-14 7:29 ` [bug#65939] [PATCH 02/33] doc: golang: Minor grammar fix on comment Edouard Klein
@ 2023-09-14 7:29 ` Edouard Klein
2023-09-14 7:29 ` [bug#65939] [PATCH 04/33] gnu: Add go-github-com-vishvananda-netns Edouard Klein
` (29 subsequent siblings)
31 siblings, 0 replies; 103+ messages in thread
From: Edouard Klein @ 2023-09-14 7:29 UTC (permalink / raw)
To: 65939; +Cc: Edouard Klein, Katherine Cox-Buday
* gnu/packages/golang.scm (go-src-elv-sh): New variable.
---
gnu/packages/golang.scm | 35 +++++++++++++++++++++++++++++++++++
1 file changed, 35 insertions(+)
diff --git a/gnu/packages/golang.scm b/gnu/packages/golang.scm
index f6b7eedab7..57dee78330 100644
--- a/gnu/packages/golang.scm
+++ b/gnu/packages/golang.scm
@@ -75,6 +75,7 @@ (define-module (gnu packages golang)
#:use-module (gnu packages base)
#:use-module ((gnu packages bootstrap) #:select (glibc-dynamic-linker))
#:use-module (gnu packages check)
+ #:use-module (gnu packages databases)
#:use-module (gnu packages fonts)
#:use-module (gnu packages gcc)
#:use-module (gnu packages glib)
@@ -13224,6 +13225,40 @@ (define-public go-github-com-sourcegraph-go-lsp
Protocol.")
(license license:expat)))
+(define-public go-src-elv-sh
+ (package
+ (name "go-src-elv-sh")
+ (version "0.19.2")
+ (source (origin
+ (method git-fetch)
+ (uri (git-reference
+ (url "https://github.com/elves/elvish")
+ (commit (string-append "v" version))))
+ (file-name (git-file-name name version))
+ (sha256
+ (base32
+ "1285j66b7kajyxffpcil8zl9p5awqw2n4si5vg4zlci651fcj8vq"))))
+ (build-system go-build-system)
+ (arguments
+ `(#:import-path "src.elv.sh/cmd/elvish"
+ #:unpack-path "src.elv.sh"
+ #:go ,go-1.20))
+ (propagated-inputs `(("go-golang-org-x-sys" ,go-golang-org-x-sys)
+ ("go-go-etcd-io-bbolt" ,go-go-etcd-io-bbolt)
+ ("go-github-com-sourcegraph-jsonrpc2" ,go-github-com-sourcegraph-jsonrpc2)
+ ("go-github-com-sourcegraph-go-lsp" ,go-github-com-sourcegraph-go-lsp)
+ ("go-github-com-mattn-go-isatty" ,go-github-com-mattn-go-isatty)
+ ("go-github-com-google-go-cmp" ,go-github-com-google-go-cmp-cmp)
+ ("go-github-com-creack-pty" ,go-github-com-creack-pty)))
+ (home-page "https://src.elv.sh")
+ (synopsis
+ "Elvish: Expressive Programming Language + Versatile Interactive Shell")
+ (description
+ "Elvish is an expressive programming language and a versatile interactive shell,
+combined into one seamless package. It runs on Linux, BSDs, @code{macOS} and
+Windows.")
+ (license license:bsd-2)))
+
(define-public go-github-com-gorilla-websocket
(package
(name "go-github-com-gorilla-websocket")
--
2.40.1
^ permalink raw reply related [flat|nested] 103+ messages in thread
* [bug#65939] [PATCH 04/33] gnu: Add go-github-com-vishvananda-netns.
2023-09-14 7:29 ` [bug#65939] [PATCH 01/33] gnu: Add go-github-com-sourcegraph-go-lsp Edouard Klein
2023-09-14 7:29 ` [bug#65939] [PATCH 02/33] doc: golang: Minor grammar fix on comment Edouard Klein
2023-09-14 7:29 ` [bug#65939] [PATCH 03/33] gnu: Add go-src-elv-sh Edouard Klein
@ 2023-09-14 7:29 ` Edouard Klein
2023-09-14 7:29 ` [bug#65939] [PATCH 05/33] gnu: Add go-github-com-vishvananda-netlink Edouard Klein
` (28 subsequent siblings)
31 siblings, 0 replies; 103+ messages in thread
From: Edouard Klein @ 2023-09-14 7:29 UTC (permalink / raw)
To: 65939; +Cc: Edouard Klein, Katherine Cox-Buday
* gnu/packages/golang.scm (go-github-com-vishvananda-netns): New variable.
---
gnu/packages/golang.scm | 31 +++++++++++++++++++++++++++++++
1 file changed, 31 insertions(+)
diff --git a/gnu/packages/golang.scm b/gnu/packages/golang.scm
index 57dee78330..5a00fd0a2b 100644
--- a/gnu/packages/golang.scm
+++ b/gnu/packages/golang.scm
@@ -13259,6 +13259,37 @@ (define-public go-src-elv-sh
Windows.")
(license license:bsd-2)))
+(define-public go-github-com-vishvananda-netns
+ (package
+ (name "go-github-com-vishvananda-netns")
+ (version "0.0.4")
+ (source (origin
+ (method git-fetch)
+ (uri (git-reference
+ (url "https://github.com/vishvananda/netns")
+ (commit (string-append "v" version))))
+ (file-name (git-file-name name version))
+ (sha256
+ (base32
+ "0rci8c211m57nya9il81fz6459pia3dj5i4b16fp34vjrkcxliml"))))
+ (build-system go-build-system)
+ (arguments
+ '(#:tests? #f ;; From what I understand, and I may very well be wrong,
+ ;; the tests require root access. At least they fail with "operation not permitted".
+ #:import-path "github.com/vishvananda/netns"))
+ (propagated-inputs `(("go-golang-org-x-sys" ,go-golang-org-x-sys)))
+ (home-page "https://github.com/vishvananda/netns")
+ (synopsis "netns - network namespaces in go")
+ (description
+ "Package netns allows ultra-simple network namespace handling. @code{NsHandles}
+can be retrieved and set. Note that the current namespace is thread local so
+actions that set and reset namespaces should use @code{LockOSThread} to make
+sure the namespace doesn't change due to a goroutine switch. It is best to
+close @code{NsHandles} when you are done with them. This can be accomplished
+via a `defer ns.Close()` on the handle. Changing namespaces requires elevated
+privileges, so in most cases this code needs to be run as root.")
+ (license license:asl2.0)))
+
(define-public go-github-com-gorilla-websocket
(package
(name "go-github-com-gorilla-websocket")
--
2.40.1
^ permalink raw reply related [flat|nested] 103+ messages in thread
* [bug#65939] [PATCH 05/33] gnu: Add go-github-com-vishvananda-netlink.
2023-09-14 7:29 ` [bug#65939] [PATCH 01/33] gnu: Add go-github-com-sourcegraph-go-lsp Edouard Klein
` (2 preceding siblings ...)
2023-09-14 7:29 ` [bug#65939] [PATCH 04/33] gnu: Add go-github-com-vishvananda-netns Edouard Klein
@ 2023-09-14 7:29 ` Edouard Klein
2023-09-14 7:29 ` [bug#65939] [PATCH 06/33] gnu: Add go-github-com-hashicorp-errwrap Edouard Klein
` (27 subsequent siblings)
31 siblings, 0 replies; 103+ messages in thread
From: Edouard Klein @ 2023-09-14 7:29 UTC (permalink / raw)
To: 65939; +Cc: Edouard Klein, Katherine Cox-Buday
* gnu/packages/golang.scm (go-github-com-vishvananda-netlink): New variable.
---
gnu/packages/golang.scm | 32 ++++++++++++++++++++++++++++++++
1 file changed, 32 insertions(+)
diff --git a/gnu/packages/golang.scm b/gnu/packages/golang.scm
index 5a00fd0a2b..0f64892d56 100644
--- a/gnu/packages/golang.scm
+++ b/gnu/packages/golang.scm
@@ -13259,6 +13259,38 @@ (define-public go-src-elv-sh
Windows.")
(license license:bsd-2)))
+(define-public go-github-com-vishvananda-netlink
+ (package
+ (name "go-github-com-vishvananda-netlink")
+ (version "1.1.0")
+ (source (origin
+ (method git-fetch)
+ (uri (git-reference
+ (url "https://github.com/vishvananda/netlink")
+ (commit (string-append "v" version))))
+ (file-name (git-file-name name version))
+ (sha256
+ (base32
+ "1vhl30p1gx636a088ls4h6a0l8jjyfvz79fr5w0qzdrg4qg9h08h"))))
+ (build-system go-build-system)
+ (arguments
+ '(#:tests? #f ;; From what I understand, and I may very well be wrong,
+ ;; the tests require root access. At least they fail with "operation not permitted".
+ #:import-path "github.com/vishvananda/netlink"))
+ (propagated-inputs `(("go-golang-org-x-sys" ,go-golang-org-x-sys)
+ ("go-github-com-vishvananda-netns" ,go-github-com-vishvananda-netns)))
+ (home-page "https://github.com/vishvananda/netlink")
+ (synopsis "netlink - netlink library for go")
+ (description
+ "Package netlink provides a simple library for netlink. Netlink is the interface
+a user-space program in linux uses to communicate with the kernel. It can be
+used to add and remove interfaces, set up ip addresses and routes, and confiugre
+ipsec. Netlink communication requires elevated privileges, so in most cases
+this code needs to be run as root. The low level primitives for netlink are
+contained in the nl subpackage. This package attempts to provide a high-level
+interface that is loosly modeled on the iproute2 cli.")
+ (license license:asl2.0)))
+
(define-public go-github-com-vishvananda-netns
(package
(name "go-github-com-vishvananda-netns")
--
2.40.1
^ permalink raw reply related [flat|nested] 103+ messages in thread
* [bug#65939] [PATCH 06/33] gnu: Add go-github-com-hashicorp-errwrap.
2023-09-14 7:29 ` [bug#65939] [PATCH 01/33] gnu: Add go-github-com-sourcegraph-go-lsp Edouard Klein
` (3 preceding siblings ...)
2023-09-14 7:29 ` [bug#65939] [PATCH 05/33] gnu: Add go-github-com-vishvananda-netlink Edouard Klein
@ 2023-09-14 7:29 ` Edouard Klein
2023-09-14 7:29 ` [bug#65939] [PATCH 07/33] gnu: Add go-github-com-hashicorp-go-multierror Edouard Klein
` (26 subsequent siblings)
31 siblings, 0 replies; 103+ messages in thread
From: Edouard Klein @ 2023-09-14 7:29 UTC (permalink / raw)
To: 65939; +Cc: Edouard Klein, Katherine Cox-Buday
* gnu/packages/golang.scm (go-github-com-hashicorp-errwrap): New variable.
---
gnu/packages/golang.scm | 22 ++++++++++++++++++++++
1 file changed, 22 insertions(+)
diff --git a/gnu/packages/golang.scm b/gnu/packages/golang.scm
index 0f64892d56..435c553e05 100644
--- a/gnu/packages/golang.scm
+++ b/gnu/packages/golang.scm
@@ -13259,6 +13259,28 @@ (define-public go-src-elv-sh
Windows.")
(license license:bsd-2)))
+(define-public go-github-com-hashicorp-errwrap
+ (package
+ (name "go-github-com-hashicorp-errwrap")
+ (version "1.1.0")
+ (source (origin
+ (method git-fetch)
+ (uri (git-reference
+ (url "https://github.com/hashicorp/errwrap")
+ (commit (string-append "v" version))))
+ (file-name (git-file-name name version))
+ (sha256
+ (base32
+ "0p5wdz8p7dmwphmb33gwhy3iwci5k9wkfqmmfa6ay1lz0cqjwp7a"))))
+ (build-system go-build-system)
+ (arguments
+ '(#:import-path "github.com/hashicorp/errwrap"))
+ (home-page "https://github.com/hashicorp/errwrap")
+ (synopsis "errwrap")
+ (description
+ "Package errwrap implements methods to formalize error wrapping in Go.")
+ (license license:mpl2.0)))
+
(define-public go-github-com-vishvananda-netlink
(package
(name "go-github-com-vishvananda-netlink")
--
2.40.1
^ permalink raw reply related [flat|nested] 103+ messages in thread
* [bug#65939] [PATCH 07/33] gnu: Add go-github-com-hashicorp-go-multierror.
2023-09-14 7:29 ` [bug#65939] [PATCH 01/33] gnu: Add go-github-com-sourcegraph-go-lsp Edouard Klein
` (4 preceding siblings ...)
2023-09-14 7:29 ` [bug#65939] [PATCH 06/33] gnu: Add go-github-com-hashicorp-errwrap Edouard Klein
@ 2023-09-14 7:29 ` Edouard Klein
2023-09-14 7:29 ` [bug#65939] [PATCH 08/33] gnu: Add go-github-com-josharian-native Edouard Klein
` (25 subsequent siblings)
31 siblings, 0 replies; 103+ messages in thread
From: Edouard Klein @ 2023-09-14 7:29 UTC (permalink / raw)
To: 65939; +Cc: Edouard Klein, Katherine Cox-Buday
* gnu/packages/golang.scm (go-github-com-hashicorp-go-multierror): New variable.
---
gnu/packages/golang.scm | 24 ++++++++++++++++++++++++
1 file changed, 24 insertions(+)
diff --git a/gnu/packages/golang.scm b/gnu/packages/golang.scm
index 435c553e05..8215f29dd5 100644
--- a/gnu/packages/golang.scm
+++ b/gnu/packages/golang.scm
@@ -13281,6 +13281,30 @@ (define-public go-github-com-hashicorp-errwrap
"Package errwrap implements methods to formalize error wrapping in Go.")
(license license:mpl2.0)))
+(define-public go-github-com-hashicorp-go-multierror
+ (package
+ (name "go-github-com-hashicorp-go-multierror")
+ (version "1.1.1")
+ (source (origin
+ (method git-fetch)
+ (uri (git-reference
+ (url "https://github.com/hashicorp/go-multierror")
+ (commit (string-append "v" version))))
+ (file-name (git-file-name name version))
+ (sha256
+ (base32
+ "0l4s41skdpifndn9s8y6s9vzgghdzg4z8z0lld9qjr28888wzp00"))))
+ (build-system go-build-system)
+ (arguments
+ '(#:import-path "github.com/hashicorp/go-multierror"))
+ (propagated-inputs `(("go-github-com-hashicorp-errwrap" ,go-github-com-hashicorp-errwrap)))
+ (home-page "https://github.com/hashicorp/go-multierror")
+ (synopsis "go-multierror")
+ (description
+ "@@code{go-multierror} is a package for Go that provides a mechanism for
+representing a list of @@code{error} values as a single @@code{error}.")
+ (license license:mpl2.0)))
+
(define-public go-github-com-vishvananda-netlink
(package
(name "go-github-com-vishvananda-netlink")
--
2.40.1
^ permalink raw reply related [flat|nested] 103+ messages in thread
* [bug#65939] [PATCH 08/33] gnu: Add go-github-com-josharian-native.
2023-09-14 7:29 ` [bug#65939] [PATCH 01/33] gnu: Add go-github-com-sourcegraph-go-lsp Edouard Klein
` (5 preceding siblings ...)
2023-09-14 7:29 ` [bug#65939] [PATCH 07/33] gnu: Add go-github-com-hashicorp-go-multierror Edouard Klein
@ 2023-09-14 7:29 ` Edouard Klein
2023-09-14 7:29 ` [bug#65939] [PATCH 09/33] gnu: Add go-github-com-pierrec-lz4-v4 Edouard Klein
` (24 subsequent siblings)
31 siblings, 0 replies; 103+ messages in thread
From: Edouard Klein @ 2023-09-14 7:29 UTC (permalink / raw)
To: 65939; +Cc: Edouard Klein, Katherine Cox-Buday
* gnu/packages/golang.scm (go-github-com-josharian-native): New variable.
---
gnu/packages/golang.scm | 21 +++++++++++++++++++++
1 file changed, 21 insertions(+)
diff --git a/gnu/packages/golang.scm b/gnu/packages/golang.scm
index 8215f29dd5..261c859d27 100644
--- a/gnu/packages/golang.scm
+++ b/gnu/packages/golang.scm
@@ -13305,6 +13305,27 @@ (define-public go-github-com-hashicorp-go-multierror
representing a list of @@code{error} values as a single @@code{error}.")
(license license:mpl2.0)))
+(define-public go-github-com-josharian-native
+ (package
+ (name "go-github-com-josharian-native")
+ (version "1.1.0")
+ (source (origin
+ (method git-fetch)
+ (uri (git-reference
+ (url "https://github.com/josharian/native")
+ (commit (string-append "v" version))))
+ (file-name (git-file-name name version))
+ (sha256
+ (base32
+ "1wa4yzc3r06qjklqjf4n30zx9v660w8hmxkmybzwk03fmlv2rcyj"))))
+ (build-system go-build-system)
+ (arguments
+ '(#:import-path "github.com/josharian/native"))
+ (home-page "https://github.com/josharian/native")
+ (synopsis #f)
+ (description "Package native provides easy access to native byte order.")
+ (license license:expat)))
+
(define-public go-github-com-vishvananda-netlink
(package
(name "go-github-com-vishvananda-netlink")
--
2.40.1
^ permalink raw reply related [flat|nested] 103+ messages in thread
* [bug#65939] [PATCH 09/33] gnu: Add go-github-com-pierrec-lz4-v4.
2023-09-14 7:29 ` [bug#65939] [PATCH 01/33] gnu: Add go-github-com-sourcegraph-go-lsp Edouard Klein
` (6 preceding siblings ...)
2023-09-14 7:29 ` [bug#65939] [PATCH 08/33] gnu: Add go-github-com-josharian-native Edouard Klein
@ 2023-09-14 7:29 ` Edouard Klein
2023-09-14 7:29 ` [bug#65939] [PATCH 10/33] gnu: Add go-github-com-u-root-uio Edouard Klein
` (23 subsequent siblings)
31 siblings, 0 replies; 103+ messages in thread
From: Edouard Klein @ 2023-09-14 7:29 UTC (permalink / raw)
To: 65939; +Cc: Edouard Klein, Katherine Cox-Buday
* gnu/packages/golang.scm (go-github-com-pierrec-lz4-v4): New variable.
---
gnu/packages/golang.scm | 24 ++++++++++++++++++++++++
1 file changed, 24 insertions(+)
diff --git a/gnu/packages/golang.scm b/gnu/packages/golang.scm
index 261c859d27..05c81b56bb 100644
--- a/gnu/packages/golang.scm
+++ b/gnu/packages/golang.scm
@@ -13259,6 +13259,30 @@ (define-public go-src-elv-sh
Windows.")
(license license:bsd-2)))
+(define-public go-github-com-pierrec-lz4-v4
+ (package
+ (name "go-github-com-pierrec-lz4-v4")
+ (version "4.1.18")
+ (source (origin
+ (method git-fetch)
+ (uri (git-reference
+ (url "https://github.com/pierrec/lz4")
+ (commit (string-append "v" version))))
+ (file-name (git-file-name name version))
+ (sha256
+ (base32
+ "054b40963h3l13a7nxw3990b3a9033ypin7l79da6fiv2ynnsnb8"))))
+ (build-system go-build-system)
+ (arguments
+ '(#:tests? #f ;; The tests fail, but I have neither the time nor the skill
+ ;; to make them pass.
+ #:import-path "github.com/pierrec/lz4/v4"))
+ (home-page "https://github.com/pierrec/lz4")
+ (synopsis "lz4 : LZ4 compression in pure Go")
+ (description
+ "Package lz4 implements reading and writing lz4 compressed data.")
+ (license license:bsd-3)))
+
(define-public go-github-com-hashicorp-errwrap
(package
(name "go-github-com-hashicorp-errwrap")
--
2.40.1
^ permalink raw reply related [flat|nested] 103+ messages in thread
* [bug#65939] [PATCH 10/33] gnu: Add go-github-com-u-root-uio.
2023-09-14 7:29 ` [bug#65939] [PATCH 01/33] gnu: Add go-github-com-sourcegraph-go-lsp Edouard Klein
` (7 preceding siblings ...)
2023-09-14 7:29 ` [bug#65939] [PATCH 09/33] gnu: Add go-github-com-pierrec-lz4-v4 Edouard Klein
@ 2023-09-14 7:29 ` Edouard Klein
2023-09-14 7:29 ` [bug#65939] [PATCH 11/33] gnu: Fix go-github-com-u-root-uio Edouard Klein
` (22 subsequent siblings)
31 siblings, 0 replies; 103+ messages in thread
From: Edouard Klein @ 2023-09-14 7:29 UTC (permalink / raw)
To: 65939; +Cc: Edouard Klein, Katherine Cox-Buday
* gnu/packages/golang.scm (go-github-com-u-root-uio): New variable.
---
gnu/packages/golang.scm | 31 +++++++++++++++++++++++++++++++
1 file changed, 31 insertions(+)
diff --git a/gnu/packages/golang.scm b/gnu/packages/golang.scm
index 05c81b56bb..0e6d0d1adb 100644
--- a/gnu/packages/golang.scm
+++ b/gnu/packages/golang.scm
@@ -13350,6 +13350,37 @@ (define-public go-github-com-josharian-native
(description "Package native provides easy access to native byte order.")
(license license:expat)))
+(define-public go-github-com-u-root-uio
+ (package
+ (name "go-github-com-u-root-uio")
+ (version "0.0.0-20230305220412-3e8cd9d6bf63")
+ (source (origin
+ (method git-fetch)
+ (uri (git-reference
+ (url "https://github.com/u-root/uio")
+ (commit (go-version->git-ref version))))
+ (file-name (git-file-name name version))
+ (sha256
+ (base32
+ "1gvv66ixkgwikjx8sjdknvrmd08wv2ia02q8n8y3mnkhrgyyx1yf"))))
+ (build-system go-build-system)
+ (arguments
+ '(#:import-path "github.com/u-root/uio/uio"
+ #:unpack-path "github.com/u-root/uio/"
+ #:tests? #f;;The tests fail because of go-github-com-pierrec-lz4-v4 but
+ ;; the output make it seem that test is broken, not the code. The
+ ;; output looks like "Got something, want something else", but
+ ;; something and something else look pretty much the same (at a cursory
+ ;; glance). I'll move on as I don't think this has an actual impact.
+ ))
+ (propagated-inputs `(("go-golang-org-x-sys" ,go-golang-org-x-sys)
+ ("go-github-com-pierrec-lz4-v4" ,go-github-com-pierrec-lz4-v4)
+ ("go-github-com-josharian-native" ,go-github-com-josharian-native)))
+ (home-page "https://github.com/u-root/uio")
+ (synopsis "uio")
+ (description #f)
+ (license license:bsd-3)))
+
(define-public go-github-com-vishvananda-netlink
(package
(name "go-github-com-vishvananda-netlink")
--
2.40.1
^ permalink raw reply related [flat|nested] 103+ messages in thread
* [bug#65939] [PATCH 11/33] gnu: Fix go-github-com-u-root-uio.
2023-09-14 7:29 ` [bug#65939] [PATCH 01/33] gnu: Add go-github-com-sourcegraph-go-lsp Edouard Klein
` (8 preceding siblings ...)
2023-09-14 7:29 ` [bug#65939] [PATCH 10/33] gnu: Add go-github-com-u-root-uio Edouard Klein
@ 2023-09-14 7:29 ` Edouard Klein
2023-09-14 7:29 ` [bug#65939] [PATCH 12/33] gnu: Add go-github-com-u-root-uio-ulog Edouard Klein
` (21 subsequent siblings)
31 siblings, 0 replies; 103+ messages in thread
From: Edouard Klein @ 2023-09-14 7:29 UTC (permalink / raw)
To: 65939; +Cc: Edouard Klein, Katherine Cox-Buday
* gnu/packages/golang.scm (go-github-com-u-root-uio-uio): New variable.
* gnu/packages/golang.scm (go-github-com-u-root-uio): Remove variable.
go-github-com-u-root-uio needs to be broken down into its component packages
---
gnu/packages/golang.scm | 6 +++---
1 file changed, 3 insertions(+), 3 deletions(-)
diff --git a/gnu/packages/golang.scm b/gnu/packages/golang.scm
index 0e6d0d1adb..4baf228752 100644
--- a/gnu/packages/golang.scm
+++ b/gnu/packages/golang.scm
@@ -13350,9 +13350,9 @@ (define-public go-github-com-josharian-native
(description "Package native provides easy access to native byte order.")
(license license:expat)))
-(define-public go-github-com-u-root-uio
+(define-public go-github-com-u-root-uio-uio
(package
- (name "go-github-com-u-root-uio")
+ (name "go-github-com-u-root-uio-uio")
(version "0.0.0-20230305220412-3e8cd9d6bf63")
(source (origin
(method git-fetch)
@@ -13366,7 +13366,7 @@ (define-public go-github-com-u-root-uio
(build-system go-build-system)
(arguments
'(#:import-path "github.com/u-root/uio/uio"
- #:unpack-path "github.com/u-root/uio/"
+ #:unpack-path "github.com/u-root/uio"
#:tests? #f;;The tests fail because of go-github-com-pierrec-lz4-v4 but
;; the output make it seem that test is broken, not the code. The
;; output looks like "Got something, want something else", but
--
2.40.1
^ permalink raw reply related [flat|nested] 103+ messages in thread
* [bug#65939] [PATCH 12/33] gnu: Add go-github-com-u-root-uio-ulog.
2023-09-14 7:29 ` [bug#65939] [PATCH 01/33] gnu: Add go-github-com-sourcegraph-go-lsp Edouard Klein
` (9 preceding siblings ...)
2023-09-14 7:29 ` [bug#65939] [PATCH 11/33] gnu: Fix go-github-com-u-root-uio Edouard Klein
@ 2023-09-14 7:29 ` Edouard Klein
2023-09-14 7:29 ` [bug#65939] [PATCH 13/33] gnu: Add go-github-com-u-root-uio-cp Edouard Klein
` (20 subsequent siblings)
31 siblings, 0 replies; 103+ messages in thread
From: Edouard Klein @ 2023-09-14 7:29 UTC (permalink / raw)
To: 65939; +Cc: Edouard Klein, Katherine Cox-Buday
* gnu/packages/golang.scm (go-github-com-u-root-uio-ulog): New variable.
---
gnu/packages/golang.scm | 30 ++++++++++++++++++++++++++++++
1 file changed, 30 insertions(+)
diff --git a/gnu/packages/golang.scm b/gnu/packages/golang.scm
index 4baf228752..cb882058cf 100644
--- a/gnu/packages/golang.scm
+++ b/gnu/packages/golang.scm
@@ -13381,6 +13381,36 @@ (define-public go-github-com-u-root-uio-uio
(description #f)
(license license:bsd-3)))
+(define-public go-github-com-u-root-uio-ulog
+ (package
+ (name "go-github-com-u-root-uio-cp")
+ (version "0.0.0-20230305220412-3e8cd9d6bf63")
+ (source (origin
+ (method git-fetch)
+ (uri (git-reference
+ (url "https://github.com/u-root/uio")
+ (commit (go-version->git-ref version))))
+ (file-name (git-file-name name version))
+ (sha256
+ (base32
+ "1gvv66ixkgwikjx8sjdknvrmd08wv2ia02q8n8y3mnkhrgyyx1yf"))))
+ (build-system go-build-system)
+ (arguments
+ (list
+ #:import-path "github.com/u-root/uio/ulog"
+ #:unpack-path "github.com/u-root/uio"
+ #:install-source? #t
+ ;; Source-only package
+ #:tests? #f
+ #:phases
+ #~(modify-phases %standard-phases
+ ;; Source-only package
+ (delete 'build))))
+ (home-page "https://github.com/u-root/uio")
+ (synopsis "uio")
+ (description #f)
+ (license license:bsd-3)))
+
(define-public go-github-com-vishvananda-netlink
(package
(name "go-github-com-vishvananda-netlink")
--
2.40.1
^ permalink raw reply related [flat|nested] 103+ messages in thread
* [bug#65939] [PATCH 13/33] gnu: Add go-github-com-u-root-uio-cp.
2023-09-14 7:29 ` [bug#65939] [PATCH 01/33] gnu: Add go-github-com-sourcegraph-go-lsp Edouard Klein
` (10 preceding siblings ...)
2023-09-14 7:29 ` [bug#65939] [PATCH 12/33] gnu: Add go-github-com-u-root-uio-ulog Edouard Klein
@ 2023-09-14 7:29 ` Edouard Klein
2023-09-14 7:29 ` [bug#65939] [PATCH 14/33] gnu: Add go-github-com-u-root-gobusybox-src-pkg-bb Edouard Klein
` (19 subsequent siblings)
31 siblings, 0 replies; 103+ messages in thread
From: Edouard Klein @ 2023-09-14 7:29 UTC (permalink / raw)
To: 65939; +Cc: Edouard Klein, Katherine Cox-Buday
* gnu/packages/golang.scm (go-github-com-u-root-uio-cp): New variable.
---
gnu/packages/golang.scm | 30 ++++++++++++++++++++++++++++++
1 file changed, 30 insertions(+)
diff --git a/gnu/packages/golang.scm b/gnu/packages/golang.scm
index cb882058cf..2ce2c57347 100644
--- a/gnu/packages/golang.scm
+++ b/gnu/packages/golang.scm
@@ -13411,6 +13411,36 @@ (define-public go-github-com-u-root-uio-ulog
(description #f)
(license license:bsd-3)))
+(define-public go-github-com-u-root-uio-cp
+ (package
+ (name "go-github-com-u-root-uio-cp")
+ (version "0.0.0-20230305220412-3e8cd9d6bf63")
+ (source (origin
+ (method git-fetch)
+ (uri (git-reference
+ (url "https://github.com/u-root/uio")
+ (commit (go-version->git-ref version))))
+ (file-name (git-file-name name version))
+ (sha256
+ (base32
+ "1gvv66ixkgwikjx8sjdknvrmd08wv2ia02q8n8y3mnkhrgyyx1yf"))))
+ (build-system go-build-system)
+ (arguments
+ (list
+ #:import-path "github.com/u-root/uio/cp"
+ #:unpack-path "github.com/u-root/uio"
+ #:install-source? #t
+ ;; Source-only package
+ #:tests? #f
+ #:phases
+ #~(modify-phases %standard-phases
+ ;; Source-only package
+ (delete 'build))))
+ (home-page "https://github.com/u-root/uio")
+ (synopsis "uio")
+ (description #f)
+ (license license:bsd-3)))
+
(define-public go-github-com-vishvananda-netlink
(package
(name "go-github-com-vishvananda-netlink")
--
2.40.1
^ permalink raw reply related [flat|nested] 103+ messages in thread
* [bug#65939] [PATCH 14/33] gnu: Add go-github-com-u-root-gobusybox-src-pkg-bb.
2023-09-14 7:29 ` [bug#65939] [PATCH 01/33] gnu: Add go-github-com-sourcegraph-go-lsp Edouard Klein
` (11 preceding siblings ...)
2023-09-14 7:29 ` [bug#65939] [PATCH 13/33] gnu: Add go-github-com-u-root-uio-cp Edouard Klein
@ 2023-09-14 7:29 ` Edouard Klein
2023-09-14 7:29 ` [bug#65939] [PATCH 15/33] gnu: Add go-github-com-mdlayher-socket Edouard Klein
` (18 subsequent siblings)
31 siblings, 0 replies; 103+ messages in thread
From: Edouard Klein @ 2023-09-14 7:29 UTC (permalink / raw)
To: 65939; +Cc: Edouard Klein, Katherine Cox-Buday
* gnu/packages/golang.scm (go-github-com-u-root-gobusybox-src-pkg-bb): New variable.
---
gnu/packages/golang.scm | 33 +++++++++++++++++++++++++++++++++
1 file changed, 33 insertions(+)
diff --git a/gnu/packages/golang.scm b/gnu/packages/golang.scm
index 2ce2c57347..08fd4c5010 100644
--- a/gnu/packages/golang.scm
+++ b/gnu/packages/golang.scm
@@ -13441,6 +13441,39 @@ (define-public go-github-com-u-root-uio-cp
(description #f)
(license license:bsd-3)))
+
+(define-public go-github-com-u-root-gobusybox-src-pkg-bb
+ (package
+ (name "go-github-com-u-root-gobusybox-src-pkg-bb")
+ (version "0.0.0-20230817123913-21a9727f4316")
+ (source (origin
+ (method git-fetch)
+ (uri (git-reference
+ (url "https://github.com/u-root/gobusybox")
+ (commit (go-version->git-ref version))))
+ (file-name (git-file-name name version))
+ (sha256
+ (base32
+ "0n03f150487459ljmhzfpjm6jdf7axifl9qfahq5mwcynb495w2z"))))
+ (build-system go-build-system)
+ (arguments
+ '(#:import-path "github.com/u-root/gobusybox/src/pkg/bb"
+ #:unpack-path "github.com/u-root/gobusybox"))
+ (propagated-inputs `(("go-golang-org-x-xerrors" ,go-golang-org-x-xerrors)
+ ("go-github-com-hashicorp-errwrap" ,go-github-com-hashicorp-errwrap)
+ ("go-golang-org-x-tools" ,go-golang-org-x-tools)
+ ("go-golang-org-x-sys" ,go-golang-org-x-sys)
+ ("go-golang-org-x-mod" ,go-golang-org-x-mod)
+ ("go-github-com-u-root-uio-uio" ,go-github-com-u-root-uio-uio)
+ ("go-github-com-u-root-uio-ulog" ,go-github-com-u-root-uio-ulog)
+ ("go-github-com-u-root-uio-cp" ,go-github-com-u-root-uio-cp)
+ ("go-github-com-hashicorp-go-multierror" ,go-github-com-hashicorp-go-multierror)
+ ("go-github-com-google-goterm" ,go-github-com-google-goterm)))
+ (home-page "https://github.com/u-root/gobusybox")
+ (synopsis #f)
+ (description #f)
+ (license license:bsd-3)))
+
(define-public go-github-com-vishvananda-netlink
(package
(name "go-github-com-vishvananda-netlink")
--
2.40.1
^ permalink raw reply related [flat|nested] 103+ messages in thread
* [bug#65939] [PATCH 15/33] gnu: Add go-github-com-mdlayher-socket.
2023-09-14 7:29 ` [bug#65939] [PATCH 01/33] gnu: Add go-github-com-sourcegraph-go-lsp Edouard Klein
` (12 preceding siblings ...)
2023-09-14 7:29 ` [bug#65939] [PATCH 14/33] gnu: Add go-github-com-u-root-gobusybox-src-pkg-bb Edouard Klein
@ 2023-09-14 7:29 ` Edouard Klein
2023-09-14 7:29 ` [bug#65939] [PATCH 16/33] gnu: Add go-github-com-mdlayher-packet Edouard Klein
` (17 subsequent siblings)
31 siblings, 0 replies; 103+ messages in thread
From: Edouard Klein @ 2023-09-14 7:29 UTC (permalink / raw)
To: 65939; +Cc: Edouard Klein, Katherine Cox-Buday
* gnu/packages/golang.scm (go-github-com-mdlayher-socket): New variable.
---
gnu/packages/golang.scm | 29 +++++++++++++++++++++++++++++
1 file changed, 29 insertions(+)
diff --git a/gnu/packages/golang.scm b/gnu/packages/golang.scm
index 08fd4c5010..9723c36dc0 100644
--- a/gnu/packages/golang.scm
+++ b/gnu/packages/golang.scm
@@ -13474,6 +13474,35 @@ (define-public go-github-com-u-root-gobusybox-src-pkg-bb
(description #f)
(license license:bsd-3)))
+(define-public go-github-com-mdlayher-socket
+ (package
+ (name "go-github-com-mdlayher-socket")
+ (version "0.5.0")
+ (source (origin
+ (method git-fetch)
+ (uri (git-reference
+ (url "https://github.com/mdlayher/socket")
+ (commit (string-append "v" version))))
+ (file-name (git-file-name name version))
+ (sha256
+ (base32
+ "1g0bifm7xyfisgk0jmvyshmrnawkwvamn40hvg8f46xs3s5incfz"))))
+ (build-system go-build-system)
+ (arguments
+ `(#:import-path "github.com/mdlayher/socket"
+ #:go ,go-1.20))
+ (propagated-inputs `(("go-golang-org-x-sys" ,go-golang-org-x-sys)
+ ("go-golang-org-x-sync" ,go-golang-org-x-sync)
+ ("go-golang-org-x-net" ,go-golang-org-x-net)
+ ("go-github-com-google-go-cmp-cmp" ,go-github-com-google-go-cmp-cmp)))
+ (home-page "https://github.com/mdlayher/socket")
+ (synopsis "socket")
+ (description
+ "Package socket provides a low-level network connection type which integrates
+with Go's runtime network poller to provide asynchronous I/O and deadline
+support.")
+ (license license:expat)))
+
(define-public go-github-com-vishvananda-netlink
(package
(name "go-github-com-vishvananda-netlink")
--
2.40.1
^ permalink raw reply related [flat|nested] 103+ messages in thread
* [bug#65939] [PATCH 16/33] gnu: Add go-github-com-mdlayher-packet.
2023-09-14 7:29 ` [bug#65939] [PATCH 01/33] gnu: Add go-github-com-sourcegraph-go-lsp Edouard Klein
` (13 preceding siblings ...)
2023-09-14 7:29 ` [bug#65939] [PATCH 15/33] gnu: Add go-github-com-mdlayher-socket Edouard Klein
@ 2023-09-14 7:29 ` Edouard Klein
2023-09-14 7:29 ` [bug#65939] [PATCH 17/33] gnu: Add go-github-com-klauspost-pgzip Edouard Klein
` (16 subsequent siblings)
31 siblings, 0 replies; 103+ messages in thread
From: Edouard Klein @ 2023-09-14 7:29 UTC (permalink / raw)
To: 65939; +Cc: Edouard Klein, Katherine Cox-Buday
* gnu/packages/golang.scm (go-github-com-mdlayher-packet): New variable.
---
gnu/packages/golang.scm | 30 ++++++++++++++++++++++++++++++
1 file changed, 30 insertions(+)
diff --git a/gnu/packages/golang.scm b/gnu/packages/golang.scm
index 9723c36dc0..075f341b9b 100644
--- a/gnu/packages/golang.scm
+++ b/gnu/packages/golang.scm
@@ -13503,6 +13503,36 @@ (define-public go-github-com-mdlayher-socket
support.")
(license license:expat)))
+(define-public go-github-com-mdlayher-packet
+ (package
+ (name "go-github-com-mdlayher-packet")
+ (version "1.1.2")
+ (source (origin
+ (method git-fetch)
+ (uri (git-reference
+ (url "https://github.com/mdlayher/packet")
+ (commit (string-append "v" version))))
+ (file-name (git-file-name name version))
+ (sha256
+ (base32
+ "17jms60j1xygsn5z61r2kz8yywsihf0xjzlhq3v5cpqf08mljwsn"))))
+ (build-system go-build-system)
+ (arguments
+ `(#:import-path "github.com/mdlayher/packet"
+ #:go ,go-1.20))
+ (propagated-inputs `(("go-golang-org-x-sync" ,go-golang-org-x-sync)
+ ("go-golang-org-x-sys" ,go-golang-org-x-sys)
+ ("go-golang-org-x-net" ,go-golang-org-x-net)
+ ("go-github-com-mdlayher-socket" ,go-github-com-mdlayher-socket)
+ ("go-github-com-josharian-native" ,go-github-com-josharian-native)
+ ("go-github-com-google-go-cmp-cmp" ,go-github-com-google-go-cmp-cmp)))
+ (home-page "https://github.com/mdlayher/packet")
+ (synopsis "packet")
+ (description
+ "Package packet provides access to Linux packet sockets (AF_PACKET).")
+ (license license:expat)))
+
+
(define-public go-github-com-vishvananda-netlink
(package
(name "go-github-com-vishvananda-netlink")
--
2.40.1
^ permalink raw reply related [flat|nested] 103+ messages in thread
* [bug#65939] [PATCH 17/33] gnu: Add go-github-com-klauspost-pgzip.
2023-09-14 7:29 ` [bug#65939] [PATCH 01/33] gnu: Add go-github-com-sourcegraph-go-lsp Edouard Klein
` (14 preceding siblings ...)
2023-09-14 7:29 ` [bug#65939] [PATCH 16/33] gnu: Add go-github-com-mdlayher-packet Edouard Klein
@ 2023-09-14 7:29 ` Edouard Klein
2023-09-14 7:29 ` [bug#65939] [PATCH 18/33] gnu: Add go-github-com-fanliao-go-promise Edouard Klein
` (15 subsequent siblings)
31 siblings, 0 replies; 103+ messages in thread
From: Edouard Klein @ 2023-09-14 7:29 UTC (permalink / raw)
To: 65939; +Cc: Edouard Klein, Katherine Cox-Buday
* gnu/packages/golang.scm (go-github-com-klauspost-pgzip): New variable.
---
gnu/packages/golang.scm | 25 +++++++++++++++++++++++++
1 file changed, 25 insertions(+)
diff --git a/gnu/packages/golang.scm b/gnu/packages/golang.scm
index 075f341b9b..f2924ae796 100644
--- a/gnu/packages/golang.scm
+++ b/gnu/packages/golang.scm
@@ -12015,6 +12015,31 @@ (define-public go-github-com-klauspost-compress
(description "@code{compress} provides various compression algorithms.")
(license license:bsd-3)))
+(define-public go-github-com-klauspost-pgzip
+ (package
+ (name "go-github-com-klauspost-pgzip")
+ (version "1.2.6")
+ (source (origin
+ (method git-fetch)
+ (uri (git-reference
+ (url "https://github.com/klauspost/pgzip")
+ (commit (string-append "v" version))))
+ (file-name (git-file-name name version))
+ (sha256
+ (base32
+ "1j29wr6nd9ncdbkjphyziv0h8p5s2mj222cgcfqxmzjnfn7623d8"))))
+ (build-system go-build-system)
+ (arguments
+ '(#:import-path "github.com/klauspost/pgzip"))
+ (propagated-inputs
+ (list go-github-com-klauspost-compress))
+ (home-page "https://github.com/klauspost/pgzip")
+ (synopsis "pgzip")
+ (description
+ "Package pgzip implements reading and writing of gzip format compressed files, as
+specified in @@url{https://rfc-editor.org/rfc/rfc1952.html,RFC 1952}.")
+ (license license:expat)))
+
(define-public go-github-com-oneofone-xxhash
(package
(name "go-github-com-oneofone-xxhash")
--
2.40.1
^ permalink raw reply related [flat|nested] 103+ messages in thread
* [bug#65939] [PATCH 18/33] gnu: Add go-github-com-fanliao-go-promise.
2023-09-14 7:29 ` [bug#65939] [PATCH 01/33] gnu: Add go-github-com-sourcegraph-go-lsp Edouard Klein
` (15 preceding siblings ...)
2023-09-14 7:29 ` [bug#65939] [PATCH 17/33] gnu: Add go-github-com-klauspost-pgzip Edouard Klein
@ 2023-09-14 7:29 ` Edouard Klein
2023-09-14 7:29 ` [bug#65939] [PATCH 19/33] gnu: Add go-github-com-hugelgupf-socketpair Edouard Klein
` (14 subsequent siblings)
31 siblings, 0 replies; 103+ messages in thread
From: Edouard Klein @ 2023-09-14 7:29 UTC (permalink / raw)
To: 65939; +Cc: Edouard Klein, Katherine Cox-Buday
* gnu/packages/golang.scm (go-github-com-fanliao-go-promise): New variable.
---
gnu/packages/golang.scm | 25 +++++++++++++++++++++++++
1 file changed, 25 insertions(+)
diff --git a/gnu/packages/golang.scm b/gnu/packages/golang.scm
index f2924ae796..7f19cfa608 100644
--- a/gnu/packages/golang.scm
+++ b/gnu/packages/golang.scm
@@ -13557,6 +13557,31 @@ (define-public go-github-com-mdlayher-packet
"Package packet provides access to Linux packet sockets (AF_PACKET).")
(license license:expat)))
+(define-public go-github-com-fanliao-go-promise
+ (package
+ (name "go-github-com-fanliao-go-promise")
+ (version "0.0.0-20141029170127-1890db352a72")
+ (source (origin
+ (method git-fetch)
+ (uri (git-reference
+ (url "https://github.com/fanliao/go-promise")
+ (commit (go-version->git-ref version))))
+ (file-name (git-file-name name version))
+ (sha256
+ (base32
+ "0nlls86fx6sxsvwp5k769h5knwh96j8fahhivh6fagzjjyyqcijd"))))
+ (build-system go-build-system)
+ (arguments
+ '(#:import-path "github.com/fanliao/go-promise"
+ ;; The tests fail but I'm too lazy to look into it
+ #:tests? #f))
+ (propagated-inputs (list go-github.com-smartystreets-goconvey))
+ (home-page "https://github.com/fanliao/go-promise")
+ (synopsis "Installation")
+ (description
+ "Package promise provides a complete promise and future implementation. A quick
+start sample:")
+ (license license:expat)))
(define-public go-github-com-vishvananda-netlink
(package
--
2.40.1
^ permalink raw reply related [flat|nested] 103+ messages in thread
* [bug#65939] [PATCH 19/33] gnu: Add go-github-com-hugelgupf-socketpair.
2023-09-14 7:29 ` [bug#65939] [PATCH 01/33] gnu: Add go-github-com-sourcegraph-go-lsp Edouard Klein
` (16 preceding siblings ...)
2023-09-14 7:29 ` [bug#65939] [PATCH 18/33] gnu: Add go-github-com-fanliao-go-promise Edouard Klein
@ 2023-09-14 7:29 ` Edouard Klein
2023-09-14 7:29 ` [bug#65939] [PATCH 20/33] gnu: go-golang-org-x-sys: Update to 0.12.0 Edouard Klein
` (13 subsequent siblings)
31 siblings, 0 replies; 103+ messages in thread
From: Edouard Klein @ 2023-09-14 7:29 UTC (permalink / raw)
To: 65939; +Cc: Edouard Klein, Katherine Cox-Buday
* gnu/packages/golang.scm (go-github-com-hugelgupf-socketpair): New variable.
---
gnu/packages/golang.scm | 22 ++++++++++++++++++++++
1 file changed, 22 insertions(+)
diff --git a/gnu/packages/golang.scm b/gnu/packages/golang.scm
index 7f19cfa608..1c1472e8c4 100644
--- a/gnu/packages/golang.scm
+++ b/gnu/packages/golang.scm
@@ -13583,6 +13583,28 @@ (define-public go-github-com-fanliao-go-promise
start sample:")
(license license:expat)))
+(define-public go-github-com-hugelgupf-socketpair
+ (package
+ (name "go-github-com-hugelgupf-socketpair")
+ (version "0.0.0-20230822150718-707395b1939a")
+ (source (origin
+ (method git-fetch)
+ (uri (git-reference
+ (url "https://github.com/hugelgupf/socketpair")
+ (commit (go-version->git-ref version))))
+ (file-name (git-file-name name version))
+ (sha256
+ (base32
+ "1hbv29bfyi2s5z71403mzgv4yc7fjg63kyh2y9m9pl8zq3amjsvv"))))
+ (build-system go-build-system)
+ (arguments
+ '(#:import-path "github.com/hugelgupf/socketpair"))
+ (home-page "https://github.com/hugelgupf/socketpair")
+ (synopsis "socketpair")
+ (description
+ "Package socketpair provides bidirectionally connected net.Conns.")
+ (license license:bsd-3)))
+
(define-public go-github-com-vishvananda-netlink
(package
(name "go-github-com-vishvananda-netlink")
--
2.40.1
^ permalink raw reply related [flat|nested] 103+ messages in thread
* [bug#65939] [PATCH 20/33] gnu: go-golang-org-x-sys: Update to 0.12.0.
2023-09-14 7:29 ` [bug#65939] [PATCH 01/33] gnu: Add go-github-com-sourcegraph-go-lsp Edouard Klein
` (17 preceding siblings ...)
2023-09-14 7:29 ` [bug#65939] [PATCH 19/33] gnu: Add go-github-com-hugelgupf-socketpair Edouard Klein
@ 2023-09-14 7:29 ` Edouard Klein
2023-09-14 7:29 ` [bug#65939] [PATCH 21/33] gnu: go-github-com-frankban-quicktest: Update to 1.14.6 Edouard Klein
` (12 subsequent siblings)
31 siblings, 0 replies; 103+ messages in thread
From: Edouard Klein @ 2023-09-14 7:29 UTC (permalink / raw)
To: 65939; +Cc: Edouard Klein, Katherine Cox-Buday
* gnu/packages/golang.scm (go-golang-org-x-sys): Update to 0.12.0.
---
gnu/packages/golang.scm | 8 ++++----
1 file changed, 4 insertions(+), 4 deletions(-)
diff --git a/gnu/packages/golang.scm b/gnu/packages/golang.scm
index 1c1472e8c4..229cb97b01 100644
--- a/gnu/packages/golang.scm
+++ b/gnu/packages/golang.scm
@@ -4222,11 +4222,11 @@ (define-public go-golang-org-x-sync
(license license:bsd-3))))
(define-public go-golang-org-x-sys
- (let ((commit "b60007cc4e6f966b1c542e343d026d06723e5653")
- (revision "0"))
+ (let ((commit "38ebf4150f9b8b3b3345ee2a1f7cfb0d774567f8")
+ (revision "1"))
(package
(name "go-golang-org-x-sys")
- (version (git-version "0.4.0" revision commit))
+ (version (git-version "0.12.0" revision commit))
(source (origin
(method git-fetch)
(uri (git-reference
@@ -4235,7 +4235,7 @@ (define-public go-golang-org-x-sys
(file-name (git-file-name name version))
(sha256
(base32
- "0fr2d6fnpbqx6n89sg9lsinqkdaw49y068kqj2g0cxlhbh69hzii"))))
+ "160ppzd31arrq33lrvclz3qgp73acx3j2r4xccd67yvyqsihwfzr"))))
(build-system go-build-system)
(arguments
(list
--
2.40.1
^ permalink raw reply related [flat|nested] 103+ messages in thread
* [bug#65939] [PATCH 21/33] gnu: go-github-com-frankban-quicktest: Update to 1.14.6.
2023-09-14 7:29 ` [bug#65939] [PATCH 01/33] gnu: Add go-github-com-sourcegraph-go-lsp Edouard Klein
` (18 preceding siblings ...)
2023-09-14 7:29 ` [bug#65939] [PATCH 20/33] gnu: go-golang-org-x-sys: Update to 0.12.0 Edouard Klein
@ 2023-09-14 7:29 ` Edouard Klein
2023-09-14 7:29 ` [bug#65939] [PATCH 22/33] gnu: Add go-github-com-cilium-ebpf Edouard Klein
` (11 subsequent siblings)
31 siblings, 0 replies; 103+ messages in thread
From: Edouard Klein @ 2023-09-14 7:29 UTC (permalink / raw)
To: 65939; +Cc: Edouard Klein, Katherine Cox-Buday
* gnu/packages/golang.scm (go-github-com-frankban-quicktest): Update to 1.14.6.
---
gnu/packages/golang.scm | 4 ++--
1 file changed, 2 insertions(+), 2 deletions(-)
diff --git a/gnu/packages/golang.scm b/gnu/packages/golang.scm
index 229cb97b01..c55fcde5fc 100644
--- a/gnu/packages/golang.scm
+++ b/gnu/packages/golang.scm
@@ -11042,7 +11042,7 @@ (define-public go-github-com-gologme-log
(define-public go-github-com-frankban-quicktest
(package
(name "go-github-com-frankban-quicktest")
- (version "1.11.1")
+ (version "1.14.6")
(source
(origin
(method git-fetch)
@@ -11052,7 +11052,7 @@ (define-public go-github-com-frankban-quicktest
(file-name (git-file-name name version))
(sha256
(base32
- "0b1b44b2hli2p969gqz30z8v9z6ahlklpqzi17nwk1lsjz9yv938"))))
+ "0gnh9v4cg39pw8y356299zhh5jmq2p4cf9945lfiqsjsk7h6ld70"))))
(build-system go-build-system)
(arguments
'(#:import-path "github.com/frankban/quicktest"))
--
2.40.1
^ permalink raw reply related [flat|nested] 103+ messages in thread
* [bug#65939] [PATCH 22/33] gnu: Add go-github-com-cilium-ebpf.
2023-09-14 7:29 ` [bug#65939] [PATCH 01/33] gnu: Add go-github-com-sourcegraph-go-lsp Edouard Klein
` (19 preceding siblings ...)
2023-09-14 7:29 ` [bug#65939] [PATCH 21/33] gnu: go-github-com-frankban-quicktest: Update to 1.14.6 Edouard Klein
@ 2023-09-14 7:29 ` Edouard Klein
2023-09-14 7:29 ` [bug#65939] [PATCH 23/33] gnu: Add go-github-com-mdlayher-netlink Edouard Klein
` (10 subsequent siblings)
31 siblings, 0 replies; 103+ messages in thread
From: Edouard Klein @ 2023-09-14 7:29 UTC (permalink / raw)
To: 65939; +Cc: Edouard Klein, Katherine Cox-Buday
* gnu/packages/golang.scm (go-github-com-cilium-ebpf): New variable.
---
gnu/packages/golang.scm | 32 ++++++++++++++++++++++++++++++++
1 file changed, 32 insertions(+)
diff --git a/gnu/packages/golang.scm b/gnu/packages/golang.scm
index c55fcde5fc..041c14a9cc 100644
--- a/gnu/packages/golang.scm
+++ b/gnu/packages/golang.scm
@@ -13605,6 +13605,38 @@ (define-public go-github-com-hugelgupf-socketpair
"Package socketpair provides bidirectionally connected net.Conns.")
(license license:bsd-3)))
+(define-public go-github-com-cilium-ebpf
+ (package
+ (name "go-github-com-cilium-ebpf")
+ (version "0.11.0")
+ (source (origin
+ (method git-fetch)
+ (uri (git-reference
+ (url "https://github.com/cilium/ebpf")
+ (commit (string-append "v" version))))
+ (file-name (git-file-name name version))
+ (sha256
+ (base32
+ "01qwvlbr4fi5j88dfivvivi9avjka3jvw311c2ab75vmg8z9vdps"))))
+ (build-system go-build-system)
+ (arguments
+ `(#:import-path "github.com/cilium/ebpf"
+ #:tests? #f ;; Bunch of "operation not permitted", would be a pain to
+ ;; debug. I'm letting it go
+ #:go ,go-1.20))
+ (propagated-inputs `(("go-github-com-rogpeppe-go-internal" ,go-github-com-rogpeppe-go-internal)
+ ("go-github-com-kr-text" ,go-github-com-kr-text)
+ ("go-github-com-kr-pretty" ,go-github-com-kr-pretty)
+ ("go-golang-org-x-sys" ,go-golang-org-x-sys)
+ ("go-golang-org-x-exp" ,go-golang-org-x-exp)
+ ("go-github-com-google-go-cmp-cmp" ,go-github-com-google-go-cmp-cmp)
+ ("go-github-com-frankban-quicktest" ,go-github-com-frankban-quicktest)))
+ (home-page "https://github.com/cilium/ebpf")
+ (synopsis "eBPF")
+ (description
+ "Package ebpf is a toolkit for working with @code{eBPF} programs.")
+ (license license:expat)))
+
(define-public go-github-com-vishvananda-netlink
(package
(name "go-github-com-vishvananda-netlink")
--
2.40.1
^ permalink raw reply related [flat|nested] 103+ messages in thread
* [bug#65939] [PATCH 23/33] gnu: Add go-github-com-mdlayher-netlink.
2023-09-14 7:29 ` [bug#65939] [PATCH 01/33] gnu: Add go-github-com-sourcegraph-go-lsp Edouard Klein
` (20 preceding siblings ...)
2023-09-14 7:29 ` [bug#65939] [PATCH 22/33] gnu: Add go-github-com-cilium-ebpf Edouard Klein
@ 2023-09-14 7:29 ` Edouard Klein
2023-09-14 7:29 ` [bug#65939] [PATCH 24/33] gnu: Add go-github-com-jsimonetti-rtnetlink Edouard Klein
` (9 subsequent siblings)
31 siblings, 0 replies; 103+ messages in thread
From: Edouard Klein @ 2023-09-14 7:29 UTC (permalink / raw)
To: 65939; +Cc: Edouard Klein, Katherine Cox-Buday
* gnu/packages/golang.scm (go-github-com-mdlayher-netlink): New variable.
---
gnu/packages/golang.scm | 31 +++++++++++++++++++++++++++++++
1 file changed, 31 insertions(+)
diff --git a/gnu/packages/golang.scm b/gnu/packages/golang.scm
index 041c14a9cc..3bf113fd70 100644
--- a/gnu/packages/golang.scm
+++ b/gnu/packages/golang.scm
@@ -80,6 +80,7 @@ (define-module (gnu packages golang)
#:use-module (gnu packages gcc)
#:use-module (gnu packages glib)
#:use-module (gnu packages gnupg)
+ #:use-module (gnu packages linux)
#:use-module (gnu packages lua)
#:use-module (gnu packages mail)
#:use-module (gnu packages mp3)
@@ -13637,6 +13638,36 @@ (define-public go-github-com-cilium-ebpf
"Package ebpf is a toolkit for working with @code{eBPF} programs.")
(license license:expat)))
+(define-public go-github-com-mdlayher-netlink
+ (package
+ (name "go-github-com-mdlayher-netlink")
+ (version "1.7.2")
+ (source (origin
+ (method git-fetch)
+ (uri (git-reference
+ (url "https://github.com/mdlayher/netlink")
+ (commit (string-append "v" version))))
+ (file-name (git-file-name name version))
+ (sha256
+ (base32
+ "1pxd0qn73jr9n64gkp2kd8q8x7xgssm3v8a68vkh88al55g8jkma"))))
+ (build-system go-build-system)
+ (arguments
+ `(#:import-path "github.com/mdlayher/netlink"
+ #:go ,go-1.20))
+ (propagated-inputs `(("go-golang-org-x-sync" ,go-golang-org-x-sync)
+ ("go-golang-org-x-sys" ,go-golang-org-x-sys)
+ ("go-golang-org-x-net" ,go-golang-org-x-net)
+ ("go-github-com-mdlayher-socket" ,go-github-com-mdlayher-socket)
+ ("go-github-com-josharian-native" ,go-github-com-josharian-native)
+ ("go-github-com-google-go-cmp-cmp" ,go-github-com-google-go-cmp-cmp)
+ ("iproute2" ,iproute)))
+ (home-page "https://github.com/mdlayher/netlink")
+ (synopsis "netlink")
+ (description
+ "Package netlink provides low-level access to Linux netlink sockets (AF_NETLINK).")
+ (license license:expat)))
+
(define-public go-github-com-vishvananda-netlink
(package
(name "go-github-com-vishvananda-netlink")
--
2.40.1
^ permalink raw reply related [flat|nested] 103+ messages in thread
* [bug#65939] [PATCH 24/33] gnu: Add go-github-com-jsimonetti-rtnetlink.
2023-09-14 7:29 ` [bug#65939] [PATCH 01/33] gnu: Add go-github-com-sourcegraph-go-lsp Edouard Klein
` (21 preceding siblings ...)
2023-09-14 7:29 ` [bug#65939] [PATCH 23/33] gnu: Add go-github-com-mdlayher-netlink Edouard Klein
@ 2023-09-14 7:29 ` Edouard Klein
2023-09-14 7:29 ` [bug#65939] [PATCH 25/33] gnu: Add go-github-com-neelance-astrewrite Edouard Klein
` (8 subsequent siblings)
31 siblings, 0 replies; 103+ messages in thread
From: Edouard Klein @ 2023-09-14 7:29 UTC (permalink / raw)
To: 65939; +Cc: Edouard Klein, Katherine Cox-Buday
* gnu/packages/golang.scm (go-github-com-jsimonetti-rtnetlink): New variable.
---
gnu/packages/golang.scm | 35 +++++++++++++++++++++++++++++++++++
1 file changed, 35 insertions(+)
diff --git a/gnu/packages/golang.scm b/gnu/packages/golang.scm
index 3bf113fd70..bb19e9605f 100644
--- a/gnu/packages/golang.scm
+++ b/gnu/packages/golang.scm
@@ -13668,6 +13668,41 @@ (define-public go-github-com-mdlayher-netlink
"Package netlink provides low-level access to Linux netlink sockets (AF_NETLINK).")
(license license:expat)))
+(define-public go-github-com-jsimonetti-rtnetlink
+ (package
+ (name "go-github-com-jsimonetti-rtnetlink")
+ (version "1.3.5")
+ (source (origin
+ (method git-fetch)
+ (uri (git-reference
+ (url "https://github.com/jsimonetti/rtnetlink")
+ (commit (string-append "v" version))))
+ (file-name (git-file-name name version))
+ (sha256
+ (base32
+ "19kifm0c4lpq1y25g2acnfm5cfrizbygqa50a3sdp9368s1gaay5"))))
+ (build-system go-build-system)
+ (arguments
+ `(#:import-path "github.com/jsimonetti/rtnetlink"
+ #:go ,go-1.20))
+ (propagated-inputs `(("go-golang-org-x-sync" ,go-golang-org-x-sync)
+ ("go-golang-org-x-net" ,go-golang-org-x-net)
+ ("go-golang-org-x-exp" ,go-golang-org-x-exp)
+ ("go-github-com-mdlayher-socket" ,go-github-com-mdlayher-socket)
+ ("go-github-com-josharian-native" ,go-github-com-josharian-native)
+ ("go-golang-org-x-sys" ,go-golang-org-x-sys)
+ ("go-github-com-mdlayher-netlink" ,go-github-com-mdlayher-netlink)
+ ("go-github-com-google-go-cmp-cmp" ,go-github-com-google-go-cmp-cmp)
+ ("go-github-com-cilium-ebpf" ,go-github-com-cilium-ebpf)))
+ (home-page "https://github.com/jsimonetti/rtnetlink")
+ (synopsis "rtnetlink")
+ (description
+ "Package rtnetlink allows the kernel's routing tables to be read and altered.
+Network routes, IP addresses, Link parameters, Neighbor setups, Queueing
+disciplines, Traffic classes and Packet classifiers may all be controlled. It
+is based on netlink messages.")
+ (license license:expat)))
+
(define-public go-github-com-vishvananda-netlink
(package
(name "go-github-com-vishvananda-netlink")
--
2.40.1
^ permalink raw reply related [flat|nested] 103+ messages in thread
* [bug#65939] [PATCH 25/33] gnu: Add go-github-com-neelance-astrewrite.
2023-09-14 7:29 ` [bug#65939] [PATCH 01/33] gnu: Add go-github-com-sourcegraph-go-lsp Edouard Klein
` (22 preceding siblings ...)
2023-09-14 7:29 ` [bug#65939] [PATCH 24/33] gnu: Add go-github-com-jsimonetti-rtnetlink Edouard Klein
@ 2023-09-14 7:29 ` Edouard Klein
2023-09-14 7:29 ` [bug#65939] [PATCH 26/33] gnu: Add go-github-com-neelance-sourcemap Edouard Klein
` (7 subsequent siblings)
31 siblings, 0 replies; 103+ messages in thread
From: Edouard Klein @ 2023-09-14 7:29 UTC (permalink / raw)
To: 65939; +Cc: Edouard Klein, Katherine Cox-Buday
* gnu/packages/golang.scm (go-github-com-neelance-astrewrite): New variable.
---
gnu/packages/golang.scm | 21 +++++++++++++++++++++
1 file changed, 21 insertions(+)
diff --git a/gnu/packages/golang.scm b/gnu/packages/golang.scm
index bb19e9605f..7299b1b17a 100644
--- a/gnu/packages/golang.scm
+++ b/gnu/packages/golang.scm
@@ -13703,6 +13703,27 @@ (define-public go-github-com-jsimonetti-rtnetlink
is based on netlink messages.")
(license license:expat)))
+(define-public go-github-com-neelance-astrewrite
+ (package
+ (name "go-github-com-neelance-astrewrite")
+ (version "0.0.0-20160511093645-99348263ae86")
+ (source (origin
+ (method git-fetch)
+ (uri (git-reference
+ (url "https://github.com/neelance/astrewrite")
+ (commit (go-version->git-ref version))))
+ (file-name (git-file-name name version))
+ (sha256
+ (base32
+ "07527807p8q6h05iq4qy0xrlcmwyzj76gpk0yqf71yaj447mz24v"))))
+ (build-system go-build-system)
+ (arguments
+ '(#:import-path "github.com/neelance/astrewrite"))
+ (home-page "https://github.com/neelance/astrewrite")
+ (synopsis #f)
+ (description #f)
+ (license license:bsd-2)))
+
(define-public go-github-com-vishvananda-netlink
(package
(name "go-github-com-vishvananda-netlink")
--
2.40.1
^ permalink raw reply related [flat|nested] 103+ messages in thread
* [bug#65939] [PATCH 26/33] gnu: Add go-github-com-neelance-sourcemap.
2023-09-14 7:29 ` [bug#65939] [PATCH 01/33] gnu: Add go-github-com-sourcegraph-go-lsp Edouard Klein
` (23 preceding siblings ...)
2023-09-14 7:29 ` [bug#65939] [PATCH 25/33] gnu: Add go-github-com-neelance-astrewrite Edouard Klein
@ 2023-09-14 7:29 ` Edouard Klein
2023-09-14 7:29 ` [bug#65939] [PATCH 27/33] gnu: Add go-github-com-shurcool-go-importgraphutil Edouard Klein
` (6 subsequent siblings)
31 siblings, 0 replies; 103+ messages in thread
From: Edouard Klein @ 2023-09-14 7:29 UTC (permalink / raw)
To: 65939; +Cc: Edouard Klein, Katherine Cox-Buday
* gnu/packages/golang.scm (go-github-com-neelance-sourcemap): New variable.
---
gnu/packages/golang.scm | 21 +++++++++++++++++++++
1 file changed, 21 insertions(+)
diff --git a/gnu/packages/golang.scm b/gnu/packages/golang.scm
index 7299b1b17a..982c64b660 100644
--- a/gnu/packages/golang.scm
+++ b/gnu/packages/golang.scm
@@ -13724,6 +13724,27 @@ (define-public go-github-com-neelance-astrewrite
(description #f)
(license license:bsd-2)))
+(define-public go-github-com-neelance-sourcemap
+ (package
+ (name "go-github-com-neelance-sourcemap")
+ (version "0.0.0-20200213170602-2833bce08e4c")
+ (source (origin
+ (method git-fetch)
+ (uri (git-reference
+ (url "https://github.com/neelance/sourcemap")
+ (commit (go-version->git-ref version))))
+ (file-name (git-file-name name version))
+ (sha256
+ (base32
+ "05ymjg1z9phf0wp4w058kvf13bmn4skv67chb3r04z69in8y8jih"))))
+ (build-system go-build-system)
+ (arguments
+ '(#:import-path "github.com/neelance/sourcemap"))
+ (home-page "https://github.com/neelance/sourcemap")
+ (synopsis #f)
+ (description #f)
+ (license license:bsd-2)))
+
(define-public go-github-com-vishvananda-netlink
(package
(name "go-github-com-vishvananda-netlink")
--
2.40.1
^ permalink raw reply related [flat|nested] 103+ messages in thread
* [bug#65939] [PATCH 27/33] gnu: Add go-github-com-shurcool-go-importgraphutil.
2023-09-14 7:29 ` [bug#65939] [PATCH 01/33] gnu: Add go-github-com-sourcegraph-go-lsp Edouard Klein
` (24 preceding siblings ...)
2023-09-14 7:29 ` [bug#65939] [PATCH 26/33] gnu: Add go-github-com-neelance-sourcemap Edouard Klein
@ 2023-09-14 7:29 ` Edouard Klein
2023-09-14 7:29 ` [bug#65939] [PATCH 28/33] gnu: Add go-github-com-inconshreveable-mousetrap Edouard Klein
` (5 subsequent siblings)
31 siblings, 0 replies; 103+ messages in thread
From: Edouard Klein @ 2023-09-14 7:29 UTC (permalink / raw)
To: 65939; +Cc: Edouard Klein, Katherine Cox-Buday
* gnu/packages/golang.scm (go-github-com-shurcool-go-importgraphutil): New variable.
---
gnu/packages/golang.scm | 23 +++++++++++++++++++++++
1 file changed, 23 insertions(+)
diff --git a/gnu/packages/golang.scm b/gnu/packages/golang.scm
index 982c64b660..1c5a72a0ac 100644
--- a/gnu/packages/golang.scm
+++ b/gnu/packages/golang.scm
@@ -13745,6 +13745,29 @@ (define-public go-github-com-neelance-sourcemap
(description #f)
(license license:bsd-2)))
+(define-public go-github-com-shurcool-go-importgraphutil
+ (package
+ (name "go-github-com-shurcool-go-importgraphutil")
+ (version "0.0.0-20230706063926-5fe729b41b3a")
+ (source (origin
+ (method git-fetch)
+ (uri (git-reference
+ (url "https://github.com/shurcooL/go")
+ (commit (go-version->git-ref version))))
+ (file-name (git-file-name name version))
+ (sha256
+ (base32
+ "0dym1msgjgywjhsl01frrqx4x4s96pcp1laavs9swz53z5ww95qq"))))
+ (build-system go-build-system)
+ (arguments
+ '(#:import-path "github.com/shurcooL/go/importgraphutil"
+ #:unpack-path "github.com/shurcooL/go"))
+ (propagated-inputs (list go-golang-org-x-tools))
+ (home-page "https://github.com/shurcooL/go")
+ (synopsis "go")
+ (description "Common Go code.")
+ (license license:expat)))
+
(define-public go-github-com-vishvananda-netlink
(package
(name "go-github-com-vishvananda-netlink")
--
2.40.1
^ permalink raw reply related [flat|nested] 103+ messages in thread
* [bug#65939] [PATCH 28/33] gnu: Add go-github-com-inconshreveable-mousetrap.
2023-09-14 7:29 ` [bug#65939] [PATCH 01/33] gnu: Add go-github-com-sourcegraph-go-lsp Edouard Klein
` (25 preceding siblings ...)
2023-09-14 7:29 ` [bug#65939] [PATCH 27/33] gnu: Add go-github-com-shurcool-go-importgraphutil Edouard Klein
@ 2023-09-14 7:29 ` Edouard Klein
2023-09-14 7:29 ` [bug#65939] [PATCH 29/33] gnu: Add go-github-com-u-root-uio-rand Edouard Klein
` (4 subsequent siblings)
31 siblings, 0 replies; 103+ messages in thread
From: Edouard Klein @ 2023-09-14 7:29 UTC (permalink / raw)
To: 65939; +Cc: Edouard Klein, Katherine Cox-Buday
* gnu/packages/golang.scm (go-github-com-inconshreveable-mousetrap): New variable.
---
gnu/packages/golang.scm | 21 +++++++++++++++++++++
1 file changed, 21 insertions(+)
diff --git a/gnu/packages/golang.scm b/gnu/packages/golang.scm
index 1c5a72a0ac..873afbf7dd 100644
--- a/gnu/packages/golang.scm
+++ b/gnu/packages/golang.scm
@@ -13768,6 +13768,27 @@ (define-public go-github-com-shurcool-go-importgraphutil
(description "Common Go code.")
(license license:expat)))
+(define-public go-github-com-inconshreveable-mousetrap
+ (package
+ (name "go-github-com-inconshreveable-mousetrap")
+ (version "1.1.0")
+ (source (origin
+ (method git-fetch)
+ (uri (git-reference
+ (url "https://github.com/inconshreveable/mousetrap")
+ (commit (string-append "v" version))))
+ (file-name (git-file-name name version))
+ (sha256
+ (base32
+ "14gjpvwgx3hmbd92jlwafgibiak2jqp25rq4q50cq89w8wgmhsax"))))
+ (build-system go-build-system)
+ (arguments
+ '(#:import-path "github.com/inconshreveable/mousetrap"))
+ (home-page "https://github.com/inconshreveable/mousetrap")
+ (synopsis "mousetrap")
+ (description "mousetrap is a tiny library that answers a single question.")
+ (license license:asl2.0)))
+
(define-public go-github-com-vishvananda-netlink
(package
(name "go-github-com-vishvananda-netlink")
--
2.40.1
^ permalink raw reply related [flat|nested] 103+ messages in thread
* [bug#65939] [PATCH 29/33] gnu: Add go-github-com-u-root-uio-rand.
2023-09-14 7:29 ` [bug#65939] [PATCH 01/33] gnu: Add go-github-com-sourcegraph-go-lsp Edouard Klein
` (26 preceding siblings ...)
2023-09-14 7:29 ` [bug#65939] [PATCH 28/33] gnu: Add go-github-com-inconshreveable-mousetrap Edouard Klein
@ 2023-09-14 7:29 ` Edouard Klein
2023-09-14 7:29 ` [bug#65939] [PATCH 30/33] gnu: Add go-github-com-insomniacslk-dhcp-dhcpv4 Edouard Klein
` (3 subsequent siblings)
31 siblings, 0 replies; 103+ messages in thread
From: Edouard Klein @ 2023-09-14 7:29 UTC (permalink / raw)
To: 65939; +Cc: Edouard Klein, Katherine Cox-Buday
* gnu/packages/golang.scm (go-github-com-u-root-uio-rand): New variable.
---
gnu/packages/golang.scm | 29 +++++++++++++++++++++++++++++
1 file changed, 29 insertions(+)
diff --git a/gnu/packages/golang.scm b/gnu/packages/golang.scm
index 873afbf7dd..198c07910e 100644
--- a/gnu/packages/golang.scm
+++ b/gnu/packages/golang.scm
@@ -13467,6 +13467,35 @@ (define-public go-github-com-u-root-uio-cp
(description #f)
(license license:bsd-3)))
+(define-public go-github-com-u-root-uio-rand
+ (package
+ (name "go-github-com-u-root-uio-rand")
+ (version "0.0.0-20230305220412-3e8cd9d6bf63")
+ (source (origin
+ (method git-fetch)
+ (uri (git-reference
+ (url "https://github.com/u-root/uio")
+ (commit (go-version->git-ref version))))
+ (file-name (git-file-name name version))
+ (sha256
+ (base32
+ "1gvv66ixkgwikjx8sjdknvrmd08wv2ia02q8n8y3mnkhrgyyx1yf"))))
+ (build-system go-build-system)
+ (arguments
+ (list
+ #:import-path "github.com/u-root/uio/rand"
+ #:unpack-path "github.com/u-root/uio"
+ #:install-source? #t
+ ;; Source-only package
+ #:tests? #f
+ #:phases
+ #~(modify-phases %standard-phases
+ ;; Source-only package
+ (delete 'build))))
+ (home-page "https://github.com/u-root/uio")
+ (synopsis "uio")
+ (description #f)
+ (license license:bsd-3)))
(define-public go-github-com-u-root-gobusybox-src-pkg-bb
(package
--
2.40.1
^ permalink raw reply related [flat|nested] 103+ messages in thread
* [bug#65939] [PATCH 30/33] gnu: Add go-github-com-insomniacslk-dhcp-dhcpv4.
2023-09-14 7:29 ` [bug#65939] [PATCH 01/33] gnu: Add go-github-com-sourcegraph-go-lsp Edouard Klein
` (27 preceding siblings ...)
2023-09-14 7:29 ` [bug#65939] [PATCH 29/33] gnu: Add go-github-com-u-root-uio-rand Edouard Klein
@ 2023-09-14 7:29 ` Edouard Klein
2023-09-14 7:29 ` [bug#65939] [PATCH 31/33] gnu: Add go-github-com-netflix-go-expect Edouard Klein
` (2 subsequent siblings)
31 siblings, 0 replies; 103+ messages in thread
From: Edouard Klein @ 2023-09-14 7:29 UTC (permalink / raw)
To: 65939; +Cc: Edouard Klein, Katherine Cox-Buday
* gnu/packages/golang.scm (go-github-com-insomniacslk-dhcp-dhcpv4): New variable.
---
gnu/packages/golang.scm | 45 +++++++++++++++++++++++++++++++++++++++++
1 file changed, 45 insertions(+)
diff --git a/gnu/packages/golang.scm b/gnu/packages/golang.scm
index 198c07910e..64c2964aa7 100644
--- a/gnu/packages/golang.scm
+++ b/gnu/packages/golang.scm
@@ -13753,6 +13753,51 @@ (define-public go-github-com-neelance-astrewrite
(description #f)
(license license:bsd-2)))
+(define-public go-github-com-insomniacslk-dhcp-dhcpv4
+ (package
+ (name "go-github-com-insomniacslk-dhcp-dhcpv4")
+ (version "0.0.0-20230908212754-65c27093e38a")
+ (source (origin
+ (method git-fetch)
+ (uri (git-reference
+ (url "https://github.com/insomniacslk/dhcp")
+ (commit (go-version->git-ref version))))
+ (file-name (git-file-name name version))
+ (sha256
+ (base32
+ "0vinhq7d7880hqsxy6xrji6sf7wdc2926zb0m9m4rhcr9hczkm4b"))))
+ (build-system go-build-system)
+ (arguments
+ `(#:import-path "github.com/insomniacslk/dhcp/dhcpv4"
+ #:unpack-path "github.com/insomniacslk/dhcp"
+ #:go ,go-1.20))
+ (propagated-inputs `(("go-gopkg-in-yaml-v3" ,go-gopkg-in-yaml-v3)
+ ("go-golang-org-x-sync" ,go-golang-org-x-sync)
+ ("go-github-com-stretchr-objx" ,go-github-com-stretchr-objx)
+ ("go-github.com-smartystreets-goconvey" ,go-github.com-smartystreets-goconvey)
+ ("go-github-com-pmezard-go-difflib" ,go-github-com-pmezard-go-difflib)
+ ("go-github-com-pierrec-lz4-v4" ,go-github-com-pierrec-lz4-v4)
+ ("go-github-com-mdlayher-socket" ,go-github-com-mdlayher-socket)
+ ("go-github-com-josharian-native" ,go-github-com-josharian-native)
+ ("go-github-com-davecgh-go-spew" ,go-github-com-davecgh-go-spew)
+ ("go-golang-org-x-sys" ,go-golang-org-x-sys)
+ ("go-golang-org-x-net" ,go-golang-org-x-net)
+ ("go-github-com-u-root-uio-uio" ,go-github-com-u-root-uio-uio)
+ ("go-github-com-u-root-uio-rand" ,go-github-com-u-root-uio-rand)
+ ("go-github-com-stretchr-testify" ,go-github-com-stretchr-testify)
+ ("go-github-com-mdlayher-packet" ,go-github-com-mdlayher-packet)
+ ("go-github-com-mdlayher-netlink" ,go-github-com-mdlayher-netlink)
+ ("go-github-com-jsimonetti-rtnetlink" ,go-github-com-jsimonetti-rtnetlink)
+ ("go-github-com-hugelgupf-socketpair" ,go-github-com-hugelgupf-socketpair)
+ ("go-github-com-google-go-cmp-cmp" ,go-github-com-google-go-cmp-cmp)
+ ("go-github-com-fanliao-go-promise" ,go-github-com-fanliao-go-promise)))
+ (home-page "https://github.com/insomniacslk/dhcp")
+ (synopsis "dhcp")
+ (description
+ "DHCPv4 and DHCPv6 decoding/encoding library with client and server code, written
+in Go.")
+ (license license:bsd-3)))
+
(define-public go-github-com-neelance-sourcemap
(package
(name "go-github-com-neelance-sourcemap")
--
2.40.1
^ permalink raw reply related [flat|nested] 103+ messages in thread
* [bug#65939] [PATCH 31/33] gnu: Add go-github-com-netflix-go-expect.
2023-09-14 7:29 ` [bug#65939] [PATCH 01/33] gnu: Add go-github-com-sourcegraph-go-lsp Edouard Klein
` (28 preceding siblings ...)
2023-09-14 7:29 ` [bug#65939] [PATCH 30/33] gnu: Add go-github-com-insomniacslk-dhcp-dhcpv4 Edouard Klein
@ 2023-09-14 7:29 ` Edouard Klein
2023-09-14 7:29 ` [bug#65939] [PATCH 32/33] gnu: Add go-cloud-google-com-go-workflows Edouard Klein
2023-09-14 7:29 ` [bug#65939] [PATCH 33/33] gnu: Add go-github-com-hugelgupf-p9-cmd-p9ufs Edouard Klein
31 siblings, 0 replies; 103+ messages in thread
From: Edouard Klein @ 2023-09-14 7:29 UTC (permalink / raw)
To: 65939; +Cc: Edouard Klein, Katherine Cox-Buday
* gnu/packages/golang.scm (go-github-com-netflix-go-expect): New variable.
---
gnu/packages/golang.scm | 27 +++++++++++++++++++++++++++
1 file changed, 27 insertions(+)
diff --git a/gnu/packages/golang.scm b/gnu/packages/golang.scm
index 64c2964aa7..fefc127e9d 100644
--- a/gnu/packages/golang.scm
+++ b/gnu/packages/golang.scm
@@ -13842,6 +13842,33 @@ (define-public go-github-com-shurcool-go-importgraphutil
(description "Common Go code.")
(license license:expat)))
+(define-public go-github-com-netflix-go-expect
+ (package
+ (name "go-github-com-netflix-go-expect")
+ (version "0.0.0-20220104043353-73e0943537d2")
+ (source (origin
+ (method git-fetch)
+ (uri (git-reference
+ (url "https://github.com/Netflix/go-expect")
+ (commit (go-version->git-ref version))))
+ (file-name (git-file-name name version))
+ (sha256
+ (base32
+ "0zkvhnc4ii6ygvcsj54ng0kql26rnny7l3hy1w61g88mxjsww1b9"))))
+ (build-system go-build-system)
+ (arguments
+ '(#:import-path "github.com/Netflix/go-expect"))
+ (propagated-inputs `(("go-github-com-stretchr-testify" ,go-github-com-stretchr-testify)
+ ("go-github-com-creack-pty" ,go-github-com-creack-pty)))
+ (home-page "https://github.com/Netflix/go-expect")
+ (synopsis "go-expect")
+ (description
+ "Package expect provides an expect-like interface to automate control of
+applications. It is unlike expect in that it does not spawn or manage process
+lifecycle. This package only focuses on expecting output and sending input
+through it's psuedoterminal.")
+ (license license:asl2.0)))
+
(define-public go-github-com-inconshreveable-mousetrap
(package
(name "go-github-com-inconshreveable-mousetrap")
--
2.40.1
^ permalink raw reply related [flat|nested] 103+ messages in thread
* [bug#65939] [PATCH 32/33] gnu: Add go-cloud-google-com-go-workflows.
2023-09-14 7:29 ` [bug#65939] [PATCH 01/33] gnu: Add go-github-com-sourcegraph-go-lsp Edouard Klein
` (29 preceding siblings ...)
2023-09-14 7:29 ` [bug#65939] [PATCH 31/33] gnu: Add go-github-com-netflix-go-expect Edouard Klein
@ 2023-09-14 7:29 ` Edouard Klein
2023-09-14 7:29 ` [bug#65939] [PATCH 33/33] gnu: Add go-github-com-hugelgupf-p9-cmd-p9ufs Edouard Klein
31 siblings, 0 replies; 103+ messages in thread
From: Edouard Klein @ 2023-09-14 7:29 UTC (permalink / raw)
To: 65939; +Cc: Edouard Klein, Katherine Cox-Buday
* gnu/packages/golang.scm (go-cloud-google-com-go-workflows): New variable.
---
gnu/packages/golang.scm | 32 ++++++++++++++++++++++++++++++++
1 file changed, 32 insertions(+)
diff --git a/gnu/packages/golang.scm b/gnu/packages/golang.scm
index fefc127e9d..f6d924d571 100644
--- a/gnu/packages/golang.scm
+++ b/gnu/packages/golang.scm
@@ -4800,6 +4800,38 @@ (define-public go-github-com-emicklei-go-restful
with the HTTP protocol definition.")
(license license:expat)))
+(define-public go-cloud-google-com-go-workflows
+ (package
+ (name "go-cloud-google-com-go-workflows")
+ (version "1.12.0")
+ (source
+ (origin
+ (method git-fetch)
+ (uri (git-reference
+ (url "https://github.com/googleapis/google-cloud-go")
+ (commit (string-append "workflows/v" version))))
+ (file-name (git-file-name name version))
+ (sha256
+ (base32
+ "0nz7lrvfc503jgdiywy2h09b96ixcldv0lgxhxabpf3kkgd0qdvj"))))
+ (build-system go-build-system)
+ (arguments
+ (list
+ #:import-path "cloud.google.com/go/workflows"
+ #:unpack-path "cloud.google.com/go"
+ #:install-source? #t
+ ;; Source-only package
+ #:tests? #f
+ #:phases
+ #~(modify-phases %standard-phases
+ ;; Source-only package
+ (delete 'build))))
+ (home-page
+ "https://pkg.go.dev/cloud.google.com/go/workflows")
+ (synopsis #f)
+ (description #f)
+ (license license:asl2.0)))
+
(define-public go-cloud-google-com-go-compute-metadata
(package
(name "go-cloud-google-com-go-compute-metadata")
--
2.40.1
^ permalink raw reply related [flat|nested] 103+ messages in thread
* [bug#65939] [PATCH 33/33] gnu: Add go-github-com-hugelgupf-p9-cmd-p9ufs.
2023-09-14 7:29 ` [bug#65939] [PATCH 01/33] gnu: Add go-github-com-sourcegraph-go-lsp Edouard Klein
` (30 preceding siblings ...)
2023-09-14 7:29 ` [bug#65939] [PATCH 32/33] gnu: Add go-cloud-google-com-go-workflows Edouard Klein
@ 2023-09-14 7:29 ` Edouard Klein
31 siblings, 0 replies; 103+ messages in thread
From: Edouard Klein @ 2023-09-14 7:29 UTC (permalink / raw)
To: 65939; +Cc: Edouard Klein, Katherine Cox-Buday
* gnu/packages/golang.scm (go-github-com-hugelgupf-p9-cmd-p9ufs): New variable.
---
gnu/packages/golang.scm | 27 +++++++++++++++++++++++++++
1 file changed, 27 insertions(+)
diff --git a/gnu/packages/golang.scm b/gnu/packages/golang.scm
index f6d924d571..34ed97da26 100644
--- a/gnu/packages/golang.scm
+++ b/gnu/packages/golang.scm
@@ -13985,6 +13985,33 @@ (define-public go-github-com-vishvananda-netns
privileges, so in most cases this code needs to be run as root.")
(license license:asl2.0)))
+(define-public go-github-com-hugelgupf-p9-cmd-p9ufs
+ (package
+ (name "go-github-com-hugelgupf-p9-cmd-p9ufs")
+ (version "0.3.0")
+ (source (origin
+ (method git-fetch)
+ (uri (git-reference
+ (url "https://github.com/hugelgupf/p9")
+ (commit (string-append "v" version))))
+ (file-name (git-file-name name version))
+ (sha256
+ (base32
+ "1ylbqh4in95xbj1pmdnxk3rhz0956gqg1m8sbivl30lyr6cmzphb"))))
+ (build-system go-build-system)
+ (arguments
+ `(#:import-path "github.com/hugelgupf/p9/cmd/p9ufs"
+ #:unpack-path "github.com/hugelgupf/p9"
+ #:go ,go-1.20))
+ (propagated-inputs `(("go-golang-org-x-sys" ,go-golang-org-x-sys)
+ ("go-github-com-u-root-uio-ulog" ,go-github-com-u-root-uio-ulog)))
+ (home-page "https://github.com/hugelgupf/p9")
+ (synopsis "p9")
+ (description
+ "p9 is a Golang 9P2000.L client and server originally written for @code{gVisor}.
+p9 supports Windows, BSD, and Linux on most Go-available architectures.")
+ (license license:asl2.0)))
+
(define-public go-github-com-gorilla-websocket
(package
(name "go-github-com-gorilla-websocket")
--
2.40.1
^ permalink raw reply related [flat|nested] 103+ messages in thread
* bug#65939: Acknowledgement ([PATCH 01/33] gnu: Add go-github-com-sourcegraph-go-lsp.)
2023-09-14 7:28 ` [bug#65939] Acknowledgement ([PATCH 01/33] gnu: Add go-github-com-sourcegraph-go-lsp.) Edouard Klein
@ 2023-09-14 7:35 ` Edouard Klein
0 siblings, 0 replies; 103+ messages in thread
From: Edouard Klein @ 2023-09-14 7:35 UTC (permalink / raw)
To: Edouard Klein; +Cc: 65939-done
Edouard Klein <edou@rdklein.fr> writes:
> close
>
> help-debbugs@gnu.org (GNU bug Tracking System) writes:
>
>> Thank you for filing a new bug report with debbugs.gnu.org.
>>
>> This is an automatically generated reply to let you know your message
>> has been received.
>>
>> Your message is being forwarded to the package maintainers and other
>> interested parties for their attention; they will reply in due course.
>>
>> As you requested using X-Debbugs-CC, your message was also forwarded to
>> Katherine Cox-Buday <cox.katherine.e+guix@gmail.com>
>> (after having been given a bug report number, if it did not have one).
>>
>> Your message has been sent to the package maintainer(s):
>> guix-patches@gnu.org
>>
>> If you wish to submit further information on this problem, please
>> send it to 65939@debbugs.gnu.org.
>>
>> Please do not send mail to help-debbugs@gnu.org unless you wish
>> to report a problem with the Bug-tracking system.
^ permalink raw reply [flat|nested] 103+ messages in thread
* bug#65940: Acknowledgement ([PATCH 07/33] gnu: Add go-github-com-hashicorp-go-multierror.)
[not found] ` <handler.65940.B.169467596126335.ack@debbugs.gnu.org>
@ 2023-09-14 7:39 ` Edouard Klein
0 siblings, 0 replies; 103+ messages in thread
From: Edouard Klein @ 2023-09-14 7:39 UTC (permalink / raw)
To: 65940-done
help-debbugs@gnu.org (GNU bug Tracking System) writes:
> Thank you for filing a new bug report with debbugs.gnu.org.
>
> This is an automatically generated reply to let you know your message
> has been received.
>
> Your message is being forwarded to the package maintainers and other
> interested parties for their attention; they will reply in due course.
>
> As you requested using X-Debbugs-CC, your message was also forwarded to
> Katherine Cox-Buday <cox.katherine.e+guix@gmail.com>
> (after having been given a bug report number, if it did not have one).
>
> Your message has been sent to the package maintainer(s):
> guix-patches@gnu.org
>
> If you wish to submit further information on this problem, please
> send it to 65940@debbugs.gnu.org.
>
> Please do not send mail to help-debbugs@gnu.org unless you wish
> to report a problem with the Bug-tracking system.
^ permalink raw reply [flat|nested] 103+ messages in thread
* bug#65941: Acknowledgement ([PATCH 05/33] gnu: Add go-github-com-vishvananda-netlink.)
[not found] ` <handler.65941.B.169467596126344.ack@debbugs.gnu.org>
@ 2023-09-14 7:39 ` Edouard Klein
0 siblings, 0 replies; 103+ messages in thread
From: Edouard Klein @ 2023-09-14 7:39 UTC (permalink / raw)
To: 65941-done
help-debbugs@gnu.org (GNU bug Tracking System) writes:
> Thank you for filing a new bug report with debbugs.gnu.org.
>
> This is an automatically generated reply to let you know your message
> has been received.
>
> Your message is being forwarded to the package maintainers and other
> interested parties for their attention; they will reply in due course.
>
> As you requested using X-Debbugs-CC, your message was also forwarded to
> Katherine Cox-Buday <cox.katherine.e+guix@gmail.com>
> (after having been given a bug report number, if it did not have one).
>
> Your message has been sent to the package maintainer(s):
> guix-patches@gnu.org
>
> If you wish to submit further information on this problem, please
> send it to 65941@debbugs.gnu.org.
>
> Please do not send mail to help-debbugs@gnu.org unless you wish
> to report a problem with the Bug-tracking system.
^ permalink raw reply [flat|nested] 103+ messages in thread
* bug#65942: Acknowledgement ([PATCH 02/33] doc: golang: Minor grammar fix on comment)
[not found] ` <handler.65942.B.169467596126351.ack@debbugs.gnu.org>
@ 2023-09-14 7:40 ` Edouard Klein
0 siblings, 0 replies; 103+ messages in thread
From: Edouard Klein @ 2023-09-14 7:40 UTC (permalink / raw)
To: 65942-done
help-debbugs@gnu.org (GNU bug Tracking System) writes:
> Thank you for filing a new bug report with debbugs.gnu.org.
>
> This is an automatically generated reply to let you know your message
> has been received.
>
> Your message is being forwarded to the package maintainers and other
> interested parties for their attention; they will reply in due course.
>
> As you requested using X-Debbugs-CC, your message was also forwarded to
> Katherine Cox-Buday <cox.katherine.e+guix@gmail.com>
> (after having been given a bug report number, if it did not have one).
>
> Your message has been sent to the package maintainer(s):
> guix-patches@gnu.org
>
> If you wish to submit further information on this problem, please
> send it to 65942@debbugs.gnu.org.
>
> Please do not send mail to help-debbugs@gnu.org unless you wish
> to report a problem with the Bug-tracking system.
^ permalink raw reply [flat|nested] 103+ messages in thread
* bug#65944: Acknowledgement ([PATCH 04/33] gnu: Add go-github-com-vishvananda-netns.)
[not found] ` <handler.65944.B.169467596226374.ack@debbugs.gnu.org>
@ 2023-09-14 7:40 ` Edouard Klein
0 siblings, 0 replies; 103+ messages in thread
From: Edouard Klein @ 2023-09-14 7:40 UTC (permalink / raw)
To: 65944-done
help-debbugs@gnu.org (GNU bug Tracking System) writes:
> Thank you for filing a new bug report with debbugs.gnu.org.
>
> This is an automatically generated reply to let you know your message
> has been received.
>
> Your message is being forwarded to the package maintainers and other
> interested parties for their attention; they will reply in due course.
>
> As you requested using X-Debbugs-CC, your message was also forwarded to
> Katherine Cox-Buday <cox.katherine.e+guix@gmail.com>
> (after having been given a bug report number, if it did not have one).
>
> Your message has been sent to the package maintainer(s):
> guix-patches@gnu.org
>
> If you wish to submit further information on this problem, please
> send it to 65944@debbugs.gnu.org.
>
> Please do not send mail to help-debbugs@gnu.org unless you wish
> to report a problem with the Bug-tracking system.
^ permalink raw reply [flat|nested] 103+ messages in thread
* bug#65945: Acknowledgement ([PATCH 06/33] gnu: Add go-github-com-hashicorp-errwrap.)
[not found] ` <handler.65945.B.169467596326381.ack@debbugs.gnu.org>
@ 2023-09-14 7:40 ` Edouard Klein
0 siblings, 0 replies; 103+ messages in thread
From: Edouard Klein @ 2023-09-14 7:40 UTC (permalink / raw)
To: 65945-done
help-debbugs@gnu.org (GNU bug Tracking System) writes:
> Thank you for filing a new bug report with debbugs.gnu.org.
>
> This is an automatically generated reply to let you know your message
> has been received.
>
> Your message is being forwarded to the package maintainers and other
> interested parties for their attention; they will reply in due course.
>
> As you requested using X-Debbugs-CC, your message was also forwarded to
> Katherine Cox-Buday <cox.katherine.e+guix@gmail.com>
> (after having been given a bug report number, if it did not have one).
>
> Your message has been sent to the package maintainer(s):
> guix-patches@gnu.org
>
> If you wish to submit further information on this problem, please
> send it to 65945@debbugs.gnu.org.
>
> Please do not send mail to help-debbugs@gnu.org unless you wish
> to report a problem with the Bug-tracking system.
^ permalink raw reply [flat|nested] 103+ messages in thread
* bug#65946: Acknowledgement ([PATCH 09/33] gnu: Add go-github-com-pierrec-lz4-v4.)
[not found] ` <handler.65946.B.169467596426391.ack@debbugs.gnu.org>
@ 2023-09-14 7:40 ` Edouard Klein
0 siblings, 0 replies; 103+ messages in thread
From: Edouard Klein @ 2023-09-14 7:40 UTC (permalink / raw)
To: 65946-done
help-debbugs@gnu.org (GNU bug Tracking System) writes:
> Thank you for filing a new bug report with debbugs.gnu.org.
>
> This is an automatically generated reply to let you know your message
> has been received.
>
> Your message is being forwarded to the package maintainers and other
> interested parties for their attention; they will reply in due course.
>
> As you requested using X-Debbugs-CC, your message was also forwarded to
> Katherine Cox-Buday <cox.katherine.e+guix@gmail.com>
> (after having been given a bug report number, if it did not have one).
>
> Your message has been sent to the package maintainer(s):
> guix-patches@gnu.org
>
> If you wish to submit further information on this problem, please
> send it to 65946@debbugs.gnu.org.
>
> Please do not send mail to help-debbugs@gnu.org unless you wish
> to report a problem with the Bug-tracking system.
^ permalink raw reply [flat|nested] 103+ messages in thread
* bug#65947: Acknowledgement ([PATCH 13/33] gnu: Add go-github-com-u-root-uio-cp.)
[not found] ` <handler.65947.B.169467598326565.ack@debbugs.gnu.org>
@ 2023-09-14 7:41 ` Edouard Klein
0 siblings, 0 replies; 103+ messages in thread
From: Edouard Klein @ 2023-09-14 7:41 UTC (permalink / raw)
To: 65947-done
help-debbugs@gnu.org (GNU bug Tracking System) writes:
> Thank you for filing a new bug report with debbugs.gnu.org.
>
> This is an automatically generated reply to let you know your message
> has been received.
>
> Your message is being forwarded to the package maintainers and other
> interested parties for their attention; they will reply in due course.
>
> As you requested using X-Debbugs-CC, your message was also forwarded to
> Katherine Cox-Buday <cox.katherine.e+guix@gmail.com>
> (after having been given a bug report number, if it did not have one).
>
> Your message has been sent to the package maintainer(s):
> guix-patches@gnu.org
>
> If you wish to submit further information on this problem, please
> send it to 65947@debbugs.gnu.org.
>
> Please do not send mail to help-debbugs@gnu.org unless you wish
> to report a problem with the Bug-tracking system.
^ permalink raw reply [flat|nested] 103+ messages in thread
* bug#65948: Acknowledgement ([PATCH 12/33] gnu: Add go-github-com-u-root-uio-ulog.)
[not found] ` <handler.65948.B.169467598426572.ack@debbugs.gnu.org>
@ 2023-09-14 7:41 ` Edouard Klein
0 siblings, 0 replies; 103+ messages in thread
From: Edouard Klein @ 2023-09-14 7:41 UTC (permalink / raw)
To: 65948-done
help-debbugs@gnu.org (GNU bug Tracking System) writes:
> Thank you for filing a new bug report with debbugs.gnu.org.
>
> This is an automatically generated reply to let you know your message
> has been received.
>
> Your message is being forwarded to the package maintainers and other
> interested parties for their attention; they will reply in due course.
>
> As you requested using X-Debbugs-CC, your message was also forwarded to
> Katherine Cox-Buday <cox.katherine.e+guix@gmail.com>
> (after having been given a bug report number, if it did not have one).
>
> Your message has been sent to the package maintainer(s):
> guix-patches@gnu.org
>
> If you wish to submit further information on this problem, please
> send it to 65948@debbugs.gnu.org.
>
> Please do not send mail to help-debbugs@gnu.org unless you wish
> to report a problem with the Bug-tracking system.
^ permalink raw reply [flat|nested] 103+ messages in thread
* bug#65949: Acknowledgement ([PATCH 18/33] gnu: Add go-github-com-fanliao-go-promise.)
[not found] ` <handler.65949.B.169467598426579.ack@debbugs.gnu.org>
@ 2023-09-14 7:41 ` Edouard Klein
0 siblings, 0 replies; 103+ messages in thread
From: Edouard Klein @ 2023-09-14 7:41 UTC (permalink / raw)
To: 65949-done
help-debbugs@gnu.org (GNU bug Tracking System) writes:
> Thank you for filing a new bug report with debbugs.gnu.org.
>
> This is an automatically generated reply to let you know your message
> has been received.
>
> Your message is being forwarded to the package maintainers and other
> interested parties for their attention; they will reply in due course.
>
> As you requested using X-Debbugs-CC, your message was also forwarded to
> Katherine Cox-Buday <cox.katherine.e+guix@gmail.com>
> (after having been given a bug report number, if it did not have one).
>
> Your message has been sent to the package maintainer(s):
> guix-patches@gnu.org
>
> If you wish to submit further information on this problem, please
> send it to 65949@debbugs.gnu.org.
>
> Please do not send mail to help-debbugs@gnu.org unless you wish
> to report a problem with the Bug-tracking system.
^ permalink raw reply [flat|nested] 103+ messages in thread
* bug#65950: Acknowledgement ([PATCH 03/33] gnu: Add go-src-elv-sh.)
[not found] ` <handler.65950.B.169467598526588.ack@debbugs.gnu.org>
@ 2023-09-14 7:44 ` Edouard Klein
0 siblings, 0 replies; 103+ messages in thread
From: Edouard Klein @ 2023-09-14 7:44 UTC (permalink / raw)
To: 65950-done
help-debbugs@gnu.org (GNU bug Tracking System) writes:
> Thank you for filing a new bug report with debbugs.gnu.org.
>
> This is an automatically generated reply to let you know your message
> has been received.
>
> Your message is being forwarded to the package maintainers and other
> interested parties for their attention; they will reply in due course.
>
> As you requested using X-Debbugs-CC, your message was also forwarded to
> Katherine Cox-Buday <cox.katherine.e+guix@gmail.com>
> (after having been given a bug report number, if it did not have one).
>
> Your message has been sent to the package maintainer(s):
> guix-patches@gnu.org
>
> If you wish to submit further information on this problem, please
> send it to 65950@debbugs.gnu.org.
>
> Please do not send mail to help-debbugs@gnu.org unless you wish
> to report a problem with the Bug-tracking system.
^ permalink raw reply [flat|nested] 103+ messages in thread
* bug#65951: Acknowledgement ([PATCH 14/33] gnu: Add go-github-com-u-root-gobusybox-src-pkg-bb.)
[not found] ` <handler.65951.B.169467598526595.ack@debbugs.gnu.org>
@ 2023-09-14 7:45 ` Edouard Klein
0 siblings, 0 replies; 103+ messages in thread
From: Edouard Klein @ 2023-09-14 7:45 UTC (permalink / raw)
To: 65951-done
help-debbugs@gnu.org (GNU bug Tracking System) writes:
> Thank you for filing a new bug report with debbugs.gnu.org.
>
> This is an automatically generated reply to let you know your message
> has been received.
>
> Your message is being forwarded to the package maintainers and other
> interested parties for their attention; they will reply in due course.
>
> As you requested using X-Debbugs-CC, your message was also forwarded to
> Katherine Cox-Buday <cox.katherine.e+guix@gmail.com>
> (after having been given a bug report number, if it did not have one).
>
> Your message has been sent to the package maintainer(s):
> guix-patches@gnu.org
>
> If you wish to submit further information on this problem, please
> send it to 65951@debbugs.gnu.org.
>
> Please do not send mail to help-debbugs@gnu.org unless you wish
> to report a problem with the Bug-tracking system.
^ permalink raw reply [flat|nested] 103+ messages in thread
* bug#65953: Acknowledgement ([PATCH 08/33] gnu: Add go-github-com-josharian-native.)
[not found] ` <handler.65953.B.169467598626610.ack@debbugs.gnu.org>
@ 2023-09-14 7:45 ` Edouard Klein
0 siblings, 0 replies; 103+ messages in thread
From: Edouard Klein @ 2023-09-14 7:45 UTC (permalink / raw)
To: 65953-done
help-debbugs@gnu.org (GNU bug Tracking System) writes:
> Thank you for filing a new bug report with debbugs.gnu.org.
>
> This is an automatically generated reply to let you know your message
> has been received.
>
> Your message is being forwarded to the package maintainers and other
> interested parties for their attention; they will reply in due course.
>
> As you requested using X-Debbugs-CC, your message was also forwarded to
> Katherine Cox-Buday <cox.katherine.e+guix@gmail.com>
> (after having been given a bug report number, if it did not have one).
>
> Your message has been sent to the package maintainer(s):
> guix-patches@gnu.org
>
> If you wish to submit further information on this problem, please
> send it to 65953@debbugs.gnu.org.
>
> Please do not send mail to help-debbugs@gnu.org unless you wish
> to report a problem with the Bug-tracking system.
^ permalink raw reply [flat|nested] 103+ messages in thread
* bug#65952: Acknowledgement ([PATCH 11/33] gnu: Fix go-github-com-u-root-uio.)
[not found] ` <handler.65952.B.169467598526602.ack@debbugs.gnu.org>
@ 2023-09-14 7:45 ` Edouard Klein
0 siblings, 0 replies; 103+ messages in thread
From: Edouard Klein @ 2023-09-14 7:45 UTC (permalink / raw)
To: 65952-done
help-debbugs@gnu.org (GNU bug Tracking System) writes:
> Thank you for filing a new bug report with debbugs.gnu.org.
>
> This is an automatically generated reply to let you know your message
> has been received.
>
> Your message is being forwarded to the package maintainers and other
> interested parties for their attention; they will reply in due course.
>
> As you requested using X-Debbugs-CC, your message was also forwarded to
> Katherine Cox-Buday <cox.katherine.e+guix@gmail.com>
> (after having been given a bug report number, if it did not have one).
>
> Your message has been sent to the package maintainer(s):
> guix-patches@gnu.org
>
> If you wish to submit further information on this problem, please
> send it to 65952@debbugs.gnu.org.
>
> Please do not send mail to help-debbugs@gnu.org unless you wish
> to report a problem with the Bug-tracking system.
^ permalink raw reply [flat|nested] 103+ messages in thread
* bug#65954: Acknowledgement ([PATCH 10/33] gnu: Add go-github-com-u-root-uio.)
[not found] ` <handler.65954.B.169467598626616.ack@debbugs.gnu.org>
@ 2023-09-14 7:46 ` Edouard Klein
0 siblings, 0 replies; 103+ messages in thread
From: Edouard Klein @ 2023-09-14 7:46 UTC (permalink / raw)
To: 65954-done
help-debbugs@gnu.org (GNU bug Tracking System) writes:
> Thank you for filing a new bug report with debbugs.gnu.org.
>
> This is an automatically generated reply to let you know your message
> has been received.
>
> Your message is being forwarded to the package maintainers and other
> interested parties for their attention; they will reply in due course.
>
> As you requested using X-Debbugs-CC, your message was also forwarded to
> Katherine Cox-Buday <cox.katherine.e+guix@gmail.com>
> (after having been given a bug report number, if it did not have one).
>
> Your message has been sent to the package maintainer(s):
> guix-patches@gnu.org
>
> If you wish to submit further information on this problem, please
> send it to 65954@debbugs.gnu.org.
>
> Please do not send mail to help-debbugs@gnu.org unless you wish
> to report a problem with the Bug-tracking system.
^ permalink raw reply [flat|nested] 103+ messages in thread
* bug#65955: Acknowledgement ([PATCH 15/33] gnu: Add go-github-com-mdlayher-socket.)
[not found] ` <handler.65955.B.169467598626624.ack@debbugs.gnu.org>
@ 2023-09-14 7:46 ` Edouard Klein
0 siblings, 0 replies; 103+ messages in thread
From: Edouard Klein @ 2023-09-14 7:46 UTC (permalink / raw)
To: 65955-done
help-debbugs@gnu.org (GNU bug Tracking System) writes:
> Thank you for filing a new bug report with debbugs.gnu.org.
>
> This is an automatically generated reply to let you know your message
> has been received.
>
> Your message is being forwarded to the package maintainers and other
> interested parties for their attention; they will reply in due course.
>
> As you requested using X-Debbugs-CC, your message was also forwarded to
> Katherine Cox-Buday <cox.katherine.e+guix@gmail.com>
> (after having been given a bug report number, if it did not have one).
>
> Your message has been sent to the package maintainer(s):
> guix-patches@gnu.org
>
> If you wish to submit further information on this problem, please
> send it to 65955@debbugs.gnu.org.
>
> Please do not send mail to help-debbugs@gnu.org unless you wish
> to report a problem with the Bug-tracking system.
^ permalink raw reply [flat|nested] 103+ messages in thread
* bug#65956: Acknowledgement ([PATCH 16/33] gnu: Add go-github-com-mdlayher-packet.)
[not found] ` <handler.65956.B.169467598726632.ack@debbugs.gnu.org>
@ 2023-09-14 7:46 ` Edouard Klein
0 siblings, 0 replies; 103+ messages in thread
From: Edouard Klein @ 2023-09-14 7:46 UTC (permalink / raw)
To: 65956-done
help-debbugs@gnu.org (GNU bug Tracking System) writes:
> Thank you for filing a new bug report with debbugs.gnu.org.
>
> This is an automatically generated reply to let you know your message
> has been received.
>
> Your message is being forwarded to the package maintainers and other
> interested parties for their attention; they will reply in due course.
>
> As you requested using X-Debbugs-CC, your message was also forwarded to
> Katherine Cox-Buday <cox.katherine.e+guix@gmail.com>
> (after having been given a bug report number, if it did not have one).
>
> Your message has been sent to the package maintainer(s):
> guix-patches@gnu.org
>
> If you wish to submit further information on this problem, please
> send it to 65956@debbugs.gnu.org.
>
> Please do not send mail to help-debbugs@gnu.org unless you wish
> to report a problem with the Bug-tracking system.
^ permalink raw reply [flat|nested] 103+ messages in thread
* bug#65958: Acknowledgement ([PATCH 17/33] gnu: Add go-github-com-klauspost-pgzip.)
[not found] ` <handler.65958.B.169467598826647.ack@debbugs.gnu.org>
@ 2023-09-14 7:46 ` Edouard Klein
0 siblings, 0 replies; 103+ messages in thread
From: Edouard Klein @ 2023-09-14 7:46 UTC (permalink / raw)
To: 65958-done
help-debbugs@gnu.org (GNU bug Tracking System) writes:
> Thank you for filing a new bug report with debbugs.gnu.org.
>
> This is an automatically generated reply to let you know your message
> has been received.
>
> Your message is being forwarded to the package maintainers and other
> interested parties for their attention; they will reply in due course.
>
> As you requested using X-Debbugs-CC, your message was also forwarded to
> Katherine Cox-Buday <cox.katherine.e+guix@gmail.com>
> (after having been given a bug report number, if it did not have one).
>
> Your message has been sent to the package maintainer(s):
> guix-patches@gnu.org
>
> If you wish to submit further information on this problem, please
> send it to 65958@debbugs.gnu.org.
>
> Please do not send mail to help-debbugs@gnu.org unless you wish
> to report a problem with the Bug-tracking system.
^ permalink raw reply [flat|nested] 103+ messages in thread
* bug#65957: Acknowledgement ([PATCH 23/33] gnu: Add go-github-com-mdlayher-netlink.)
[not found] ` <handler.65957.B.169467598726639.ack@debbugs.gnu.org>
@ 2023-09-14 7:46 ` Edouard Klein
0 siblings, 0 replies; 103+ messages in thread
From: Edouard Klein @ 2023-09-14 7:46 UTC (permalink / raw)
To: 65957-done
help-debbugs@gnu.org (GNU bug Tracking System) writes:
> Thank you for filing a new bug report with debbugs.gnu.org.
>
> This is an automatically generated reply to let you know your message
> has been received.
>
> Your message is being forwarded to the package maintainers and other
> interested parties for their attention; they will reply in due course.
>
> As you requested using X-Debbugs-CC, your message was also forwarded to
> Katherine Cox-Buday <cox.katherine.e+guix@gmail.com>
> (after having been given a bug report number, if it did not have one).
>
> Your message has been sent to the package maintainer(s):
> guix-patches@gnu.org
>
> If you wish to submit further information on this problem, please
> send it to 65957@debbugs.gnu.org.
>
> Please do not send mail to help-debbugs@gnu.org unless you wish
> to report a problem with the Bug-tracking system.
^ permalink raw reply [flat|nested] 103+ messages in thread
* bug#65959: Acknowledgement ([PATCH 20/33] gnu: go-golang-org-x-sys: Update to 0.12.0.)
[not found] ` <handler.65959.B.169467598826655.ack@debbugs.gnu.org>
@ 2023-09-14 7:46 ` Edouard Klein
0 siblings, 0 replies; 103+ messages in thread
From: Edouard Klein @ 2023-09-14 7:46 UTC (permalink / raw)
To: 65959-done
help-debbugs@gnu.org (GNU bug Tracking System) writes:
> Thank you for filing a new bug report with debbugs.gnu.org.
>
> This is an automatically generated reply to let you know your message
> has been received.
>
> Your message is being forwarded to the package maintainers and other
> interested parties for their attention; they will reply in due course.
>
> As you requested using X-Debbugs-CC, your message was also forwarded to
> Katherine Cox-Buday <cox.katherine.e+guix@gmail.com>
> (after having been given a bug report number, if it did not have one).
>
> Your message has been sent to the package maintainer(s):
> guix-patches@gnu.org
>
> If you wish to submit further information on this problem, please
> send it to 65959@debbugs.gnu.org.
>
> Please do not send mail to help-debbugs@gnu.org unless you wish
> to report a problem with the Bug-tracking system.
^ permalink raw reply [flat|nested] 103+ messages in thread
* bug#65960: Acknowledgement ([PATCH 25/33] gnu: Add go-github-com-neelance-astrewrite.)
[not found] ` <handler.65960.B.169467598826662.ack@debbugs.gnu.org>
@ 2023-09-14 7:46 ` Edouard Klein
0 siblings, 0 replies; 103+ messages in thread
From: Edouard Klein @ 2023-09-14 7:46 UTC (permalink / raw)
To: 65960-done
help-debbugs@gnu.org (GNU bug Tracking System) writes:
> Thank you for filing a new bug report with debbugs.gnu.org.
>
> This is an automatically generated reply to let you know your message
> has been received.
>
> Your message is being forwarded to the package maintainers and other
> interested parties for their attention; they will reply in due course.
>
> As you requested using X-Debbugs-CC, your message was also forwarded to
> Katherine Cox-Buday <cox.katherine.e+guix@gmail.com>
> (after having been given a bug report number, if it did not have one).
>
> Your message has been sent to the package maintainer(s):
> guix-patches@gnu.org
>
> If you wish to submit further information on this problem, please
> send it to 65960@debbugs.gnu.org.
>
> Please do not send mail to help-debbugs@gnu.org unless you wish
> to report a problem with the Bug-tracking system.
^ permalink raw reply [flat|nested] 103+ messages in thread
* bug#65961: Acknowledgement ([PATCH 22/33] gnu: Add go-github-com-cilium-ebpf.)
[not found] ` <handler.65961.B.169467598926669.ack@debbugs.gnu.org>
@ 2023-09-14 7:46 ` Edouard Klein
0 siblings, 0 replies; 103+ messages in thread
From: Edouard Klein @ 2023-09-14 7:46 UTC (permalink / raw)
To: 65961-done
help-debbugs@gnu.org (GNU bug Tracking System) writes:
> Thank you for filing a new bug report with debbugs.gnu.org.
>
> This is an automatically generated reply to let you know your message
> has been received.
>
> Your message is being forwarded to the package maintainers and other
> interested parties for their attention; they will reply in due course.
>
> As you requested using X-Debbugs-CC, your message was also forwarded to
> Katherine Cox-Buday <cox.katherine.e+guix@gmail.com>
> (after having been given a bug report number, if it did not have one).
>
> Your message has been sent to the package maintainer(s):
> guix-patches@gnu.org
>
> If you wish to submit further information on this problem, please
> send it to 65961@debbugs.gnu.org.
>
> Please do not send mail to help-debbugs@gnu.org unless you wish
> to report a problem with the Bug-tracking system.
^ permalink raw reply [flat|nested] 103+ messages in thread
* bug#65962: Acknowledgement ([PATCH 27/33] gnu: Add go-github-com-shurcool-go-importgraphutil.)
[not found] ` <handler.65962.B.169467598926676.ack@debbugs.gnu.org>
@ 2023-09-14 7:47 ` Edouard Klein
0 siblings, 0 replies; 103+ messages in thread
From: Edouard Klein @ 2023-09-14 7:47 UTC (permalink / raw)
To: 65962-done
help-debbugs@gnu.org (GNU bug Tracking System) writes:
> Thank you for filing a new bug report with debbugs.gnu.org.
>
> This is an automatically generated reply to let you know your message
> has been received.
>
> Your message is being forwarded to the package maintainers and other
> interested parties for their attention; they will reply in due course.
>
> As you requested using X-Debbugs-CC, your message was also forwarded to
> Katherine Cox-Buday <cox.katherine.e+guix@gmail.com>
> (after having been given a bug report number, if it did not have one).
>
> Your message has been sent to the package maintainer(s):
> guix-patches@gnu.org
>
> If you wish to submit further information on this problem, please
> send it to 65962@debbugs.gnu.org.
>
> Please do not send mail to help-debbugs@gnu.org unless you wish
> to report a problem with the Bug-tracking system.
^ permalink raw reply [flat|nested] 103+ messages in thread
* bug#65963: Acknowledgement ([PATCH 33/33] gnu: Add go-github-com-hugelgupf-p9-cmd-p9ufs.)
[not found] ` <handler.65963.B.169467599026683.ack@debbugs.gnu.org>
@ 2023-09-14 7:47 ` Edouard Klein
0 siblings, 0 replies; 103+ messages in thread
From: Edouard Klein @ 2023-09-14 7:47 UTC (permalink / raw)
To: 65963-done
help-debbugs@gnu.org (GNU bug Tracking System) writes:
> Thank you for filing a new bug report with debbugs.gnu.org.
>
> This is an automatically generated reply to let you know your message
> has been received.
>
> Your message is being forwarded to the package maintainers and other
> interested parties for their attention; they will reply in due course.
>
> As you requested using X-Debbugs-CC, your message was also forwarded to
> Katherine Cox-Buday <cox.katherine.e+guix@gmail.com>
> (after having been given a bug report number, if it did not have one).
>
> Your message has been sent to the package maintainer(s):
> guix-patches@gnu.org
>
> If you wish to submit further information on this problem, please
> send it to 65963@debbugs.gnu.org.
>
> Please do not send mail to help-debbugs@gnu.org unless you wish
> to report a problem with the Bug-tracking system.
^ permalink raw reply [flat|nested] 103+ messages in thread
* bug#65964: Acknowledgement ([PATCH 26/33] gnu: Add go-github-com-neelance-sourcemap.)
[not found] ` <handler.65964.B.169467599026690.ack@debbugs.gnu.org>
@ 2023-09-14 7:47 ` Edouard Klein
0 siblings, 0 replies; 103+ messages in thread
From: Edouard Klein @ 2023-09-14 7:47 UTC (permalink / raw)
To: 65964-done
help-debbugs@gnu.org (GNU bug Tracking System) writes:
> Thank you for filing a new bug report with debbugs.gnu.org.
>
> This is an automatically generated reply to let you know your message
> has been received.
>
> Your message is being forwarded to the package maintainers and other
> interested parties for their attention; they will reply in due course.
>
> As you requested using X-Debbugs-CC, your message was also forwarded to
> Katherine Cox-Buday <cox.katherine.e+guix@gmail.com>
> (after having been given a bug report number, if it did not have one).
>
> Your message has been sent to the package maintainer(s):
> guix-patches@gnu.org
>
> If you wish to submit further information on this problem, please
> send it to 65964@debbugs.gnu.org.
>
> Please do not send mail to help-debbugs@gnu.org unless you wish
> to report a problem with the Bug-tracking system.
^ permalink raw reply [flat|nested] 103+ messages in thread
* bug#65966: Acknowledgement ([PATCH 24/33] gnu: Add go-github-com-jsimonetti-rtnetlink.)
[not found] ` <handler.65966.B.169467599126704.ack@debbugs.gnu.org>
@ 2023-09-14 7:47 ` Edouard Klein
0 siblings, 0 replies; 103+ messages in thread
From: Edouard Klein @ 2023-09-14 7:47 UTC (permalink / raw)
To: 65966-done
help-debbugs@gnu.org (GNU bug Tracking System) writes:
> Thank you for filing a new bug report with debbugs.gnu.org.
>
> This is an automatically generated reply to let you know your message
> has been received.
>
> Your message is being forwarded to the package maintainers and other
> interested parties for their attention; they will reply in due course.
>
> As you requested using X-Debbugs-CC, your message was also forwarded to
> Katherine Cox-Buday <cox.katherine.e+guix@gmail.com>
> (after having been given a bug report number, if it did not have one).
>
> Your message has been sent to the package maintainer(s):
> guix-patches@gnu.org
>
> If you wish to submit further information on this problem, please
> send it to 65966@debbugs.gnu.org.
>
> Please do not send mail to help-debbugs@gnu.org unless you wish
> to report a problem with the Bug-tracking system.
^ permalink raw reply [flat|nested] 103+ messages in thread
* bug#65965: Acknowledgement ([PATCH 28/33] gnu: Add go-github-com-inconshreveable-mousetrap.)
[not found] ` <handler.65965.B.169467599026697.ack@debbugs.gnu.org>
@ 2023-09-14 7:47 ` Edouard Klein
0 siblings, 0 replies; 103+ messages in thread
From: Edouard Klein @ 2023-09-14 7:47 UTC (permalink / raw)
To: 65965-done
help-debbugs@gnu.org (GNU bug Tracking System) writes:
> Thank you for filing a new bug report with debbugs.gnu.org.
>
> This is an automatically generated reply to let you know your message
> has been received.
>
> Your message is being forwarded to the package maintainers and other
> interested parties for their attention; they will reply in due course.
>
> As you requested using X-Debbugs-CC, your message was also forwarded to
> Katherine Cox-Buday <cox.katherine.e+guix@gmail.com>
> (after having been given a bug report number, if it did not have one).
>
> Your message has been sent to the package maintainer(s):
> guix-patches@gnu.org
>
> If you wish to submit further information on this problem, please
> send it to 65965@debbugs.gnu.org.
>
> Please do not send mail to help-debbugs@gnu.org unless you wish
> to report a problem with the Bug-tracking system.
^ permalink raw reply [flat|nested] 103+ messages in thread
* bug#65968: Acknowledgement ([PATCH 30/33] gnu: Add go-github-com-insomniacslk-dhcp-dhcpv4.)
[not found] ` <handler.65968.B.169467599126719.ack@debbugs.gnu.org>
@ 2023-09-14 7:47 ` Edouard Klein
0 siblings, 0 replies; 103+ messages in thread
From: Edouard Klein @ 2023-09-14 7:47 UTC (permalink / raw)
To: 65968-done
help-debbugs@gnu.org (GNU bug Tracking System) writes:
> Thank you for filing a new bug report with debbugs.gnu.org.
>
> This is an automatically generated reply to let you know your message
> has been received.
>
> Your message is being forwarded to the package maintainers and other
> interested parties for their attention; they will reply in due course.
>
> As you requested using X-Debbugs-CC, your message was also forwarded to
> Katherine Cox-Buday <cox.katherine.e+guix@gmail.com>
> (after having been given a bug report number, if it did not have one).
>
> Your message has been sent to the package maintainer(s):
> guix-patches@gnu.org
>
> If you wish to submit further information on this problem, please
> send it to 65968@debbugs.gnu.org.
>
> Please do not send mail to help-debbugs@gnu.org unless you wish
> to report a problem with the Bug-tracking system.
^ permalink raw reply [flat|nested] 103+ messages in thread
* bug#65967: Acknowledgement ([PATCH 32/33] gnu: Add go-cloud-google-com-go-workflows.)
[not found] ` <handler.65967.B.169467599126712.ack@debbugs.gnu.org>
@ 2023-09-14 7:47 ` Edouard Klein
0 siblings, 0 replies; 103+ messages in thread
From: Edouard Klein @ 2023-09-14 7:47 UTC (permalink / raw)
To: 65967-done
help-debbugs@gnu.org (GNU bug Tracking System) writes:
> Thank you for filing a new bug report with debbugs.gnu.org.
>
> This is an automatically generated reply to let you know your message
> has been received.
>
> Your message is being forwarded to the package maintainers and other
> interested parties for their attention; they will reply in due course.
>
> As you requested using X-Debbugs-CC, your message was also forwarded to
> Katherine Cox-Buday <cox.katherine.e+guix@gmail.com>
> (after having been given a bug report number, if it did not have one).
>
> Your message has been sent to the package maintainer(s):
> guix-patches@gnu.org
>
> If you wish to submit further information on this problem, please
> send it to 65967@debbugs.gnu.org.
>
> Please do not send mail to help-debbugs@gnu.org unless you wish
> to report a problem with the Bug-tracking system.
^ permalink raw reply [flat|nested] 103+ messages in thread
* bug#65969: Acknowledgement ([PATCH 21/33] gnu: go-github-com-frankban-quicktest: Update to 1.14.6.)
[not found] ` <handler.65969.B.169467599226726.ack@debbugs.gnu.org>
@ 2023-09-14 7:47 ` Edouard Klein
0 siblings, 0 replies; 103+ messages in thread
From: Edouard Klein @ 2023-09-14 7:47 UTC (permalink / raw)
To: 65969-done
help-debbugs@gnu.org (GNU bug Tracking System) writes:
> Thank you for filing a new bug report with debbugs.gnu.org.
>
> This is an automatically generated reply to let you know your message
> has been received.
>
> Your message is being forwarded to the package maintainers and other
> interested parties for their attention; they will reply in due course.
>
> As you requested using X-Debbugs-CC, your message was also forwarded to
> Katherine Cox-Buday <cox.katherine.e+guix@gmail.com>
> (after having been given a bug report number, if it did not have one).
>
> Your message has been sent to the package maintainer(s):
> guix-patches@gnu.org
>
> If you wish to submit further information on this problem, please
> send it to 65969@debbugs.gnu.org.
>
> Please do not send mail to help-debbugs@gnu.org unless you wish
> to report a problem with the Bug-tracking system.
^ permalink raw reply [flat|nested] 103+ messages in thread
* bug#65970: Acknowledgement ([PATCH 19/33] gnu: Add go-github-com-hugelgupf-socketpair.)
[not found] ` <handler.65970.B.169467599226734.ack@debbugs.gnu.org>
@ 2023-09-14 7:48 ` Edouard Klein
0 siblings, 0 replies; 103+ messages in thread
From: Edouard Klein @ 2023-09-14 7:48 UTC (permalink / raw)
To: 65970-done
help-debbugs@gnu.org (GNU bug Tracking System) writes:
> Thank you for filing a new bug report with debbugs.gnu.org.
>
> This is an automatically generated reply to let you know your message
> has been received.
>
> Your message is being forwarded to the package maintainers and other
> interested parties for their attention; they will reply in due course.
>
> As you requested using X-Debbugs-CC, your message was also forwarded to
> Katherine Cox-Buday <cox.katherine.e+guix@gmail.com>
> (after having been given a bug report number, if it did not have one).
>
> Your message has been sent to the package maintainer(s):
> guix-patches@gnu.org
>
> If you wish to submit further information on this problem, please
> send it to 65970@debbugs.gnu.org.
>
> Please do not send mail to help-debbugs@gnu.org unless you wish
> to report a problem with the Bug-tracking system.
^ permalink raw reply [flat|nested] 103+ messages in thread
* bug#65971: Acknowledgement ([PATCH 31/33] gnu: Add go-github-com-netflix-go-expect.)
[not found] ` <handler.65971.B.169467599326741.ack@debbugs.gnu.org>
@ 2023-09-14 7:48 ` Edouard Klein
0 siblings, 0 replies; 103+ messages in thread
From: Edouard Klein @ 2023-09-14 7:48 UTC (permalink / raw)
To: 65971-done
help-debbugs@gnu.org (GNU bug Tracking System) writes:
> Thank you for filing a new bug report with debbugs.gnu.org.
>
> This is an automatically generated reply to let you know your message
> has been received.
>
> Your message is being forwarded to the package maintainers and other
> interested parties for their attention; they will reply in due course.
>
> As you requested using X-Debbugs-CC, your message was also forwarded to
> Katherine Cox-Buday <cox.katherine.e+guix@gmail.com>
> (after having been given a bug report number, if it did not have one).
>
> Your message has been sent to the package maintainer(s):
> guix-patches@gnu.org
>
> If you wish to submit further information on this problem, please
> send it to 65971@debbugs.gnu.org.
>
> Please do not send mail to help-debbugs@gnu.org unless you wish
> to report a problem with the Bug-tracking system.
^ permalink raw reply [flat|nested] 103+ messages in thread
* bug#65972: Acknowledgement ([PATCH 29/33] gnu: Add go-github-com-u-root-uio-rand.)
[not found] ` <handler.65972.B.169467599326747.ack@debbugs.gnu.org>
@ 2023-09-14 7:48 ` Edouard Klein
0 siblings, 0 replies; 103+ messages in thread
From: Edouard Klein @ 2023-09-14 7:48 UTC (permalink / raw)
To: 65972-done
help-debbugs@gnu.org (GNU bug Tracking System) writes:
> Thank you for filing a new bug report with debbugs.gnu.org.
>
> This is an automatically generated reply to let you know your message
> has been received.
>
> Your message is being forwarded to the package maintainers and other
> interested parties for their attention; they will reply in due course.
>
> As you requested using X-Debbugs-CC, your message was also forwarded to
> Katherine Cox-Buday <cox.katherine.e+guix@gmail.com>
> (after having been given a bug report number, if it did not have one).
>
> Your message has been sent to the package maintainer(s):
> guix-patches@gnu.org
>
> If you wish to submit further information on this problem, please
> send it to 65972@debbugs.gnu.org.
>
> Please do not send mail to help-debbugs@gnu.org unless you wish
> to report a problem with the Bug-tracking system.
^ permalink raw reply [flat|nested] 103+ messages in thread
* bug#65943: Acknowledgement ([PATCH 00/33] Some Go packages)
2023-09-14 7:25 ` [bug#65943] Acknowledgement ([PATCH 00/33] Some Go packages) Edouard Klein
@ 2023-09-14 7:48 ` Edouard Klein
0 siblings, 0 replies; 103+ messages in thread
From: Edouard Klein @ 2023-09-14 7:48 UTC (permalink / raw)
To: 65943-done
Edouard Klein <edou@rdklein.fr> writes:
> I would like to apologize for messing up git send-email and opening 33
> useless bugs instead of sending 33 patches on the same thread.
>
> This is clearly a mistake on my end, but I feel this is a good time to
> say that I find the git email workflow extremely clunky and confusing,
> and that it is a huge hurdle for me. There have been time where I did
> not submit patches to guix because I just couldn't be hassled to deal
> with git send-email.
>
> If I could just push a branch to a remote repo, I would do it in a
> heatbeat. I'll launch a thread on guix-devel about that.
>
> Again, this is my mistake here, sorry.
>
> I'll resend the patches on this thread and close the others.
>
> help-debbugs@gnu.org (GNU bug Tracking System) writes:
>
>> Thank you for filing a new bug report with debbugs.gnu.org.
>>
>> This is an automatically generated reply to let you know your message
>> has been received.
>>
>> Your message is being forwarded to the package maintainers and other
>> interested parties for their attention; they will reply in due course.
>>
>> As you requested using X-Debbugs-CC, your message was also forwarded to
>> Katherine Cox-Buday <cox.katherine.e+guix@gmail.com>
>> (after having been given a bug report number, if it did not have one).
>>
>> Your message has been sent to the package maintainer(s):
>> guix-patches@gnu.org
>>
>> If you wish to submit further information on this problem, please
>> send it to 65943@debbugs.gnu.org.
>>
>> Please do not send mail to help-debbugs@gnu.org unless you wish
>> to report a problem with the Bug-tracking system.
^ permalink raw reply [flat|nested] 103+ messages in thread
end of thread, other threads:[~2023-09-14 7:50 UTC | newest]
Thread overview: 103+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2023-09-14 7:09 [bug#65943] [PATCH 00/33] Some Go packages Edouard Klein
2023-09-14 7:09 ` [bug#65939] [PATCH 01/33] gnu: Add go-github-com-sourcegraph-go-lsp Edouard Klein
[not found] ` <handler.65939.B.169467595726308.ack@debbugs.gnu.org>
2023-09-14 7:28 ` [bug#65939] Acknowledgement ([PATCH 01/33] gnu: Add go-github-com-sourcegraph-go-lsp.) Edouard Klein
2023-09-14 7:35 ` bug#65939: " Edouard Klein
2023-09-14 7:29 ` [bug#65939] [PATCH 01/33] gnu: Add go-github-com-sourcegraph-go-lsp Edouard Klein
2023-09-14 7:29 ` [bug#65939] [PATCH 02/33] doc: golang: Minor grammar fix on comment Edouard Klein
2023-09-14 7:29 ` [bug#65939] [PATCH 03/33] gnu: Add go-src-elv-sh Edouard Klein
2023-09-14 7:29 ` [bug#65939] [PATCH 04/33] gnu: Add go-github-com-vishvananda-netns Edouard Klein
2023-09-14 7:29 ` [bug#65939] [PATCH 05/33] gnu: Add go-github-com-vishvananda-netlink Edouard Klein
2023-09-14 7:29 ` [bug#65939] [PATCH 06/33] gnu: Add go-github-com-hashicorp-errwrap Edouard Klein
2023-09-14 7:29 ` [bug#65939] [PATCH 07/33] gnu: Add go-github-com-hashicorp-go-multierror Edouard Klein
2023-09-14 7:29 ` [bug#65939] [PATCH 08/33] gnu: Add go-github-com-josharian-native Edouard Klein
2023-09-14 7:29 ` [bug#65939] [PATCH 09/33] gnu: Add go-github-com-pierrec-lz4-v4 Edouard Klein
2023-09-14 7:29 ` [bug#65939] [PATCH 10/33] gnu: Add go-github-com-u-root-uio Edouard Klein
2023-09-14 7:29 ` [bug#65939] [PATCH 11/33] gnu: Fix go-github-com-u-root-uio Edouard Klein
2023-09-14 7:29 ` [bug#65939] [PATCH 12/33] gnu: Add go-github-com-u-root-uio-ulog Edouard Klein
2023-09-14 7:29 ` [bug#65939] [PATCH 13/33] gnu: Add go-github-com-u-root-uio-cp Edouard Klein
2023-09-14 7:29 ` [bug#65939] [PATCH 14/33] gnu: Add go-github-com-u-root-gobusybox-src-pkg-bb Edouard Klein
2023-09-14 7:29 ` [bug#65939] [PATCH 15/33] gnu: Add go-github-com-mdlayher-socket Edouard Klein
2023-09-14 7:29 ` [bug#65939] [PATCH 16/33] gnu: Add go-github-com-mdlayher-packet Edouard Klein
2023-09-14 7:29 ` [bug#65939] [PATCH 17/33] gnu: Add go-github-com-klauspost-pgzip Edouard Klein
2023-09-14 7:29 ` [bug#65939] [PATCH 18/33] gnu: Add go-github-com-fanliao-go-promise Edouard Klein
2023-09-14 7:29 ` [bug#65939] [PATCH 19/33] gnu: Add go-github-com-hugelgupf-socketpair Edouard Klein
2023-09-14 7:29 ` [bug#65939] [PATCH 20/33] gnu: go-golang-org-x-sys: Update to 0.12.0 Edouard Klein
2023-09-14 7:29 ` [bug#65939] [PATCH 21/33] gnu: go-github-com-frankban-quicktest: Update to 1.14.6 Edouard Klein
2023-09-14 7:29 ` [bug#65939] [PATCH 22/33] gnu: Add go-github-com-cilium-ebpf Edouard Klein
2023-09-14 7:29 ` [bug#65939] [PATCH 23/33] gnu: Add go-github-com-mdlayher-netlink Edouard Klein
2023-09-14 7:29 ` [bug#65939] [PATCH 24/33] gnu: Add go-github-com-jsimonetti-rtnetlink Edouard Klein
2023-09-14 7:29 ` [bug#65939] [PATCH 25/33] gnu: Add go-github-com-neelance-astrewrite Edouard Klein
2023-09-14 7:29 ` [bug#65939] [PATCH 26/33] gnu: Add go-github-com-neelance-sourcemap Edouard Klein
2023-09-14 7:29 ` [bug#65939] [PATCH 27/33] gnu: Add go-github-com-shurcool-go-importgraphutil Edouard Klein
2023-09-14 7:29 ` [bug#65939] [PATCH 28/33] gnu: Add go-github-com-inconshreveable-mousetrap Edouard Klein
2023-09-14 7:29 ` [bug#65939] [PATCH 29/33] gnu: Add go-github-com-u-root-uio-rand Edouard Klein
2023-09-14 7:29 ` [bug#65939] [PATCH 30/33] gnu: Add go-github-com-insomniacslk-dhcp-dhcpv4 Edouard Klein
2023-09-14 7:29 ` [bug#65939] [PATCH 31/33] gnu: Add go-github-com-netflix-go-expect Edouard Klein
2023-09-14 7:29 ` [bug#65939] [PATCH 32/33] gnu: Add go-cloud-google-com-go-workflows Edouard Klein
2023-09-14 7:29 ` [bug#65939] [PATCH 33/33] gnu: Add go-github-com-hugelgupf-p9-cmd-p9ufs Edouard Klein
2023-09-14 7:09 ` [bug#65942] [PATCH 02/33] doc: golang: Minor grammar fix on comment Edouard Klein
[not found] ` <handler.65942.B.169467596126351.ack@debbugs.gnu.org>
2023-09-14 7:40 ` bug#65942: Acknowledgement ([PATCH 02/33] doc: golang: Minor grammar fix on comment) Edouard Klein
2023-09-14 7:09 ` [bug#65950] [PATCH 03/33] gnu: Add go-src-elv-sh Edouard Klein
[not found] ` <handler.65950.B.169467598526588.ack@debbugs.gnu.org>
2023-09-14 7:44 ` bug#65950: Acknowledgement ([PATCH 03/33] gnu: Add go-src-elv-sh.) Edouard Klein
2023-09-14 7:09 ` [bug#65944] [PATCH 04/33] gnu: Add go-github-com-vishvananda-netns Edouard Klein
[not found] ` <handler.65944.B.169467596226374.ack@debbugs.gnu.org>
2023-09-14 7:40 ` bug#65944: Acknowledgement ([PATCH 04/33] gnu: Add go-github-com-vishvananda-netns.) Edouard Klein
2023-09-14 7:09 ` [bug#65941] [PATCH 05/33] gnu: Add go-github-com-vishvananda-netlink Edouard Klein
[not found] ` <handler.65941.B.169467596126344.ack@debbugs.gnu.org>
2023-09-14 7:39 ` bug#65941: Acknowledgement ([PATCH 05/33] gnu: Add go-github-com-vishvananda-netlink.) Edouard Klein
2023-09-14 7:09 ` [bug#65945] [PATCH 06/33] gnu: Add go-github-com-hashicorp-errwrap Edouard Klein
[not found] ` <handler.65945.B.169467596326381.ack@debbugs.gnu.org>
2023-09-14 7:40 ` bug#65945: Acknowledgement ([PATCH 06/33] gnu: Add go-github-com-hashicorp-errwrap.) Edouard Klein
2023-09-14 7:09 ` [bug#65940] [PATCH 07/33] gnu: Add go-github-com-hashicorp-go-multierror Edouard Klein
[not found] ` <handler.65940.B.169467596126335.ack@debbugs.gnu.org>
2023-09-14 7:39 ` bug#65940: Acknowledgement ([PATCH 07/33] gnu: Add go-github-com-hashicorp-go-multierror.) Edouard Klein
2023-09-14 7:09 ` [bug#65953] [PATCH 08/33] gnu: Add go-github-com-josharian-native Edouard Klein
[not found] ` <handler.65953.B.169467598626610.ack@debbugs.gnu.org>
2023-09-14 7:45 ` bug#65953: Acknowledgement ([PATCH 08/33] gnu: Add go-github-com-josharian-native.) Edouard Klein
2023-09-14 7:09 ` [bug#65946] [PATCH 09/33] gnu: Add go-github-com-pierrec-lz4-v4 Edouard Klein
[not found] ` <handler.65946.B.169467596426391.ack@debbugs.gnu.org>
2023-09-14 7:40 ` bug#65946: Acknowledgement ([PATCH 09/33] gnu: Add go-github-com-pierrec-lz4-v4.) Edouard Klein
2023-09-14 7:09 ` [bug#65954] [PATCH 10/33] gnu: Add go-github-com-u-root-uio Edouard Klein
[not found] ` <handler.65954.B.169467598626616.ack@debbugs.gnu.org>
2023-09-14 7:46 ` bug#65954: Acknowledgement ([PATCH 10/33] gnu: Add go-github-com-u-root-uio.) Edouard Klein
2023-09-14 7:09 ` [bug#65952] [PATCH 11/33] gnu: Fix go-github-com-u-root-uio Edouard Klein
[not found] ` <handler.65952.B.169467598526602.ack@debbugs.gnu.org>
2023-09-14 7:45 ` bug#65952: Acknowledgement ([PATCH 11/33] gnu: Fix go-github-com-u-root-uio.) Edouard Klein
2023-09-14 7:09 ` [bug#65948] [PATCH 12/33] gnu: Add go-github-com-u-root-uio-ulog Edouard Klein
[not found] ` <handler.65948.B.169467598426572.ack@debbugs.gnu.org>
2023-09-14 7:41 ` bug#65948: Acknowledgement ([PATCH 12/33] gnu: Add go-github-com-u-root-uio-ulog.) Edouard Klein
2023-09-14 7:09 ` [bug#65947] [PATCH 13/33] gnu: Add go-github-com-u-root-uio-cp Edouard Klein
[not found] ` <handler.65947.B.169467598326565.ack@debbugs.gnu.org>
2023-09-14 7:41 ` bug#65947: Acknowledgement ([PATCH 13/33] gnu: Add go-github-com-u-root-uio-cp.) Edouard Klein
2023-09-14 7:09 ` [bug#65951] [PATCH 14/33] gnu: Add go-github-com-u-root-gobusybox-src-pkg-bb Edouard Klein
[not found] ` <handler.65951.B.169467598526595.ack@debbugs.gnu.org>
2023-09-14 7:45 ` bug#65951: Acknowledgement ([PATCH 14/33] gnu: Add go-github-com-u-root-gobusybox-src-pkg-bb.) Edouard Klein
2023-09-14 7:09 ` [bug#65955] [PATCH 15/33] gnu: Add go-github-com-mdlayher-socket Edouard Klein
[not found] ` <handler.65955.B.169467598626624.ack@debbugs.gnu.org>
2023-09-14 7:46 ` bug#65955: Acknowledgement ([PATCH 15/33] gnu: Add go-github-com-mdlayher-socket.) Edouard Klein
2023-09-14 7:09 ` [bug#65956] [PATCH 16/33] gnu: Add go-github-com-mdlayher-packet Edouard Klein
[not found] ` <handler.65956.B.169467598726632.ack@debbugs.gnu.org>
2023-09-14 7:46 ` bug#65956: Acknowledgement ([PATCH 16/33] gnu: Add go-github-com-mdlayher-packet.) Edouard Klein
2023-09-14 7:09 ` [bug#65958] [PATCH 17/33] gnu: Add go-github-com-klauspost-pgzip Edouard Klein
[not found] ` <handler.65958.B.169467598826647.ack@debbugs.gnu.org>
2023-09-14 7:46 ` bug#65958: Acknowledgement ([PATCH 17/33] gnu: Add go-github-com-klauspost-pgzip.) Edouard Klein
2023-09-14 7:09 ` [bug#65949] [PATCH 18/33] gnu: Add go-github-com-fanliao-go-promise Edouard Klein
[not found] ` <handler.65949.B.169467598426579.ack@debbugs.gnu.org>
2023-09-14 7:41 ` bug#65949: Acknowledgement ([PATCH 18/33] gnu: Add go-github-com-fanliao-go-promise.) Edouard Klein
2023-09-14 7:09 ` [bug#65970] [PATCH 19/33] gnu: Add go-github-com-hugelgupf-socketpair Edouard Klein
[not found] ` <handler.65970.B.169467599226734.ack@debbugs.gnu.org>
2023-09-14 7:48 ` bug#65970: Acknowledgement ([PATCH 19/33] gnu: Add go-github-com-hugelgupf-socketpair.) Edouard Klein
2023-09-14 7:09 ` [bug#65959] [PATCH 20/33] gnu: go-golang-org-x-sys: Update to 0.12.0 Edouard Klein
[not found] ` <handler.65959.B.169467598826655.ack@debbugs.gnu.org>
2023-09-14 7:46 ` bug#65959: Acknowledgement ([PATCH 20/33] gnu: go-golang-org-x-sys: Update to 0.12.0.) Edouard Klein
2023-09-14 7:09 ` [bug#65969] [PATCH 21/33] gnu: go-github-com-frankban-quicktest: Update to 1.14.6 Edouard Klein
[not found] ` <handler.65969.B.169467599226726.ack@debbugs.gnu.org>
2023-09-14 7:47 ` bug#65969: Acknowledgement ([PATCH 21/33] gnu: go-github-com-frankban-quicktest: Update to 1.14.6.) Edouard Klein
2023-09-14 7:09 ` [bug#65961] [PATCH 22/33] gnu: Add go-github-com-cilium-ebpf Edouard Klein
[not found] ` <handler.65961.B.169467598926669.ack@debbugs.gnu.org>
2023-09-14 7:46 ` bug#65961: Acknowledgement ([PATCH 22/33] gnu: Add go-github-com-cilium-ebpf.) Edouard Klein
2023-09-14 7:09 ` [bug#65957] [PATCH 23/33] gnu: Add go-github-com-mdlayher-netlink Edouard Klein
[not found] ` <handler.65957.B.169467598726639.ack@debbugs.gnu.org>
2023-09-14 7:46 ` bug#65957: Acknowledgement ([PATCH 23/33] gnu: Add go-github-com-mdlayher-netlink.) Edouard Klein
2023-09-14 7:09 ` [bug#65966] [PATCH 24/33] gnu: Add go-github-com-jsimonetti-rtnetlink Edouard Klein
[not found] ` <handler.65966.B.169467599126704.ack@debbugs.gnu.org>
2023-09-14 7:47 ` bug#65966: Acknowledgement ([PATCH 24/33] gnu: Add go-github-com-jsimonetti-rtnetlink.) Edouard Klein
2023-09-14 7:09 ` [bug#65960] [PATCH 25/33] gnu: Add go-github-com-neelance-astrewrite Edouard Klein
[not found] ` <handler.65960.B.169467598826662.ack@debbugs.gnu.org>
2023-09-14 7:46 ` bug#65960: Acknowledgement ([PATCH 25/33] gnu: Add go-github-com-neelance-astrewrite.) Edouard Klein
2023-09-14 7:09 ` [bug#65964] [PATCH 26/33] gnu: Add go-github-com-neelance-sourcemap Edouard Klein
[not found] ` <handler.65964.B.169467599026690.ack@debbugs.gnu.org>
2023-09-14 7:47 ` bug#65964: Acknowledgement ([PATCH 26/33] gnu: Add go-github-com-neelance-sourcemap.) Edouard Klein
2023-09-14 7:09 ` [bug#65962] [PATCH 27/33] gnu: Add go-github-com-shurcool-go-importgraphutil Edouard Klein
[not found] ` <handler.65962.B.169467598926676.ack@debbugs.gnu.org>
2023-09-14 7:47 ` bug#65962: Acknowledgement ([PATCH 27/33] gnu: Add go-github-com-shurcool-go-importgraphutil.) Edouard Klein
2023-09-14 7:09 ` [bug#65965] [PATCH 28/33] gnu: Add go-github-com-inconshreveable-mousetrap Edouard Klein
[not found] ` <handler.65965.B.169467599026697.ack@debbugs.gnu.org>
2023-09-14 7:47 ` bug#65965: Acknowledgement ([PATCH 28/33] gnu: Add go-github-com-inconshreveable-mousetrap.) Edouard Klein
2023-09-14 7:09 ` [bug#65972] [PATCH 29/33] gnu: Add go-github-com-u-root-uio-rand Edouard Klein
[not found] ` <handler.65972.B.169467599326747.ack@debbugs.gnu.org>
2023-09-14 7:48 ` bug#65972: Acknowledgement ([PATCH 29/33] gnu: Add go-github-com-u-root-uio-rand.) Edouard Klein
2023-09-14 7:09 ` [bug#65968] [PATCH 30/33] gnu: Add go-github-com-insomniacslk-dhcp-dhcpv4 Edouard Klein
[not found] ` <handler.65968.B.169467599126719.ack@debbugs.gnu.org>
2023-09-14 7:47 ` bug#65968: Acknowledgement ([PATCH 30/33] gnu: Add go-github-com-insomniacslk-dhcp-dhcpv4.) Edouard Klein
2023-09-14 7:09 ` [bug#65971] [PATCH 31/33] gnu: Add go-github-com-netflix-go-expect Edouard Klein
[not found] ` <handler.65971.B.169467599326741.ack@debbugs.gnu.org>
2023-09-14 7:48 ` bug#65971: Acknowledgement ([PATCH 31/33] gnu: Add go-github-com-netflix-go-expect.) Edouard Klein
2023-09-14 7:09 ` [bug#65967] [PATCH 32/33] gnu: Add go-cloud-google-com-go-workflows Edouard Klein
[not found] ` <handler.65967.B.169467599126712.ack@debbugs.gnu.org>
2023-09-14 7:47 ` bug#65967: Acknowledgement ([PATCH 32/33] gnu: Add go-cloud-google-com-go-workflows.) Edouard Klein
2023-09-14 7:09 ` [bug#65963] [PATCH 33/33] gnu: Add go-github-com-hugelgupf-p9-cmd-p9ufs Edouard Klein
[not found] ` <handler.65963.B.169467599026683.ack@debbugs.gnu.org>
2023-09-14 7:47 ` bug#65963: Acknowledgement ([PATCH 33/33] gnu: Add go-github-com-hugelgupf-p9-cmd-p9ufs.) Edouard Klein
[not found] ` <handler.65943.B.169467596226359.ack@debbugs.gnu.org>
2023-09-14 7:25 ` [bug#65943] Acknowledgement ([PATCH 00/33] Some Go packages) Edouard Klein
2023-09-14 7:48 ` bug#65943: " Edouard Klein
Code repositories for project(s) associated with this public inbox
https://git.savannah.gnu.org/cgit/guix.git
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 read-only IMAP folder(s) and NNTP newsgroup(s).