Script 'mail_helper' called by obssrc Hello community, here is the log from the commit of package sound-juicer for openSUSE:Factory checked in at 2022-02-04 21:49:06 ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Comparing /work/SRC/openSUSE:Factory/sound-juicer (Old) and /work/SRC/openSUSE:Factory/.sound-juicer.new.1898 (New) ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Package is "sound-juicer" Fri Feb 4 21:49:06 2022 rev:72 rq:951416 version:3.38.0 Changes: -------- --- /work/SRC/openSUSE:Factory/sound-juicer/sound-juicer.changes 2021-09-21 21:14:07.634705442 +0200 +++ /work/SRC/openSUSE:Factory/.sound-juicer.new.1898/sound-juicer.changes 2022-02-04 21:52:16.235203578 +0100 @@ -1,0 +2,6 @@ +Tue Feb 1 15:56:31 UTC 2022 - Bj??rn Lie <bjorn....@gmail.com> + +- Add 9f97ca1faca396099f52264a9729aa355f8d122e.patch: Fix build + with meson 0.60.0 and newer. + +------------------------------------------------------------------- New: ---- 9f97ca1faca396099f52264a9729aa355f8d122e.patch ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Other differences: ------------------ ++++++ sound-juicer.spec ++++++ --- /var/tmp/diff_new_pack.5DncG2/_old 2022-02-04 21:52:16.723200222 +0100 +++ /var/tmp/diff_new_pack.5DncG2/_new 2022-02-04 21:52:16.735200139 +0100 @@ -1,7 +1,7 @@ # # spec file for package sound-juicer # -# 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,6 +24,9 @@ Group: Productivity/Multimedia/CD/Grabbers URL: http://www.burtonini.com/blog/computers/sound-juicer/ Source0: https://download.gnome.org/sources/sound-juicer/3.38/%{name}-%{version}.tar.xz +# PATCH-FIX-UPSTREAM 9f97ca1faca396099f52264a9729aa355f8d122e.patch -- Fix build with meson 0.60.0 and newer +Patch0: https://gitlab.gnome.org/GNOME/sound-juicer/-/commit/9f97ca1faca396099f52264a9729aa355f8d122e.patch + BuildRequires: brasero-devel BuildRequires: fdupes BuildRequires: meson @@ -51,7 +54,7 @@ %lang_package %prep -%setup -q +%autosetup -p1 %build %meson ++++++ 9f97ca1faca396099f52264a9729aa355f8d122e.patch ++++++ >From 9f97ca1faca396099f52264a9729aa355f8d122e Mon Sep 17 00:00:00 2001 From: Jan Beich <jbe...@freebsd.org> Date: Tue, 25 Jan 2022 12:15:31 +0000 Subject: [PATCH] meson: drop unused argument for i18n.merge_file() Ignored in Meson < 0.60.0, deprecated since 0.60.1 and fatal since 0.61.0. data/meson.build:2:0: ERROR: Function does not take positional arguments. data/meson.build:31:0: ERROR: Function does not take positional arguments. --- data/meson.build | 2 -- 1 file changed, 2 deletions(-) diff --git a/data/meson.build b/data/meson.build index ccff2d80..4dac8166 100644 --- a/data/meson.build +++ b/data/meson.build @@ -1,6 +1,5 @@ # Desktop file i18n.merge_file( - 'desktop', input: configure_file( input: 'org.gnome.SoundJuicer.desktop.in.in', output: 'org.gnome.SoundJuicer.desktop.in', @@ -29,7 +28,6 @@ configure_file( # Metainfo metainfo_file = i18n.merge_file( - 'metainfo', input: files(join_paths('metainfo', 'org.gnome.SoundJuicer.metainfo.xml.in')), output: 'org.gnome.SoundJuicer.metainfo.xml', po_dir: po_dir, -- GitLab