GNU bug report logs - #73940
[PATCH] gnu: gvisor-tap-vsock: Update to 0.7.5.

Previous Next

Package: guix-patches;

Reported by: Tomas Volf <~@wolfsden.cz>

Date: Mon, 21 Oct 2024 21:06:02 UTC

Severity: normal

Tags: patch

Done: Andreas Enge <andreas <at> enge.fr>

Bug is archived. No further changes may be made.

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

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

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


Report forwarded to guix-patches <at> gnu.org:
bug#73940; Package guix-patches. (Mon, 21 Oct 2024 21:06:02 GMT) Full text and rfc822 format available.

Acknowledgement sent to Tomas Volf <~@wolfsden.cz>:
New bug report received and forwarded. Copy sent to guix-patches <at> gnu.org. (Mon, 21 Oct 2024 21:06:02 GMT) Full text and rfc822 format available.

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

From: Tomas Volf <~@wolfsden.cz>
To: guix-patches <at> gnu.org
Cc: Tomas Volf <~@wolfsden.cz>
Subject: [PATCH] gnu: gvisor-tap-vsock: Update to 0.7.5.
Date: Mon, 21 Oct 2024 23:04:43 +0200
* gnu/packages/containers.scm (gvisor-tap-vsock): Update to 0.7.5.
[native-inputs]: Use go-1.21.

Change-Id: Ia591a145c519b4f0cdfcd20a76ccdb625c097676
---
 gnu/packages/containers.scm | 6 +++---
 1 file changed, 3 insertions(+), 3 deletions(-)

diff --git a/gnu/packages/containers.scm b/gnu/packages/containers.scm
index 891e7339e7..4481f8d1f2 100644
--- a/gnu/packages/containers.scm
+++ b/gnu/packages/containers.scm
@@ -386,7 +386,7 @@ (define-public cni-plugins
 (define-public gvisor-tap-vsock
   (package
     (name "gvisor-tap-vsock")
-    (version "0.7.3")
+    (version "0.7.5")
     (source (origin
               (method git-fetch)
               (uri (git-reference
@@ -395,7 +395,7 @@ (define-public gvisor-tap-vsock
               (file-name (git-file-name name version))
               (sha256
                (base32
-                "1q1zism0c63k2aq6yhkjqc3b2zsm4lwn0bk39p2kl79h798wfyp4"))))
+                "0xf0dy75f79mia0932am8qsg5yyvfaxaiqwdl9djh6sqh03vy2i6"))))
     (build-system gnu-build-system)
     (arguments
      (list
@@ -421,7 +421,7 @@ (define-public gvisor-tap-vsock
           (replace 'install
             (lambda _
               (install-file "bin/gvproxy" (string-append #$output "/bin")))))))
-    (native-inputs (list go-1.20))
+    (native-inputs (list go-1.21))
     (home-page "https://github.com/containers/gvisor-tap-vsock")
     (synopsis "Network stack for virtualization based on gVisor")
     (description "This package provides a replacement for @code{libslirp} and
-- 
2.46.0





Information forwarded to guix-patches <at> gnu.org:
bug#73940; Package guix-patches. (Tue, 27 May 2025 20:58:01 GMT) Full text and rfc822 format available.

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

From: Tomas Volf <~@wolfsden.cz>
To: 73940 <at> debbugs.gnu.org
Cc: Tomas Volf <~@wolfsden.cz>
Subject: [PATCH v2] gnu: gvisor-tap-vsock: Update to 0.8.6.
Date: Tue, 27 May 2025 22:57:03 +0200
* gnu/packages/containers.scm (gvisor-tap-vsock): Update to 0.8.6.
[arguments]<#:phases>{'prune-tests}: Adjust.
[native-inputs]: Use go-1.23.

Change-Id: Ia591a145c519b4f0cdfcd20a76ccdb625c097676
---
 gnu/packages/containers.scm | 16 ++++++++++++----
 1 file changed, 12 insertions(+), 4 deletions(-)

diff --git a/gnu/packages/containers.scm b/gnu/packages/containers.scm
index be3e05f862..51457a85d0 100644
--- a/gnu/packages/containers.scm
+++ b/gnu/packages/containers.scm
@@ -391,7 +391,7 @@ (define-public cni-plugins
 (define-public gvisor-tap-vsock
   (package
     (name "gvisor-tap-vsock")
-    (version "0.7.3")
+    (version "0.8.6")
     (source (origin
               (method git-fetch)
               (uri (git-reference
@@ -400,7 +400,7 @@ (define-public gvisor-tap-vsock
               (file-name (git-file-name name version))
               (sha256
                (base32
-                "1q1zism0c63k2aq6yhkjqc3b2zsm4lwn0bk39p2kl79h798wfyp4"))))
+                "18pwpw3dap42mpv5a1ciq6fh0y8ya5ix7r38bi8i1xc7dxcy3jdj"))))
     (build-system gnu-build-system)
     (arguments
      (list
@@ -422,11 +422,19 @@ (define-public gvisor-tap-vsock
           (add-before 'check 'prune-tests
             (lambda _
               ;; Requires internet connection to fetch QEMU image.
-              (invoke "rm" "-r" "test")))
+              (invoke "rm" "-r" "test-qemu")
+              ;; Requires working DNS.
+              (substitute* "pkg/services/dns/dns_test.go"
+                (("Should pass DNS requests to default system DNS.*" all)
+                 (string-append all "\n" "ginkgo.Skip(\"No network.\");"))
+                (("\"redhat.com\",")
+                 "\"localhost\",")
+                (("\"52.200.142.250\"")
+                 "\"127.0.0.1\""))))
           (replace 'install
             (lambda _
               (install-file "bin/gvproxy" (string-append #$output "/bin")))))))
-    (native-inputs (list go-1.20))
+    (native-inputs (list go-1.23))
     (home-page "https://github.com/containers/gvisor-tap-vsock")
     (synopsis "Network stack for virtualization based on gVisor")
     (description "This package provides a replacement for @code{libslirp} and
-- 
2.49.0





Reply sent to Andreas Enge <andreas <at> enge.fr>:
You have taken responsibility. (Mon, 02 Jun 2025 11:41:01 GMT) Full text and rfc822 format available.

Notification sent to Tomas Volf <~@wolfsden.cz>:
bug acknowledged by developer. (Mon, 02 Jun 2025 11:41:02 GMT) Full text and rfc822 format available.

Message #13 received at 73940-done <at> debbugs.gnu.org (full text, mbox):

From: Andreas Enge <andreas <at> enge.fr>
To: Tomas Volf <~@wolfsden.cz>
Cc: 73940-done <at> debbugs.gnu.org
Subject: Re: [PATCH v2] gnu: gvisor-tap-vsock: Update to 0.8.6.
Date: Mon, 2 Jun 2025 13:40:28 +0200
Pushed!

Andreas





bug archived. Request was from Debbugs Internal Request <help-debbugs <at> gnu.org> to internal_control <at> debbugs.gnu.org. (Tue, 01 Jul 2025 11:24:32 GMT) Full text and rfc822 format available.

This bug report was last modified 44 days ago.

Previous Next


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