Script 'mail_helper' called by obssrc Hello community, here is the log from the commit of package font-manager for openSUSE:Factory checked in at 2026-05-04 12:51:25 ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Comparing /work/SRC/openSUSE:Factory/font-manager (Old) and /work/SRC/openSUSE:Factory/.font-manager.new.30200 (New) ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Package is "font-manager" Mon May 4 12:51:25 2026 rev:12 rq:1350386 version:0.9.4 Changes: -------- --- /work/SRC/openSUSE:Factory/font-manager/font-manager.changes 2025-03-10 18:06:36.073752565 +0100 +++ /work/SRC/openSUSE:Factory/.font-manager.new.30200/font-manager.changes 2026-05-04 12:54:32.848023954 +0200 @@ -1,0 +2,6 @@ +Fri May 1 15:32:42 UTC 2026 - Jan Baier <[email protected]> + +- Add 0002-Fix-compilation-error-with-newer-Vala-versions.patch +- Update 0001-reproducible-build.patch + +------------------------------------------------------------------- New: ---- 0002-Fix-compilation-error-with-newer-Vala-versions.patch ----------(New B)---------- New: - Add 0002-Fix-compilation-error-with-newer-Vala-versions.patch - Update 0001-reproducible-build.patch ----------(New E)---------- ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Other differences: ------------------ ++++++ font-manager.spec ++++++ --- /var/tmp/diff_new_pack.rc4tAP/_old 2026-05-04 12:54:33.516051449 +0200 +++ /var/tmp/diff_new_pack.rc4tAP/_new 2026-05-04 12:54:33.516051449 +0200 @@ -1,7 +1,7 @@ # # spec file for package font-manager # -# Copyright (c) 2025 SUSE LLC +# Copyright (c) 2026 SUSE LLC and contributors # # 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 @@ URL: https://fontmanager.github.io Source0: https://github.com/FontManager/%{name}/releases/download/%{version}/%{name}-%{version}.tar.xz Patch1: 0001-reproducible-build.patch +# PATCH-FIX-UPSTREAM 0002-Fix-compilation-error-with-newer-Vala-versions.patch -- based on commit e2ad529a +Patch2: 0002-Fix-compilation-error-with-newer-Vala-versions.patch BuildRequires: appstream-glib BuildRequires: gettext-runtime BuildRequires: libgio-2_0-0 >= 2.7 @@ -106,7 +108,11 @@ This package provides integration with the Thunar file manager. %prep -%autosetup -p0 +%setup -q +%patch -P 1 -p1 +%if 0%{?suse_version} > 1600 +%patch -P 2 -p1 +%endif %build %meson \ ++++++ 0001-reproducible-build.patch ++++++ --- /var/tmp/diff_new_pack.rc4tAP/_old 2026-05-04 12:54:33.544052601 +0200 +++ /var/tmp/diff_new_pack.rc4tAP/_new 2026-05-04 12:54:33.548052766 +0200 @@ -1,7 +1,7 @@ diff --git meson.build meson.build index cf5829ed..53948969 100644 ---- meson.build -+++ meson.build +--- a/meson.build ++++ b/meson.build @@ -73,8 +73,10 @@ pkglib_dir = join_paths(prefix, get_option('libdir'), meson.project_name()) pkglibexec_dir = join_paths(prefix, get_option('libexecdir'), meson.project_name()) ++++++ 0002-Fix-compilation-error-with-newer-Vala-versions.patch ++++++ >From e2ad529a88929bbc76906ac78260dacf4d8c8c6b Mon Sep 17 00:00:00 2001 From: Jan Baier <[email protected]> Date: Fri, 1 May 2026 17:25:25 +0200 Subject: [PATCH] Fix compilation error with newer Vala versions Fixes #467 --- src/font-manager/Collections.vala | 2 +- src/font-manager/FontList.vala | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/src/font-manager/Collections.vala b/src/font-manager/Collections.vala index 5e7f5cdb..43531e54 100644 --- a/src/font-manager/Collections.vala +++ b/src/font-manager/Collections.vala @@ -523,7 +523,7 @@ namespace FontManager { var row = ((CollectionListRow) source.widget); var drag_icon = new Gtk.Label(row.item_label.label); drag_icon.add_css_class("FontManagerListRowDrag"); - var gtk_drag_icon = (Gtk.DragIcon) Gtk.DragIcon.get_for_drag(drag); + var gtk_drag_icon = new Gtk.DragIcon.get_for_drag(drag); gtk_drag_icon.set_child(drag_icon); return; } diff --git a/src/font-manager/FontList.vala b/src/font-manager/FontList.vala index c8b170cb..9720dc2b 100644 --- a/src/font-manager/FontList.vala +++ b/src/font-manager/FontList.vala @@ -669,7 +669,7 @@ namespace FontManager { widget_set_name(drag_count, "FontManagerListDragCount"); drag_icon.add_overlay(drag_count); drag_count.set_label(selected_items.length.to_string()); - var gtk_drag_icon = (Gtk.DragIcon) Gtk.DragIcon.get_for_drag(drag); + var gtk_drag_icon = new Gtk.DragIcon.get_for_drag(drag); gtk_drag_icon.set_child(drag_icon); return; } -- 2.54.0
