Script 'mail_helper' called by obssrc Hello community, here is the log from the commit of package virt-viewer for openSUSE:Factory checked in at 2022-02-28 19:44:02 ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Comparing /work/SRC/openSUSE:Factory/virt-viewer (Old) and /work/SRC/openSUSE:Factory/.virt-viewer.new.1958 (New) ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Package is "virt-viewer" Mon Feb 28 19:44:02 2022 rev:72 rq:958083 version:11.0 Changes: -------- --- /work/SRC/openSUSE:Factory/virt-viewer/virt-viewer.changes 2021-12-02 02:28:11.219999520 +0100 +++ /work/SRC/openSUSE:Factory/.virt-viewer.new.1958/virt-viewer.changes 2022-02-28 19:44:31.981962928 +0100 @@ -1,0 +2,6 @@ +Wed Feb 23 08:47:18 UTC 2022 - Bj��rn Lie <bjorn.lie@gmail.com> + +- Fix build with meson 0.60 and newer. + virtview-fix-build-with-meson-0.61.patch + +------------------------------------------------------------------- New: ---- virtview-fix-build-with-meson-0.61.patch ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Other differences: ------------------ ++++++ virt-viewer.spec ++++++ --- /var/tmp/diff_new_pack.MOM5Gb/_old 2022-02-28 19:44:32.697963081 +0100 +++ /var/tmp/diff_new_pack.MOM5Gb/_new 2022-02-28 19:44:32.705963083 +0100 @@ -1,7 +1,7 @@ # # spec file for package virt-viewer # -# 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 @@ -35,6 +35,7 @@ Patch50: netcat.patch Patch51: virtview-desktop.patch Patch52: virtview-dont-show-Domain-0.patch +Patch53: virtview-fix-build-with-meson-0.61.patch BuildRoot: %{_tmppath}/%{name}-%{version}-build BuildRequires: bash-completion-devel ++++++ virtview-fix-build-with-meson-0.61.patch ++++++ From 41cc016278e713d3db156761fce6437dff81a53a Mon Sep 17 00:00:00 2001 From: Michal Vasilek <michal@vasilek.cz> Date: Sat, 22 Jan 2022 23:28:20 +0100 Subject: [PATCH] meson: fix build with meson 0.61 i18n.merge_file doesn't accept positional arguments --- data/meson.build | 3 --- 1 file changed, 3 deletions(-) diff --git a/data/meson.build b/data/meson.build index d718491..4325108 100644 --- a/data/meson.build +++ b/data/meson.build @@ -2,7 +2,6 @@ if host_machine.system() != 'windows' desktop = 'remote-viewer.desktop' i18n.merge_file ( - desktop, type: 'desktop', input: desktop + '.in', output: desktop, @@ -14,7 +13,6 @@ if host_machine.system() != 'windows' mimetypes = 'virt-viewer-mime.xml' i18n.merge_file ( - mimetypes, type: 'xml', input: mimetypes + '.in', output: mimetypes, @@ -27,7 +25,6 @@ if host_machine.system() != 'windows' metainfo = 'remote-viewer.appdata.xml' i18n.merge_file ( - metainfo, type: 'xml', input: metainfo + '.in', output: metainfo,
participants (1)
-
Source-Sync