Script 'mail_helper' called by obssrc
Hello community,

here is the log from the commit of package grub2 for openSUSE:Factory checked 
in at 2025-04-16 20:38:04
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Comparing /work/SRC/openSUSE:Factory/grub2 (Old)
 and      /work/SRC/openSUSE:Factory/.grub2.new.30101 (New)
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++

Package is "grub2"

Wed Apr 16 20:38:04 2025 rev:358 rq:1269746 version:2.12

Changes:
--------
--- /work/SRC/openSUSE:Factory/grub2/grub2.changes      2025-04-15 
20:47:09.117264988 +0200
+++ /work/SRC/openSUSE:Factory/.grub2.new.30101/grub2.changes   2025-04-20 
19:55:41.350190423 +0200
@@ -1,0 +2,6 @@
+Sun Apr 13 11:05:48 UTC 2025 - Friedrich Haubensak <hs...@mail.de>
+
+- add grub2-string-initializer.patch, part of upstream gnulib
+  patch, to fix gcc15 compile time error (bsc#1239884)
+
+-------------------------------------------------------------------

New:
----
  grub2-string-initializer.patch

BETA DEBUG BEGIN:
  New:
- add grub2-string-initializer.patch, part of upstream gnulib
  patch, to fix gcc15 compile time error (bsc#1239884)
BETA DEBUG END:

++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++

Other differences:
------------------
++++++ grub2.spec ++++++
--- /var/tmp/diff_new_pack.dPCx86/_old  2025-04-20 19:55:45.002343316 +0200
+++ /var/tmp/diff_new_pack.dPCx86/_new  2025-04-20 19:55:45.002343316 +0200
@@ -463,6 +463,7 @@
 Patch290:       0005-tpm2_key_protector-Unseal-key-from-a-buffer.patch
 Patch291:       0006-tpm2_key_protector-Support-NV-index-handles.patch
 Patch292:       0007-util-grub-protect-Support-NV-index-mode.patch
+Patch293:       grub2-string-initializer.patch
 
 %if 0%{?suse_version} < 1600
 Requires:       gettext-runtime


++++++ grub2-string-initializer.patch ++++++

this patch to the grub2 sources is taken from:

git.savannah.gnu.org/gitweb/?p=gnulib.git;a=patch;h=25df6dc4
github.com/coreutils/gnulib/commit/25df6dc4

>From 25df6dc4253480a343dde3376ce6fd99c316a532 Mon Sep 17 00:00:00 2001
From: Bruno Haible <br...@clisp.org>
Date: Thu, 3 Apr 2025 00:45:30 +0200
Subject: [PATCH] Silence some -Wunterminated-string-initialization warnings.

* lib/base32.c (base32_encode): Mark b32str as not NUL-terminated.
* lib/base64.c (b64c): Mark as not NUL-terminated.
* lib/bcp47.c (struct script): Mark the 'code' field as not
NUL-terminated.
* lib/striconveh.c (mem_cd_iconveh_internal): Mark hex as not
NUL-terminated.
* lib/unicase/special-casing.in.h (struct special_casing_rule): Mark the
'code' field as not NUL-terminated.


--- a/grub-core/lib/gnulib/base64.c
+++ b/grub-core/lib/gnulib/base64.c
@@ -59,7 +59,7 @@ to_uchar (char ch)
   return ch;
 }
 
-static const char b64c[64] =
+static const char b64c[64] _GL_ATTRIBUTE_NONSTRING =
   "ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz0123456789+/";
 
 /* Base64 encode IN array of size INLEN into OUT array. OUT needs

Reply via email to