Script 'mail_helper' called by obssrc Hello community, here is the log from the commit of package gnome-boxes for openSUSE:Factory checked in at 2023-03-24 15:19:48 ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Comparing /work/SRC/openSUSE:Factory/gnome-boxes (Old) and /work/SRC/openSUSE:Factory/.gnome-boxes.new.31432 (New) ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Package is "gnome-boxes" Fri Mar 24 15:19:48 2023 rev:97 rq:1073758 version:44.0 Changes: -------- --- /work/SRC/openSUSE:Factory/gnome-boxes/gnome-boxes.changes 2023-02-15 13:41:16.635017983 +0100 +++ /work/SRC/openSUSE:Factory/.gnome-boxes.new.31432/gnome-boxes.changes 2023-03-24 15:20:07.698796345 +0100 @@ -1,0 +2,41 @@ +Wed Mar 22 02:29:57 UTC 2023 - Alynx Zhou <alynx.z...@suse.com> + +- Add gnome-boxes-fix-stream-read.patch: Fix argument of + FileStream.read, it is used as document, but document is wrong + and translates into wrong C argument. (bsc#1207732, + glgo#GNOME/gnome-boxes!589, glgo#GNOME/vala#1410) + +------------------------------------------------------------------- +Fri Mar 17 18:23:22 UTC 2023 - Bjørn Lie <bjorn....@gmail.com> + +- Update to version 44.0: + + Always create SPICE agent channel config. + + Fix increments in VM creation Storage Limit spin button. + + Don't fail to parse manually entered storage value on different + locales. + + Updated translations. + +------------------------------------------------------------------- +Mon Mar 6 15:59:56 UTC 2023 - Bjørn Lie <bjorn....@gmail.com> + +- Update to version 44.rc: + + Fix VM renaming issues + + Fix errors saving manually edited domain configuration + + Fix issues with storage-limit not being set in VM creation + + Allow creating VMs without selecting an Osinfo operating system + entry + + Updated translations. + +------------------------------------------------------------------- +Wed Feb 22 12:34:24 UTC 2023 - Bjørn Lie <bjorn....@gmail.com> + +- Update to version 44.beta.1: + + Update POTFILES.in. +- Changes from version 44.beta: + + Modernize the VM creation UI. + + Add new widget to rename VMs. + + Fix import of raw images. + + Create new storage volumes with compat=1.1. + + Update the documentation. + +------------------------------------------------------------------- Old: ---- gnome-boxes-43.3.tar.xz New: ---- gnome-boxes-44.0.tar.xz gnome-boxes-fix-stream-read.patch ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Other differences: ------------------ ++++++ gnome-boxes.spec ++++++ --- /var/tmp/diff_new_pack.Vkim6E/_old 2023-03-24 15:20:08.262799286 +0100 +++ /var/tmp/diff_new_pack.Vkim6E/_new 2023-03-24 15:20:08.266799306 +0100 @@ -20,13 +20,15 @@ %define govf_libver 0_1 %define govf_sover 0.1 Name: gnome-boxes -Version: 43.3 +Version: 44.0 Release: 0 Summary: A GNOME 3 application to access remote or virtual systems License: LGPL-2.0-or-later Group: System/GUI/GNOME URL: https://wiki.gnome.org/Design/Apps/Boxes -Source0: https://download.gnome.org/sources/gnome-boxes/43/%{name}-%{version}.tar.xz +Source0: https://download.gnome.org/sources/gnome-boxes/44/%{name}-%{version}.tar.xz +# PATCH-FIX-UPSTREAM gnome-boxes-fix-stream-read.patch bsc#1207732, glgo#GNOME/gnome-boxes!589 alynx.z...@suse.com -- Fix argument of FileStream.read +Patch0: gnome-boxes-fix-stream-read.patch BuildRequires: desktop-file-utils BuildRequires: fdupes @@ -65,8 +67,8 @@ # Recommend libvirt-client, needed for gnome-boxes to recognize the kvm module and boxes storage pool Recommends: libvirt-client # Eliminate sub-packages with libraries in private space (no provides, nothing was supposed to use the pkgname) -Obsoletes: libgovf-0_1 <= 40.2 Obsoletes: gtk-frdp-devel <= 42.3 +Obsoletes: libgovf-0_1 <= 40.2 Obsoletes: libgtk-frdp-0_1 <= 42.3 Obsoletes: typelib-1_0-Govf-0_1 <= 40.2 Obsoletes: typelib-1_0-GtkFrdp-0_1 <= 42.3 ++++++ gnome-boxes-43.3.tar.xz -> gnome-boxes-44.0.tar.xz ++++++ ++++ 39336 lines of diff (skipped) ++++++ gnome-boxes-fix-stream-read.patch ++++++ >From 10211d09126e833af872344acca84b29aba6e92c Mon Sep 17 00:00:00 2001 From: Alynx Zhou <alynx.z...@gmail.com> Date: Tue, 14 Mar 2023 16:43:50 +0800 Subject: [PATCH] archive-writer: Fix wrong usage of FileStream.read() Actually we did nothing wrong, we just follow the valadoc, and the valadoc is wrong. See <https://github.com/vala-lang/valadoc-org/pull/380/files>. --- src/archive-writer.vala | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/archive-writer.vala b/src/archive-writer.vala index c2322628..708158cd 100644 --- a/src/archive-writer.vala +++ b/src/archive-writer.vala @@ -118,7 +118,7 @@ public void insert_file (string src, string dest) throws GLib.IOError { // get file info, read data into memory var filestream = GLib.FileStream.open (src, "r"); - filestream.read ((uint8[]) buf, (size_t) len); + filestream.read ((uint8[]) buf); execute_libarchive_function (archive, () => { return archive.write_header(entry); }); insert_data (buf, len); } -- GitLab