Script 'mail_helper' called by obssrc
Hello community,

here is the log from the commit of package guestfs-tools for openSUSE:Factory 
checked in at 2024-04-07 22:10:51
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Comparing /work/SRC/openSUSE:Factory/guestfs-tools (Old)
 and      /work/SRC/openSUSE:Factory/.guestfs-tools.new.1905 (New)
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++

Package is "guestfs-tools"

Sun Apr  7 22:10:51 2024 rev:15 rq:1165710 version:1.52.0

Changes:
--------
--- /work/SRC/openSUSE:Factory/guestfs-tools/guestfs-tools.changes      
2024-01-08 23:46:46.941628003 +0100
+++ /work/SRC/openSUSE:Factory/.guestfs-tools.new.1905/guestfs-tools.changes    
2024-04-07 22:13:09.426315659 +0200
@@ -1,0 +2,7 @@
+Fri Mar 29 13:02:14 MDT 2024 - [email protected]
+
+- Upstream bug fixes
+  Update-virt-customize-generated-files.patch
+  Initialise-bar-fp-as-NULL.patch
+
+-------------------------------------------------------------------

New:
----
  Initialise-bar-fp-as-NULL.patch
  Update-virt-customize-generated-files.patch

BETA DEBUG BEGIN:
  New:  Update-virt-customize-generated-files.patch
  Initialise-bar-fp-as-NULL.patch
  New:- Upstream bug fixes
  Update-virt-customize-generated-files.patch
  Initialise-bar-fp-as-NULL.patch
BETA DEBUG END:

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

Other differences:
------------------
++++++ guestfs-tools.spec ++++++
--- /var/tmp/diff_new_pack.MlzKSg/_old  2024-04-07 22:13:09.898332946 +0200
+++ /var/tmp/diff_new_pack.MlzKSg/_new  2024-04-07 22:13:09.898332946 +0200
@@ -42,6 +42,9 @@
 Source0:        
http://download.libguestfs.org/guestfs-tools/%{source_directory}/%{name}-%{version}.tar.gz
 Source1:        
http://download.libguestfs.org/guestfs-tools/%{source_directory}/%{name}-%{version}.tar.gz.sig
 
+Patch1:         Update-virt-customize-generated-files.patch
+Patch2:         Initialise-bar-fp-as-NULL.patch
+
 %if 0%{patches_touch_autotools}
 BuildRequires:  autoconf
 BuildRequires:  automake

++++++ Initialise-bar-fp-as-NULL.patch ++++++
Subject: Initialise bar->fp as NULL
From: Ben Brown [email protected] Thu Mar 28 12:35:28 2024 +0000
Date: Thu Mar 28 12:53:52 2024 +0000:
Git: 0330ebe40cb645df311bab25888c5ca6cc179efe

Reviewed-by: Richard W.M. Jones <[email protected]>
Fixes: https://bugzilla.redhat.com/show_bug.cgi?id=2272045

diff --git a/common/progress/progress.c b/common/progress/progress.c
index e4b3066..5848abd 100644
--- a/common/progress/progress.c
+++ b/common/progress/progress.c
@@ -123,6 +123,7 @@ progress_bar_init (unsigned flags)
     bar->machine_readable = 1;
     bar->utf8_mode = 0;
     bar->have_terminfo = 0;
+    bar->fp = NULL;
   } else {
     bar->machine_readable = 0;
 

++++++ Update-virt-customize-generated-files.patch ++++++
Subject: mlcustomize: Update virt-customize generated files
From: Richard W.M. Jones [email protected] Fri Jan 19 13:23:43 2024 +0000
Date: Fri Jan 19 13:24:24 2024 +0000:
Git: 54869c9875318db5e7b7c07be1b17931fbc17895

Modified by this patch to libguestfs:

    generator/customize.ml: Split --chown parameter on ':' character

diff --git a/common/mlcustomize/customize_cmdline.ml 
b/common/mlcustomize/customize_cmdline.ml
index 245d996..48ee334 100644
--- a/common/mlcustomize/customize_cmdline.ml
+++ b/common/mlcustomize/customize_cmdline.ml
@@ -157,7 +157,7 @@ let rec argspec () =
     let len = String.length arg in
     String.sub arg 0 i, String.sub arg (i+1) (len-(i+1))
   and split_string_triplet option_name arg =
-    match String.nsplit ~max:3 "," arg with
+    match String.nsplit ~max:3 ":" arg with
     | [a; b; c] -> a, b, c
     | _ ->
         error (f_"invalid format for '--%s' parameter, see the man page")

Reply via email to