Script 'mail_helper' called by obssrc Hello community, here is the log from the commit of package vocal for openSUSE:Factory checked in at 2022-06-26 11:59:29 ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Comparing /work/SRC/openSUSE:Factory/vocal (Old) and /work/SRC/openSUSE:Factory/.vocal.new.1548 (New) ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Package is "vocal" Sun Jun 26 11:59:29 2022 rev:12 rq:985086 version:2.4.2 Changes: -------- --- /work/SRC/openSUSE:Factory/vocal/vocal.changes 2021-10-08 00:07:18.325880968 +0200 +++ /work/SRC/openSUSE:Factory/.vocal.new.1548/vocal.changes 2022-06-26 11:59:30.472374872 +0200 @@ -1,0 +2,5 @@ +Sat Jun 25 20:57:41 UTC 2022 - Antoine Belvire <[email protected]> + +- Add vocal-2.4.2-vala-0.56.patch: Fix build with Vala 0.56. + +------------------------------------------------------------------- New: ---- vocal-2.4.2-vala-0.56.patch ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Other differences: ------------------ ++++++ vocal.spec ++++++ --- /var/tmp/diff_new_pack.0z2zIW/_old 2022-06-26 11:59:31.052375716 +0200 +++ /var/tmp/diff_new_pack.0z2zIW/_new 2022-06-26 11:59:31.060375728 +0200 @@ -1,7 +1,7 @@ # # spec file for package vocal # -# 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,8 @@ Source: https://github.com/needle-and-thread/vocal/archive/%{version}.tar.gz # PATCH-FIX-UPSTREAM vocal-fix-build.patch -- https://github.com/needle-and-thread/vocal/issues/483 Patch: vocal-fix-build.patch +# PATCH-FIX-UPSTREAM vocal-2.4.2-vala-0.56.patch -- https://github.com/VocalPodcastProject/vocal/pull/503, rebased on 2.4.2 +Patch1: vocal-2.4.2-vala-0.56.patch BuildRequires: cmake BuildRequires: fdupes BuildRequires: gcc-c++ ++++++ vocal-2.4.2-vala-0.56.patch ++++++ >From bff6ca4ee0ddc194abbc736e88a6478d06008b55 Mon Sep 17 00:00:00 2001 From: Bobby Rong <[email protected]> Date: Mon, 14 Mar 2022 23:08:48 +0800 Subject: [PATCH] Fix build with vala 0.56 Otherwise the build fails with /build/vocal/src/Vocal.vala:67.50-70.9: error: value is less accessible than constant `Vocal.VocalApp.app_options' --- src/Vocal.vala | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/Vocal.vala b/src/Vocal.vala index 2a64a95..7b511e3 100644 --- a/src/Vocal.vala +++ b/src/Vocal.vala @@ -62,7 +62,7 @@ namespace Vocal { set_options(); } - public const OptionEntry[] app_options = { + private const OptionEntry[] app_options = { { "hidden", 'h', 0, OptionArg.NONE, out Option.OPEN_HIDDEN, "Open without displaying the window so podcasts will continue to update", null }, { null } };
