Script 'mail_helper' called by obssrc Hello community, here is the log from the commit of package simple-scan for openSUSE:Factory checked in at 2022-01-20 00:12:07 ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Comparing /work/SRC/openSUSE:Factory/simple-scan (Old) and /work/SRC/openSUSE:Factory/.simple-scan.new.1892 (New) ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Package is "simple-scan" Thu Jan 20 00:12:07 2022 rev:81 rq:947052 version:40.7 Changes: -------- --- /work/SRC/openSUSE:Factory/simple-scan/simple-scan.changes 2021-12-24 20:23:19.506023977 +0100 +++ /work/SRC/openSUSE:Factory/.simple-scan.new.1892/simple-scan.changes 2022-01-20 00:12:52.198605101 +0100 @@ -1,0 +2,6 @@ +Mon Jan 17 16:39:58 UTC 2022 - Dominique Leuenberger <dims...@opensuse.org> + +- Add 200.patch: Fix accessibility conflict of constant and its + value. Fixes build with vala 0.55.x. + +------------------------------------------------------------------- New: ---- 200.patch ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Other differences: ------------------ ++++++ simple-scan.spec ++++++ --- /var/tmp/diff_new_pack.qbO6AH/_old 2022-01-20 00:12:52.746605543 +0100 +++ /var/tmp/diff_new_pack.qbO6AH/_new 2022-01-20 00:12:52.750605547 +0100 @@ -1,7 +1,7 @@ # # spec file for package simple-scan # -# 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,8 @@ Group: System/GUI/GNOME URL: https://gitlab.gnome.org/GNOME/simple-scan Source0: https://download.gnome.org/sources/simple-scan/40/%{name}-%{version}.tar.xz - +# PATCH-FIX-UPSTREAM 200.patch dims...@opensuse.org -- Fix accessibility conflict of constant and its value +Patch0: https://gitlab.gnome.org/GNOME/simple-scan/-/merge_requests/200.patch BuildRequires: fdupes BuildRequires: meson BuildRequires: pkgconfig ++++++ 200.patch ++++++ >From c50802b213c325cfa957d66955f6de96908710d9 Mon Sep 17 00:00:00 2001 From: Rico Tzschichholz <ric...@ubuntu.com> Date: Sat, 6 Nov 2021 19:46:07 +0100 Subject: [PATCH] Fix accessibility conflict of constant and its value --- src/simple-scan.vala | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/simple-scan.vala b/src/simple-scan.vala index c15a5418..71f32de9 100644 --- a/src/simple-scan.vala +++ b/src/simple-scan.vala @@ -14,7 +14,7 @@ public class SimpleScan : Gtk.Application static bool show_version; static bool debug_enabled; static string? fix_pdf_filename = null; - public const OptionEntry[] options = + const OptionEntry[] options = { { "version", 'v', 0, OptionArg.NONE, ref show_version, /* Help string for command line --version flag */ -- GitLab