Script 'mail_helper' called by obssrc Hello community, here is the log from the commit of package fooyin for openSUSE:Factory checked in at 2026-01-02 14:27:24 ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Comparing /work/SRC/openSUSE:Factory/fooyin (Old) and /work/SRC/openSUSE:Factory/.fooyin.new.1928 (New) ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Package is "fooyin" Fri Jan 2 14:27:24 2026 rev:12 rq:1324950 version:0.9.2 Changes: -------- --- /work/SRC/openSUSE:Factory/fooyin/fooyin.changes 2025-09-29 16:38:30.086213478 +0200 +++ /work/SRC/openSUSE:Factory/.fooyin.new.1928/fooyin.changes 2026-01-02 14:27:36.014169317 +0100 @@ -1,0 +2,11 @@ +Thu Jan 1 12:36:52 UTC 2026 - Andreas Prittwitz <[email protected]> + +- Fix build in openSUSE Tumbleweed + * add Fix-compatibility-with-Qt-6.10.1.patch + see https://github.com/fooyin/fooyin/issues/779 + * add Add-missing-header-include-for-QElapsedTimer-class.patch + see https://github.com/fooyin/fooyin/pull/725 + * add ffmpeg-7-mini-devel as BuildRequires, fixes conflict with + ffmepg-8-mini-devel + +------------------------------------------------------------------- New: ---- Add-missing-header-include-for-QElapsedTimer-class.patch Fix-compatibility-with-Qt-6.10.1.patch ----------(New B)---------- New: see https://github.com/fooyin/fooyin/issues/779 * add Add-missing-header-include-for-QElapsedTimer-class.patch see https://github.com/fooyin/fooyin/pull/725 New:- Fix build in openSUSE Tumbleweed * add Fix-compatibility-with-Qt-6.10.1.patch see https://github.com/fooyin/fooyin/issues/779 ----------(New E)---------- ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Other differences: ------------------ ++++++ fooyin.spec ++++++ --- /var/tmp/diff_new_pack.2Qm69v/_old 2026-01-02 14:27:36.590193152 +0100 +++ /var/tmp/diff_new_pack.2Qm69v/_new 2026-01-02 14:27:36.590193152 +0100 @@ -1,7 +1,7 @@ # # spec file for package fooyin # -# Copyright (c) 2025 SUSE LLC and contributors +# 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 @@ -23,10 +23,19 @@ License: GPL-3.0-only URL: https://www.fooyin.org/ Source0: https://github.com/fooyin/fooyin/archive/v%{version}/%{name}-%{version}.tar.gz - +# Patch0 fixes build with QT 6.10.1 in fooyin 0.9.2 +# see https://github.com/fooyin/fooyin/issues/779 +# fixed upstream in master-branch, can be removed in the next version +Patch0: Fix-compatibility-with-Qt-6.10.1.patch +# Patch1 fixes build with QT 6.10.1 in fooyin 0.9.2 +# see https://github.com/fooyin/fooyin/pull/725 +# fixed upstream in master-branch, can be removed in the next version +Patch1: Add-missing-header-include-for-QElapsedTimer-class.patch BuildRequires: c++_compiler BuildRequires: desktop-file-utils BuildRequires: fdupes +# Fixes conflict with ffmepg-8-mini-devel +BuildRequires: ffmpeg-7-mini-devel BuildRequires: hicolor-icon-theme BuildRequires: ninja BuildRequires: qt6-base-devel ++++++ Add-missing-header-include-for-QElapsedTimer-class.patch ++++++ diff --git a/src/plugins/vumeter/vumeterwidget.cpp b/src/plugins/vumeter/vumeterwidget.cpp index 786f24b5b..7ccd3db06 100644 --- a/src/plugins/vumeter/vumeterwidget.cpp +++ b/src/plugins/vumeter/vumeterwidget.cpp @@ -32,6 +32,7 @@ #include <QActionGroup> #include <QBasicTimer> +#include <QElapsedTimer> #include <QContextMenuEvent> #include <QJsonObject> #include <QMenu> ++++++ Fix-compatibility-with-Qt-6.10.1.patch ++++++ diff --git a/src/utils/starrating.cpp b/src/utils/starrating.cpp index 1e71e181..9c96e95e 100644 --- a/src/utils/starrating.cpp +++ b/src/utils/starrating.cpp @@ -104,7 +104,7 @@ void StarRating::paint(QPainter* painter, const QRect& rect, const QPalette& pal .arg(m_maxCount) .arg(mode == EditMode::Editable ? 1 : 0) .arg(rect.width()) - .arg(alignment); + .arg(alignment.toInt()); QPixmap pixmap; if(!QPixmapCache::find(cacheKey, &pixmap)) {
