GNU bug report logs - #75681
[PATCH 0/1] Upgrade gpa to address build failure

Previous Next

Package: guix-patches;

Reported by: Aaron Covrig <aaron.covrig.us <at> ieee.org>

Date: Mon, 20 Jan 2025 01:13:02 UTC

Severity: normal

Tags: patch

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

To reply to this bug, email your comments to 75681 AT debbugs.gnu.org.
There is no need to reopen the bug first.

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#75681; Package guix-patches. (Mon, 20 Jan 2025 01:13:02 GMT) Full text and rfc822 format available.

Acknowledgement sent to Aaron Covrig <aaron.covrig.us <at> ieee.org>:
New bug report received and forwarded. Copy sent to guix-patches <at> gnu.org. (Mon, 20 Jan 2025 01:13:02 GMT) Full text and rfc822 format available.

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

From: Aaron Covrig <aaron.covrig.us <at> ieee.org>
To: guix-patches <at> gnu.org
Cc: Aaron Covrig <aaron.covrig.us <at> ieee.org>
Subject: [PATCH 0/1] Upgrade gpa to address build failure
Date: Sun, 19 Jan 2025 20:11:38 -0500
This patch updates the GNU Privacy Assistant (gpa) to v0.11.0. I've
noticed on my system that the current version (v0.10.0) doesn't build,
with the build complaining about missing `libassuan` even though it is
in the inputs. Furthermore, updating gpa to v0.11.0 seems to be enough
to resolve the build/update the configure scripts to properly detect
libassuan.

Snippet of the error I get from gpa v0.10.0:
```bash
checking for GPGME - version >= 1.9.0... yes
checking for gpgme_data_identify... yes
configure: checking for header files
checking locale.h usability... yes
checking locale.h presence... yes
checking for locale.h... yes
checking for byte typedef... no
checking for ushort typedef... yes
checking for ulong typedef... yes
checking for u16 typedef... no
checking for u32 typedef... no
checking for inotify_init... yes
configure: checking for cc features
checking if gcc supports -Wno-pointer-sign... yes
checking if gcc supports -Wno-unused-parameter... yes
configure:
***
*** You need libassuan to build this program.
*** This library is for example available at
***   ftp://ftp.gnupg.org/gcrypt/libassuan/
*** (at least version 2.4.2 is required).
***
configure: error: 
***
*** Required libraries not found. Please consult the above messages
*** and install them before running configure again.
***
error: in phase 'configure': uncaught exception:
%exception #<&invoke-error program: "/gnu/store/3jhfhxdf6v5ms10x5zmnl166dh3yhbr1-bash-minimal-5.1.16/bin/bash" arguments: ("./configure" "CONFIG_SHELL=/gnu/store/3jhfhxdf6v5ms10x5zmnl166dh3yhbr1-bash-minimal-5.1.16/bin/bash" "SHELL=/gnu/store/3jhfhxdf6v5ms10x5zmnl166dh3yhbr1-bash-minimal-5.1.16/bin/bash" "--prefix=/gnu/store/546w5ykhrcy031nh3yzkgvw2cpl51m5d-gpa-0.10.0" "--enable-fast-install" "--build=x86_64-unknown-linux-gnu") exit-status: 1 term-signal: #f stop-signal: #f> 
phase `configure' failed after 2.3 seconds
command "/gnu/store/3jhfhxdf6v5ms10x5zmnl166dh3yhbr1-bash-minimal-5.1.16/bin/bash" "./configure" "CONFIG_SHELL=/gnu/store/3jhfhxdf6v5ms10x5zmnl166dh3yhbr1-bash-minimal-5.1.16/bin/bash" "SHELL=/gnu/store/3jhfhxdf6v5ms10x5zmnl166dh3yhbr1-bash-minimal-5.1.16/bin/bash" "--prefix=/gnu/store/546w5ykhrcy031nh3yzkgvw2cpl51m5d-gpa-0.10.0" "--enable-fast-install" "--build=x86_64-unknown-linux-gnu" failed with status 1
build process 10 exited with status 256
```

Aaron Covrig (1):
  gnu: gpa: Update to v0.11.0.

 gnu/packages/gnupg.scm | 6 +++---
 1 file changed, 3 insertions(+), 3 deletions(-)


base-commit: 5e834c220e81fddb77a26e23cf0cd5055b866844
-- 
2.47.1





Information forwarded to guix-patches <at> gnu.org:
bug#75681; Package guix-patches. (Mon, 20 Jan 2025 01:16:02 GMT) Full text and rfc822 format available.

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

From: Aaron Covrig <aaron.covrig.us <at> ieee.org>
To: 75681 <at> debbugs.gnu.org
Cc: Aaron Covrig <aaron.covrig.us <at> ieee.org>
Subject: [PATCH 1/1] gnu: gpa: Update to v0.11.0.
Date: Sun, 19 Jan 2025 20:14:50 -0500
* gnu/packages/gnupg.scm (gpa): Update to v0.11.0.
---
 gnu/packages/gnupg.scm | 6 +++---
 1 file changed, 3 insertions(+), 3 deletions(-)

diff --git a/gnu/packages/gnupg.scm b/gnu/packages/gnupg.scm
index ef2344d7e6..6edfa1d3a4 100644
--- a/gnu/packages/gnupg.scm
+++ b/gnu/packages/gnupg.scm
@@ -1083,14 +1083,14 @@ (define-public pgpdump
 (define-public gpa
   (package
     (name "gpa")
-    (version "0.10.0")
+    (version "0.11.0")
     (source (origin
               (method url-fetch)
               (uri (string-append "mirror://gnupg/gpa/"
                                   name "-" version ".tar.bz2"))
               (sha256
                (base32
-                "1cbpc45f8qbdkd62p12s3q2rdq6fa5xdzwmcwd3xrj55bzkspnwm"))))
+                "1k1kvxffyb4nm83yp3mnx9bfmcciwb7vfw8c3xscnh85yxdzma16"))))
     (build-system gnu-build-system)
     (arguments
      `(#:phases
@@ -1108,7 +1108,7 @@ (define-public gpa
            gpgme
            libassuan
            libgpg-error
-           gtk+-2))
+           gtk+))
     (home-page "https://gnupg.org/software/gpa/")
     (synopsis "Graphical user interface for GnuPG")
     (description
-- 
2.47.1





Reply sent to Guillaume Le Vaillant <glv <at> posteo.net>:
You have taken responsibility. (Wed, 22 Jan 2025 13:36:02 GMT) Full text and rfc822 format available.

Notification sent to Aaron Covrig <aaron.covrig.us <at> ieee.org>:
bug acknowledged by developer. (Wed, 22 Jan 2025 13:36:02 GMT) Full text and rfc822 format available.

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

From: Guillaume Le Vaillant <glv <at> posteo.net>
To: Aaron Covrig <aaron.covrig.us <at> ieee.org>
Cc: 75681-done <at> debbugs.gnu.org
Subject: Re: [bug#75681] [PATCH 1/1] gnu: gpa: Update to v0.11.0.
Date: Wed, 22 Jan 2025 13:35:45 +0000
[Message part 1 (text/plain, inline)]
Patch applied as a4c89856e5dca0bbfdf25f712563121e3ffbb0cb.
Thanks.
[signature.asc (application/pgp-signature, inline)]

This bug report was last modified 15 days ago.

Previous Next


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