Script 'mail_helper' called by obssrc Hello community, here is the log from the commit of package gpaste for openSUSE:Factory checked in at 2022-02-04 21:49:14 ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Comparing /work/SRC/openSUSE:Factory/gpaste (Old) and /work/SRC/openSUSE:Factory/.gpaste.new.1898 (New) ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Package is "gpaste" Fri Feb 4 21:49:14 2022 rev:34 rq:951442 version:3.42.2 Changes: -------- --- /work/SRC/openSUSE:Factory/gpaste/gpaste.changes 2021-11-24 23:55:08.588343953 +0100 +++ /work/SRC/openSUSE:Factory/.gpaste.new.1898/gpaste.changes 2022-02-04 21:52:25.415140436 +0100 @@ -1,0 +2,7 @@ +Wed Feb 2 20:11:25 UTC 2022 - Bj??rn Lie <[email protected]> + +- Add 1ec2699daa600e34d73b8d200dd7bb22f4eace27.patch: Fix build + with meson 0.61 and newer. +- Use ldconfig_scriptlets macro for post(un) handling. + +------------------------------------------------------------------- New: ---- 1ec2699daa600e34d73b8d200dd7bb22f4eace27.patch ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Other differences: ------------------ ++++++ gpaste.spec ++++++ --- /var/tmp/diff_new_pack.ChTTMk/_old 2022-02-04 21:52:25.863137355 +0100 +++ /var/tmp/diff_new_pack.ChTTMk/_new 2022-02-04 21:52:25.867137327 +0100 @@ -1,7 +1,7 @@ # # spec file for package gpaste # -# Copyright (c) 2021 SUSE LLC +# Copyright (c) 2022 SUSE LLC # Copyright (c) 2012 Simone Tolotti, <[email protected]>. # # All modifications and additions to the file contributed by third parties @@ -26,6 +26,9 @@ Group: System/GUI/GNOME URL: https://github.com/Keruspe/GPaste Source0: http://www.imagination-land.org/files/%{name}/%{name}-%{version}.tar.xz +# PATCH-FIX-UPSTREAM 1ec2699daa600e34d73b8d200dd7bb22f4eace27.patch -- Fix build with meson 0.61 and newer +Patch0: https://github.com/Keruspe/GPaste/commit/1ec2699daa600e34d73b8d200dd7bb22f4eace27.patch + # For directory ownership BuildRequires: gnome-shell >= 3.28 BuildRequires: gobject-introspection-devel >= 1.58.0 @@ -132,8 +135,7 @@ desktop-file-edit --set-icon=edit-paste --remove-key Categories --add-category=Applet --add-only-show-in=GNOME %{buildroot}%{_datadir}/applications/org.gnome.GPaste.Ui.desktop %find_lang GPaste %{?no_lang_C} -%post -n libgpaste13 -p /sbin/ldconfig -%postun -n libgpaste13 -p /sbin/ldconfig +%ldconfig_scriptlets -n libgpaste13 %files %license COPYING ++++++ 1ec2699daa600e34d73b8d200dd7bb22f4eace27.patch ++++++ >From 1ec2699daa600e34d73b8d200dd7bb22f4eace27 Mon Sep 17 00:00:00 2001 From: Marc-Antoine Perennou <[email protected]> Date: Fri, 7 Jan 2022 10:42:41 +0100 Subject: [PATCH] fix build with meson 0.60 Fixes #385 Signed-off-by: Marc-Antoine Perennou <[email protected]> --- data/appstream/meson.build | 3 +-- data/desktop/meson.build | 3 +-- meson.build | 2 +- 3 files changed, 3 insertions(+), 5 deletions(-) diff --git a/data/appstream/meson.build b/data/appstream/meson.build index 8f5fe29a..f279be66 100644 --- a/data/appstream/meson.build +++ b/data/appstream/meson.build @@ -1,8 +1,7 @@ i18n.merge_file( - 'gpaste-appdata', input: 'org.gnome.GPaste.Ui.appdata.xml.in', po_dir: gpaste_po_dir, output: 'org.gnome.GPaste.Ui.appdata.xml', install: true, install_dir: join_paths(get_option('datadir'), 'metainfo'), -) \ No newline at end of file +) diff --git a/data/desktop/meson.build b/data/desktop/meson.build index 6268765c..18be1b69 100644 --- a/data/desktop/meson.build +++ b/data/desktop/meson.build @@ -5,11 +5,10 @@ untranslated_desktop_file = configure_file( ) i18n.merge_file( - 'gpaste-desktop-file', input: untranslated_desktop_file, po_dir: gpaste_po_dir, type: 'desktop', output: 'org.gnome.GPaste.Ui.desktop', install: true, install_dir: join_paths(get_option('datadir'), 'applications'), -) \ No newline at end of file +) diff --git a/meson.build b/meson.build index 1b0095f3..676ad4e3 100644 --- a/meson.build +++ b/meson.build @@ -1,6 +1,6 @@ project('GPaste', 'c', - version: '3.42.1', + version: '3.42.2', meson_version: '>=0.50.0', )
