Script 'mail_helper' called by obssrc Hello community, here is the log from the commit of package gnome-tweaks for openSUSE:Factory checked in at 2022-02-06 23:53:45 ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Comparing /work/SRC/openSUSE:Factory/gnome-tweaks (Old) and /work/SRC/openSUSE:Factory/.gnome-tweaks.new.1898 (New) ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Package is "gnome-tweaks" Sun Feb 6 23:53:45 2022 rev:17 rq:951414 version:40.0 Changes: -------- --- /work/SRC/openSUSE:Factory/gnome-tweaks/gnome-tweaks.changes 2021-09-25 00:35:17.747123205 +0200 +++ /work/SRC/openSUSE:Factory/.gnome-tweaks.new.1898/gnome-tweaks.changes 2022-02-06 23:54:44.862633467 +0100 @@ -1,0 +2,5 @@ +Tue Feb 1 13:32:22 UTC 2022 - Bj??rn Lie <bjorn....@gmail.com> + +- Add 86.patch: Fix build with meson 0.60.0 and newer. + +------------------------------------------------------------------- New: ---- 86.patch ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Other differences: ------------------ ++++++ gnome-tweaks.spec ++++++ --- /var/tmp/diff_new_pack.brOjAP/_old 2022-02-06 23:54:45.262630761 +0100 +++ /var/tmp/diff_new_pack.brOjAP/_new 2022-02-06 23:54:45.266630735 +0100 @@ -1,7 +1,7 @@ # # spec file for package gnome-tweaks # -# Copyright (c) 2021 SUSE LLC +# Copyright (c) 2022 SUSE LLC # Copyright (c) 2011 Luis Medinas, Lisbon, Portugal. # # All modifications and additions to the file contributed by third parties @@ -25,6 +25,9 @@ Group: System/GUI/GNOME URL: https://wiki.gnome.org/Apps/Tweaks Source0: https://download.gnome.org/sources/gnome-tweaks/40/%{name}-%{version}.tar.xz +# PATCH-FIX-UPSTREAM 86.patch -- Fix build with meson 0.60.0 and newer +Patch0: https://gitlab.gnome.org/GNOME/gnome-tweaks/-/merge_requests/86.patch + BuildRequires: fdupes # GI is needed to have typelib() Requires BuildRequires: gobject-introspection ++++++ 86.patch ++++++ >From 56f39dc7d04a1be91de1149683874f9c83b794fb Mon Sep 17 00:00:00 2001 From: Mae Dartmann <m...@meanderingmind.me> Date: Sat, 22 Jan 2022 18:09:21 +0100 Subject: [PATCH] meson: fix invalid positional argument This was deprecated in meson 0.60 and removed in 0.61. See https://github.com/mesonbuild/meson/pull/9445 for details. Signed-off-by: Mae Dartmann <m...@meanderingmind.me> --- data/meson.build | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/data/meson.build b/data/meson.build index fd6d5da..74f7e82 100644 --- a/data/meson.build +++ b/data/meson.build @@ -1,5 +1,5 @@ appdata_file = 'org.gnome.tweaks.appdata.xml' -i18n.merge_file(appdata_file, +i18n.merge_file( input: appdata_file + '.in', output: appdata_file, po_dir: '../po', @@ -8,7 +8,7 @@ i18n.merge_file(appdata_file, ) desktop_file = 'org.gnome.tweaks.desktop' -i18n.merge_file(desktop_file, +i18n.merge_file( input: desktop_file + '.in', output: desktop_file, po_dir: '../po', -- GitLab