Script 'mail_helper' called by obssrc Hello community, here is the log from the commit of package gtranslator for openSUSE:Factory checked in at 2022-02-04 21:49:02 ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Comparing /work/SRC/openSUSE:Factory/gtranslator (Old) and /work/SRC/openSUSE:Factory/.gtranslator.new.1898 (New) ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Package is "gtranslator" Fri Feb 4 21:49:02 2022 rev:44 rq:951403 version:40.0 Changes: -------- --- /work/SRC/openSUSE:Factory/gtranslator/gtranslator.changes 2021-05-21 21:50:27.642122967 +0200 +++ /work/SRC/openSUSE:Factory/.gtranslator.new.1898/gtranslator.changes 2022-02-04 21:52:08.915254014 +0100 @@ -1,0 +2,8 @@ +Wed Feb 2 17:08:41 UTC 2022 - Bj??rn Lie <bjorn....@gmail.com> + +- Add 7ac572cc8c8c37ca3826ecf0d395edd3c38e8e22.patch: Fix build + with meson 0.61 and newer. +- Drop update-desktop-files BuildRequires and macro, no longer + needed. + +------------------------------------------------------------------- New: ---- 7ac572cc8c8c37ca3826ecf0d395edd3c38e8e22.patch ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Other differences: ------------------ ++++++ gtranslator.spec ++++++ --- /var/tmp/diff_new_pack.DTdhrj/_old 2022-02-04 21:52:09.407250623 +0100 +++ /var/tmp/diff_new_pack.DTdhrj/_new 2022-02-04 21:52:09.411250596 +0100 @@ -1,7 +1,7 @@ # # spec file for package gtranslator # -# Copyright (c) 2020 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 @@ -27,13 +27,15 @@ Source99: gtranslator-rpmlintrc # PATCH-FIX-UPSTREAM libgda-6.patch gm...@opensuse.org -- Require and support GDA 6 Patch0: libgda-6.patch +# PATCH-FIX-UPSTREAM 7ac572cc8c8c37ca3826ecf0d395edd3c38e8e22.patch -- Fix build with meson 0.61 and newer +Patch1: https://gitlab.gnome.org/GNOME/gtranslator/-/commit/7ac572cc8c8c37ca3826ecf0d395edd3c38e8e22.patch + BuildRequires: fdupes BuildRequires: gettext-tools BuildRequires: intltool BuildRequires: itstool BuildRequires: meson >= 0.46.0 BuildRequires: pkgconfig -BuildRequires: update-desktop-files BuildRequires: yelp-tools BuildRequires: pkgconfig(gio-2.0) >= 2.36.0 BuildRequires: pkgconfig(glib-2.0) >= 2.36.0 @@ -46,9 +48,9 @@ BuildRequires: pkgconfig(json-glib-1.0) >= 1.2.0 BuildRequires: pkgconfig(libdazzle-1.0) >= 3.33.90 BuildRequires: pkgconfig(libgda-6.0) >= 6.0.0 +BuildRequires: pkgconfig(libhandy-1) BuildRequires: pkgconfig(libsoup-2.4) BuildRequires: pkgconfig(libxml-2.0) >= 2.4.12 -BuildRequires: pkgconfig(libhandy-1) Requires: gsettings-desktop-schemas Requires: iso-codes Requires: libgda-sqlite >= 6.0.0 @@ -79,9 +81,8 @@ %install %meson_install find %{buildroot} -type f -name "gtr-marshal.h" -delete -print -%suse_update_desktop_file -r org.gnome.Gtranslator GNOME GTK Development Translation %find_lang %{name} -%fdupes %{buildroot}/%{_prefix} +%fdupes %{buildroot}%{_prefix} %files %license COPYING ++++++ 7ac572cc8c8c37ca3826ecf0d395edd3c38e8e22.patch ++++++ >From 7ac572cc8c8c37ca3826ecf0d395edd3c38e8e22 Mon Sep 17 00:00:00 2001 From: Jan Beich <jbe...@freebsd.org> Date: Mon, 24 Jan 2022 11:57:43 +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:15:0: ERROR: Function does not take positional arguments. data/meson.build:37: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 2ca0be0b..2ebbfb12 100644 --- a/data/meson.build +++ b/data/meson.build @@ -13,7 +13,6 @@ desktop_in = configure_file( ) i18n.merge_file( - desktop, type: 'desktop', input: desktop_in, output: '@0@.desktop'.format(gtr_app_id), @@ -35,7 +34,6 @@ appdata_in = configure_file( ) i18n.merge_file( - appdata, input: appdata_in, output: appdata, po_dir: po_dir, -- GitLab