[PATCH core-updates] gnu: libgpg-error: Update to 1.46.

  • Done
  • quality assurance status badge
Details
2 participants
  • Maxim Cournoyer
  • Simon Josefsson
Owner
unassigned
Submitted by
Simon Josefsson
Severity
normal
S
S
Simon Josefsson wrote on 1 Jan 2023 01:05
(address . guix-patches@gnu.org)
87sfgvunk2.fsf@josefsson.org
Hi

This updates libgpg-error; patch is intended against the core-updates
branch. This is needed for GnuPG 2.4 and maybe other future packages.

I have tested this with 'guix build' and seeing there were some
cross-building magic in there, I also tested 'guix build
--target=mips64el-linux-gnu', and both works fine. Building the current
GnuPG release with the new libgpg-error 1.46 also worked, which
presumable tests it quite extensively. Any ideas on what more to test?

/Simon
From c39bbb60324fc1e3247508a318deb55a46c99e44 Mon Sep 17 00:00:00 2001
From: Simon Josefsson <simon@josefsson.org>
Date: Sat, 31 Dec 2022 23:32:07 +0100
Subject: [PATCH core-updates] gnu: libgpg-error: Update to 1.46.

* gnu/packages/gnupg.scm (libgpg-error): Update to 1.46, passing
--enable-install-gpg-error-config to ./configure because some packages still
uses gpg-error-config (e.g., libassuan 2.5.5)
---
gnu/packages/gnupg.scm | 8 +++++---
1 file changed, 5 insertions(+), 3 deletions(-)

Toggle diff (37 lines)
diff --git a/gnu/packages/gnupg.scm b/gnu/packages/gnupg.scm
index 6c103a4b36..21497e78e5 100644
--- a/gnu/packages/gnupg.scm
+++ b/gnu/packages/gnupg.scm
@@ -91,7 +91,7 @@ (define-module (gnu packages gnupg)
(define-public libgpg-error
(package
(name "libgpg-error")
- (version "1.45")
+ (version "1.46")
(source
(origin
(method url-fetch)
@@ -99,9 +99,11 @@ (define-public libgpg-error
version ".tar.bz2"))
(sha256
(base32
- "09haz1kk48b8q0hd58g98whylah0fp121yfgjms7pzsbzgj8w3sp"))))
+ "1396h4f9z9awzkkyb6iwspy2rmxb8nr47pj8fzrmxgkb4ij1mqdp"))))
(build-system gnu-build-system)
(arguments
+ (append
+ '(#:configure-flags (list "--enable-install-gpg-error-config"))
(if (%current-target-system)
`(#:modules ((guix build gnu-build-system)
(guix build utils))
@@ -141,7 +143,7 @@ (define (link triplet source)
;; all architectures.
(_ #t)))
(#t #t)))))))
- '()))
+ '())))
(native-inputs (list gettext-minimal))
(home-page "https://gnupg.org")
(synopsis "Library of error values for GnuPG components")
--
2.38.1
-----BEGIN PGP SIGNATURE-----

iIoEARYIADIWIQSjzJyHC50xCrrUzy9RcisI/kdFogUCY7DOPRQcc2ltb25Aam9z
ZWZzc29uLm9yZwAKCRBRcisI/kdFohCKAQCtv85wBgrtJD16LfIHCmn0SlpqU8zN
0oQEMMGq08NutwEAqvZGM6emxha4ZmP2LJnaSgNCvkz5gji2kQAt7hyehg4=
=lEXO
-----END PGP SIGNATURE-----

M
M
Maxim Cournoyer wrote on 22 Jan 05:38 +0100
(name . Simon Josefsson)(address . simon@josefsson.org)(address . 60459-done@debbugs.gnu.org)
87v87m3rua.fsf@gmail.com
Hello,

Simon Josefsson <simon@josefsson.org> writes:

Toggle quote (5 lines)
> Hi
>
> This updates libgpg-error; patch is intended against the core-updates
> branch. This is needed for GnuPG 2.4 and maybe other future packages.

Applied, thank you!

--
Thanks,
Maxim
Closed
?