public inbox for git-commits@fedoraproject.org
help / color / mirror / Atom feed
* [rpms/fooyin] f44: Fix 32bit build
@ 2026-06-23  8:57 Elaine Gibson
  0 siblings, 0 replies; only message in thread
From: Elaine Gibson @ 2026-06-23  8:57 UTC (permalink / raw)
  To: git-commits

A new commit has been pushed.

Repo   : rpms/fooyin
Branch : f44
Commit : cc2d3102b94946f58212f5bd440e81e39db01d6e
Author : Elaine Gibson <ypsvlq@gmail.com>
Date   : 2026-06-23T09:56:00+01:00
Stats  : +23/-0 in 2 file(s)
URL    : https://src.fedoraproject.org/rpms/fooyin/c/cc2d3102b94946f58212f5bd440e81e39db01d6e?branch=f44

Log:
Fix 32bit build

---
diff --git a/f1890bdb45629cc02c2beb182e2091e86f75c5bc.patch b/f1890bdb45629cc02c2beb182e2091e86f75c5bc.patch
new file mode 100644
index 0000000..6365109
--- /dev/null
+++ b/f1890bdb45629cc02c2beb182e2091e86f75c5bc.patch
@@ -0,0 +1,22 @@
+From f1890bdb45629cc02c2beb182e2091e86f75c5bc Mon Sep 17 00:00:00 2001
+From: Elaine Gibson <ypsvlq@gmail.com>
+Date: Tue, 23 Jun 2026 09:52:52 +0100
+Subject: [PATCH] [radiobrowser] Fix 32bit build
+
+---
+ src/plugins/radiobrowser/radioiconprovider.cpp | 2 +-
+ 1 file changed, 1 insertion(+), 1 deletion(-)
+
+diff --git a/src/plugins/radiobrowser/radioiconprovider.cpp b/src/plugins/radiobrowser/radioiconprovider.cpp
+index c326b16d5..8b7f13cf6 100644
+--- a/src/plugins/radiobrowser/radioiconprovider.cpp
++++ b/src/plugins/radiobrowser/radioiconprovider.cpp
+@@ -52,7 +52,7 @@ QByteArray readReplyData(QNetworkReply* reply, const qsizetype maxBytes)
+        || reply->bytesAvailable() <= 0) {
+         return {};
+     }
+-    return reply->read(std::min(maxBytes, reply->bytesAvailable()));
++    return reply->read(std::min(static_cast<qint64>(maxBytes), reply->bytesAvailable()));
+ }
+ 
+ QSize calculateScaledSize(const QSize& originalSize, int maxSize)

diff --git a/fooyin.spec b/fooyin.spec
index a3621ca..7030895 100644
--- a/fooyin.spec
+++ b/fooyin.spec
@@ -6,6 +6,7 @@ Summary:        A customizable music player
 License:        GPL-3.0-or-later
 URL:            https://www.fooyin.org/
 Source0:        https://github.com/fooyin/fooyin/archive/v%{version}/fooyin-%{version}.tar.gz
+Patch0:         https://github.com/fooyin/fooyin/commit/f1890bdb45629cc02c2beb182e2091e86f75c5bc.patch
 
 BuildRequires:  cmake
 BuildRequires:  gcc-c++

^ permalink raw reply related	[flat|nested] only message in thread

only message in thread, other threads:[~2026-06-23  8:57 UTC | newest]

Thread overview: (only message) (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2026-06-23  8:57 [rpms/fooyin] f44: Fix 32bit build Elaine Gibson

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox