Script 'mail_helper' called by obssrc Hello community, here is the log from the commit of package pitivi for openSUSE:Factory checked in at 2022-02-03 23:16:45 ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Comparing /work/SRC/openSUSE:Factory/pitivi (Old) and /work/SRC/openSUSE:Factory/.pitivi.new.1898 (New) ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Package is "pitivi" Thu Feb 3 23:16:45 2022 rev:44 rq:950839 version:2021.05 Changes: -------- --- /work/SRC/openSUSE:Factory/pitivi/pitivi.changes 2021-11-11 21:39:21.277016981 +0100 +++ /work/SRC/openSUSE:Factory/.pitivi.new.1898/pitivi.changes 2022-02-03 23:17:43.888102871 +0100 @@ -1,0 +2,7 @@ +Wed Feb 2 19:48:50 UTC 2022 - Bj??rn Lie <bjorn....@gmail.com> + +- Add ddf2369d1fc6fddd63f676cc905a8b8e96291a4c.patch: Fix build + with meson 0.60 and newer. +- Drop pitivi-rpmlintrc, no longer needed. + +------------------------------------------------------------------- Old: ---- pitivi-rpmlintrc New: ---- ddf2369d1fc6fddd63f676cc905a8b8e96291a4c.patch ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Other differences: ------------------ ++++++ pitivi.spec ++++++ --- /var/tmp/diff_new_pack.rhtn5c/_old 2022-02-03 23:17:44.436099131 +0100 +++ /var/tmp/diff_new_pack.rhtn5c/_new 2022-02-03 23:17:44.440099103 +0100 @@ -1,7 +1,7 @@ # # spec file for package pitivi # -# 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 @@ -24,7 +24,9 @@ Group: Productivity/Multimedia/Video/Editors and Convertors URL: http://www.pitivi.org/ Source0: https://download.gnome.org/sources/pitivi/2021/%{name}-%{version}.tar.xz -Source1: %{name}-rpmlintrc +# PATCH-FIX-UPSTREAM ddf2369d1fc6fddd63f676cc905a8b8e96291a4c.patch -- Fix build with meson 0.60 and newer +Patch0: https://gitlab.gnome.org/GNOME/pitivi/-/commit/ddf2369d1fc6fddd63f676cc905a8b8e96291a4c.patch + BuildRequires: fdupes BuildRequires: gnome-doc-utils-devel >= 0.18.0 BuildRequires: gobject-introspection >= 1.31.1 ++++++ ddf2369d1fc6fddd63f676cc905a8b8e96291a4c.patch ++++++ >From ddf2369d1fc6fddd63f676cc905a8b8e96291a4c Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Sebastian=20Dr=C3=B6ge?= <sebast...@centricular.com> Date: Tue, 25 Jan 2022 15:37:34 +0200 Subject: [PATCH] Fix compatibility with meson 0.61 Previously positional arguments to i18n.merge_files() were just ignored but this became an error. --- data/meson.build | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/data/meson.build b/data/meson.build index 2ea82cf12..60d23169b 100644 --- a/data/meson.build +++ b/data/meson.build @@ -6,7 +6,7 @@ install_subdir('audiopresets', install_dir: pkgdatadir) install_subdir('videopresets', install_dir: pkgdatadir) install_subdir('gstpresets', install_dir: pkgdatadir) -desktop_file = i18n.merge_file('org.pitivi.Pitivi.desktop', +desktop_file = i18n.merge_file( type: 'desktop', output : 'org.pitivi.Pitivi.desktop', input : 'org.pitivi.Pitivi.desktop.in', @@ -25,7 +25,7 @@ if desktop_file_validate.found() ) endif -appdata_file = i18n.merge_file('org.pitivi.Pitivi.appdata.xml', +appdata_file = i18n.merge_file( type: 'xml', output : 'org.pitivi.Pitivi.appdata.xml', input : 'org.pitivi.Pitivi.appdata.xml.in', @@ -43,7 +43,7 @@ if appstream_util.found() ) endif -i18n.merge_file('org.pitivi.Pitivi-mime.xml', +i18n.merge_file( output : 'org.pitivi.Pitivi-mime.xml', input : 'org.pitivi.Pitivi-mime.xml.in', po_dir: podir, -- GitLab