Script 'mail_helper' called by obssrc Hello community, here is the log from the commit of package libgpg-error for openSUSE:Factory checked in at 2026-08-04 21:27:34 ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Comparing /work/SRC/openSUSE:Factory/libgpg-error (Old) and /work/SRC/openSUSE:Factory/.libgpg-error.new.16738 (New) ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Package is "libgpg-error" Tue Aug 4 21:27:34 2026 rev:86 rq:1369104 version:1.61 Changes: -------- --- /work/SRC/openSUSE:Factory/libgpg-error/libgpg-error.changes 2026-05-12 19:26:56.875782520 +0200 +++ /work/SRC/openSUSE:Factory/.libgpg-error.new.16738/libgpg-error.changes 2026-08-04 21:28:20.139437324 +0200 @@ -1,0 +2,6 @@ +Thu Jul 30 07:47:10 UTC 2026 - Guillaume GARDET <[email protected]> + +- Add upstream patch to fix build on 32-bit arm: + * libgpg-error-fix-armv7.patch + +------------------------------------------------------------------- New: ---- libgpg-error-fix-armv7.patch ----------(New B)---------- New:- Add upstream patch to fix build on 32-bit arm: * libgpg-error-fix-armv7.patch ----------(New E)---------- ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Other differences: ------------------ ++++++ libgpg-error.spec ++++++ --- /var/tmp/diff_new_pack.yoL73u/_old 2026-08-04 21:28:20.847461845 +0200 +++ /var/tmp/diff_new_pack.yoL73u/_new 2026-08-04 21:28:20.847461845 +0200 @@ -31,6 +31,8 @@ Source3: baselibs.conf #PATCH-FIX-OPENSUSE Do not pull revision info from GIT when autoconf is run Patch0: libgpg-error-nobetasuffix.patch +# PATCH-FIX-UPSTREAM - https://github.com/gpg/libgpg-error/commit/bfdf7b0b7b62f4463451a7d5f8408cec75520dca +Patch1: libgpg-error-fix-armv7.patch BuildRequires: fdupes BuildRequires: libtool BuildRequires: pkgconfig ++++++ libgpg-error-fix-armv7.patch ++++++ >From bfdf7b0b7b62f4463451a7d5f8408cec75520dca Mon Sep 17 00:00:00 2001 From: NIIBE Yutaka <[email protected]> Date: Thu, 25 Jun 2026 10:53:29 +0900 Subject: [PATCH] tests: Skip a test when !HAVE_LONG_DOUBLE_WIDER. * configure.ac (AC_TYPE_LONG_DOUBLE_WIDER): New. * tests/t-printf.c (check_large_float): Fix a typo. [!HAVE_LONG_DOUBLE_WIDER]: Skip the LDBL_MAX test. -- GnuPG-bug-id: 8309 Signed-off-by: NIIBE Yutaka <[email protected]> --- configure.ac | 1 + tests/t-printf.c | 7 ++++++- 2 files changed, 7 insertions(+), 1 deletion(-) diff --git a/configure.ac b/configure.ac index e9abe0d7..78717691 100644 --- a/configure.ac +++ b/configure.ac @@ -276,6 +276,7 @@ AC_C_CONST AC_CHECK_SIZEOF(int) AC_CHECK_SIZEOF(long) AC_CHECK_SIZEOF(long long) +AC_TYPE_LONG_DOUBLE_WIDER GNUPG_FUNC_MKDIR_TAKES_ONE_ARG diff --git a/tests/t-printf.c b/tests/t-printf.c index 6cbd03fd..b0a3f3fe 100644 --- a/tests/t-printf.c +++ b/tests/t-printf.c @@ -449,7 +449,7 @@ check_large_float (void) errno, strerror (errno)); } else if (verbose) - show ("format \"%%.100f\" with DBL_MAX: ->%s<-\n", buf2); + show ("format \"%%.101f\" with DBL_MAX: ->%s<-\n", buf2); if (strcmp (buf, buf2)) fail ("format \"%%.100f\" does not match \"%%.101f\"\n" ); @@ -469,6 +469,7 @@ check_large_float (void) show ("format \"%%.100Lf\" with DBL_MAX: ->%s<-\n", buf); gpgrt_free (buf); +# ifdef HAVE_LONG_DOUBLE_WIDER ld = LDBL_MAX; buf = gpgrt_bsprintf ("%.100Lf\n", ld); if (buf) @@ -478,6 +479,10 @@ check_large_float (void) else if (verbose) show ("format \"%%.100Lf\" with LDBL_MAX failed as expected\n"); gpgrt_free (buf); +# else + if (verbose) + show ("LDBL_MAX == DBL_MAX - skipping LDBL_MAX test\n"); +# endif #endif /*HAVE_LONG_DOUBLE*/ }
