Script 'mail_helper' called by obssrc Hello community, here is the log from the commit of package fractal for openSUSE:Factory checked in at 2022-01-27 23:16:56 ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Comparing /work/SRC/openSUSE:Factory/fractal (Old) and /work/SRC/openSUSE:Factory/.fractal.new.1898 (New) ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Package is "fractal" Thu Jan 27 23:16:56 2022 rev:13 rq:949402 version:4.4.1 Changes: -------- --- /work/SRC/openSUSE:Factory/fractal/fractal.changes 2021-12-02 02:12:19.655198231 +0100 +++ /work/SRC/openSUSE:Factory/.fractal.new.1898/fractal.changes 2022-01-27 23:18:41.070266174 +0100 @@ -1,0 +2,10 @@ +Wed Jan 26 19:03:55 UTC 2022 - Bj??rn Lie <[email protected]> + +- Add 6fa1a23596d65d94aa889efe725174e6cd2903f0.patch: Fix build + with meson 0.61.0. +- Add fractal-fix-build.patch: Downgrade dead_code to a warning, + hackfix build for now as we wait for a new release. The same + dead_code built fine a short while ago, so we can't be that much + worse off. + +------------------------------------------------------------------- New: ---- 6fa1a23596d65d94aa889efe725174e6cd2903f0.patch fractal-fix-build.patch ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Other differences: ------------------ ++++++ fractal.spec ++++++ --- /var/tmp/diff_new_pack.rA3duN/_old 2022-01-27 23:18:41.642262221 +0100 +++ /var/tmp/diff_new_pack.rA3duN/_new 2022-01-27 23:18:41.650262167 +0100 @@ -1,7 +1,7 @@ # # spec file for package fractal # -# Copyright (c) 2021 SUSE LLC +# Copyright (c) 2022 SUSE LLC # # All modifications and additions to the file contributed by third parties # remain the property of their copyright owners, unless otherwise agreed @@ -26,6 +26,10 @@ Group: Productivity/Networking/Instant Messenger URL: https://wiki.gnome.org/Apps/Fractal Source0: https://gitlab.gnome.org/GNOME/fractal/uploads/%{commitid}/%{name}-%{version}.tar.xz +# PATCH-FIX-UPSTREAM 6fa1a23596d65d94aa889efe725174e6cd2903f0.patch -- Fix build with meson 0.61.0 +Patch0: https://github.com/GNOME/fractal/commit/6fa1a23596d65d94aa889efe725174e6cd2903f0.patch +# PATCH-FIX-OPENSUSE fractal-fix-build.patch -- Downgrade dead_code to a warning, hackfix build for now +Patch1: fractal-fix-build.patch BuildRequires: c++_compiler BuildRequires: c_compiler ++++++ 6fa1a23596d65d94aa889efe725174e6cd2903f0.patch ++++++ >From 6fa1a23596d65d94aa889efe725174e6cd2903f0 Mon Sep 17 00:00:00 2001 From: Jonas Platte <[email protected]> Date: Sun, 31 Oct 2021 15:23:31 +0100 Subject: [PATCH] Remove deprecated positional argument to i18n.merge_file See https://github.com/mesonbuild/meson/issues/9441 --- fractal-gtk/res/meson.build | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/fractal-gtk/res/meson.build b/fractal-gtk/res/meson.build index 7a7a7d656..a176787c0 100644 --- a/fractal-gtk/res/meson.build +++ b/fractal-gtk/res/meson.build @@ -2,7 +2,7 @@ subdir('icons') desktop_conf = configuration_data() desktop_conf.set('icon', application_id) -desktop_file = i18n.merge_file ('desktop-file', +desktop_file = i18n.merge_file ( type: 'desktop', input: configure_file( input: files('org.gnome.Fractal.desktop.in.in'), @@ -28,7 +28,7 @@ endif metainfo_conf = configuration_data() metainfo_conf.set('appid', application_id) -metainfo_file = i18n.merge_file ('metainfo-file', +metainfo_file = i18n.merge_file ( input: configure_file( input: files('org.gnome.Fractal.metainfo.xml.in.in'), output: 'org.gnome.Fractal.metainfo.xml.in', ++++++ fractal-fix-build.patch ++++++ diff -Nur orig-fractal-4.4.1/fractal-gtk/src/main.rs fractal-4.4.1/fractal-gtk/src/main.rs --- orig-fractal-4.4.1/fractal-gtk/src/main.rs 2021-10-18 12:42:06.733971000 +0200 +++ fractal-4.4.1/fractal-gtk/src/main.rs 2022-01-26 20:37:07.818569752 +0100 @@ -1,4 +1,4 @@ -#![deny(dead_code, unused_imports, unused_must_use, unused_variables)] +#![deny(unused_imports, unused_must_use, unused_variables)] #[macro_use] extern crate glib;
