GNU bug report logs - #74768
[PATCH] gnu: gnunet[-gtk]: Update to 0.23.0.

Previous Next

Package: guix-patches;

Reported by: Amélia Coutard-Sander <git <at> ameliathe1st.gay>

Date: Tue, 10 Dec 2024 14:29:02 UTC

Severity: normal

Tags: patch

Done: Guillaume Le Vaillant <glv <at> posteo.net>

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 74768 in the body.
You can then email your comments to 74768 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#74768; Package guix-patches. (Tue, 10 Dec 2024 14:29:02 GMT) Full text and rfc822 format available.

Acknowledgement sent to Amélia Coutard-Sander <git <at> ameliathe1st.gay>:
New bug report received and forwarded. Copy sent to guix-patches <at> gnu.org. (Tue, 10 Dec 2024 14:29:02 GMT) Full text and rfc822 format available.

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

From: Amélia Coutard-Sander <git <at> ameliathe1st.gay>
To: guix-patches <at> gnu.org
Cc: Amélia Coutard-Sander <git <at> ameliathe1st.gay>
Subject: [PATCH] gnu: gnunet[-gtk]: Update to 0.23.0.
Date: Tue, 10 Dec 2024 11:19:51 +0100
Hello,

This patch series provides the update to version 0.23.0 for gnunet and
gnunet-gtk.

`guix lint` only reports that the source is not present in the Software
Heritage archive. I assume this is normal.
I have not run `guix style` because it changed the whole package
definitions when I tried it, even though my changes are mostly just
version bumps. That being said, I have formatted the only real change
exactly like the same thing below it, so this shouldn't be an issue.

The guile-gnunet build was already broken, and has not been fixed by
this update. However, the gnunet-gtk package has been fixed upstream in
this update, and the gnunet-gtk executables can now be used normally.


Amélia Coutard-Sander (2):
  gnu: gnunet: Update to 0.23.0.
  gnu: gnunet-gtk: Update to 0.23.0.

 gnu/packages/gnunet.scm | 13 +++++++++----
 1 file changed, 9 insertions(+), 4 deletions(-)


base-commit: 68fef864045aa5cf65d1159dc93dd23d17e605b3
-- 
2.46.0





Information forwarded to guix-patches <at> gnu.org:
bug#74768; Package guix-patches. (Tue, 10 Dec 2024 14:33:01 GMT) Full text and rfc822 format available.

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

From: Amélia Coutard-Sander <git <at> ameliathe1st.gay>
To: 74768 <at> debbugs.gnu.org
Cc: Amélia Coutard-Sander <git <at> ameliathe1st.gay>
Subject: [PATCH 1/2] gnu: gnunet: Update to 0.23.0.
Date: Tue, 10 Dec 2024 15:31:37 +0100
* gnu/packages/gnunet.scm (gnunet): Update to 0.23.0.
[phases]: Adjust disable-problematic-tests phase.

Change-Id: Ibf900d929bcd257932c6997eacbfaeeda1aa7f26
---
 gnu/packages/gnunet.scm | 9 +++++++--
 1 file changed, 7 insertions(+), 2 deletions(-)

diff --git a/gnu/packages/gnunet.scm b/gnu/packages/gnunet.scm
index cf731f3fcc..7e73732e7a 100644
--- a/gnu/packages/gnunet.scm
+++ b/gnu/packages/gnunet.scm
@@ -192,7 +192,7 @@ (define-public libmicrohttpd
 (define-public gnunet
   (package
     (name "gnunet")
-    (version "0.21.2")
+    (version "0.23.0")
     (source
      (origin
        (method url-fetch)
@@ -200,7 +200,7 @@ (define-public gnunet
                            ".tar.gz"))
        (sha256
         (base32
-         "18czv9yxxmaf7y061ngzwcc9rxwrwdy372wb52ns52wviqk528wc"))))
+         "0ypnsn81fp3iqi8rgsbcvfnz9iwmaxd1h71mphak8ska2kabdim4"))))
     (build-system gnu-build-system)
     (inputs
      (list bluez
@@ -240,6 +240,11 @@ (define-public gnunet
       #~(modify-phases %standard-phases
           (add-after 'unpack 'disable-problematic-tests
             (lambda _
+              ;; The file 'test_arm_probnat.sh' doesn't seem to exist,
+              ;; or have a creation method specified anywhere in the source.
+              (substitute* "src/service/arm/Makefile.in"
+                (("check_SCRIPTS = \\\\")
+                 "DISABLED_check_SCRIPTS = \\"))
               ;; The 'test_communicator_bidirect-tcp' fails
               ;; non-deterministically (see:
               ;; https://bugs.gnunet.org/view.php?id=8689).
-- 
2.46.0





Information forwarded to guix-patches <at> gnu.org:
bug#74768; Package guix-patches. (Tue, 10 Dec 2024 14:33:02 GMT) Full text and rfc822 format available.

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

From: Amélia Coutard-Sander <git <at> ameliathe1st.gay>
To: 74768 <at> debbugs.gnu.org
Cc: Amélia Coutard-Sander <git <at> ameliathe1st.gay>
Subject: [PATCH 2/2] gnu: gnunet-gtk: Update to 0.23.0.
Date: Tue, 10 Dec 2024 15:31:38 +0100
* gnu/packages/gnunet.scm (gnunet-gtk): Update to 0.23.0.

Change-Id: I2d5f47b5773c72777bc0ad4e4ebeaee63c3005b1
---
 gnu/packages/gnunet.scm | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/gnu/packages/gnunet.scm b/gnu/packages/gnunet.scm
index 7e73732e7a..74ce010594 100644
--- a/gnu/packages/gnunet.scm
+++ b/gnu/packages/gnunet.scm
@@ -377,14 +377,14 @@ (define-public gnunet-scheme
 (define-public gnunet-gtk
   (package (inherit gnunet)
     (name "gnunet-gtk")
-    (version "0.21.0")
+    (version "0.23.0")
     (source (origin
               (method url-fetch)
               (uri (string-append "mirror://gnu/gnunet/gnunet-gtk-"
                                   version ".tar.gz"))
               (sha256
                (base32
-                "1b7xfypa0s7zlijgvya8p3rvljnn65w5cjkaw6x83v9ra8l6s0dx"))))
+                "131z47px0kqnmn2b3sb84qmf90kynhl6mrx4rxrqh9chhy5pcr3h"))))
     (arguments
      (list #:configure-flags
            #~(list "--with-libunique"
-- 
2.46.0





Reply sent to Guillaume Le Vaillant <glv <at> posteo.net>:
You have taken responsibility. (Thu, 12 Dec 2024 14:56:02 GMT) Full text and rfc822 format available.

Notification sent to Amélia Coutard-Sander <git <at> ameliathe1st.gay>:
bug acknowledged by developer. (Thu, 12 Dec 2024 14:56:02 GMT) Full text and rfc822 format available.

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

From: Guillaume Le Vaillant <glv <at> posteo.net>
To: Amélia Coutard-Sander <git <at> ameliathe1st.gay>
Cc: 74768-done <at> debbugs.gnu.org
Subject: Re: [bug#74768] [PATCH] gnu: gnunet[-gtk]: Update to 0.23.0.
Date: Thu, 12 Dec 2024 14:55:45 +0000
[Message part 1 (text/plain, inline)]
Patches applied as 4bceee3ed0660706cab2d2928610ef425d120cbc and
following.
Thanks.
[signature.asc (application/pgp-signature, inline)]

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

This bug report was last modified 160 days ago.

Previous Next


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