[packages/kf6-kimageformats] - added jxr patch to fix build with 32-bit size_t; release 4
qboosh
qboosh at pld-linux.org
Sun Mar 9 13:05:14 CET 2025
commit c5d2155cfd8911c768de2234f74e2e52ff74f607
Author: Jakub Bogusz <qboosh at pld-linux.org>
Date: Sun Mar 9 12:13:11 2025 +0100
- added jxr patch to fix build with 32-bit size_t; release 4
kf6-kimageformats.spec | 4 +++-
kimageformats-jxr.patch | 11 +++++++++++
2 files changed, 14 insertions(+), 1 deletion(-)
---
diff --git a/kf6-kimageformats.spec b/kf6-kimageformats.spec
index 93ba2ba..6c3e9c1 100644
--- a/kf6-kimageformats.spec
+++ b/kf6-kimageformats.spec
@@ -13,11 +13,12 @@ Summary: Image format plugins for Qt
Summary(pl.UTF-8): Wtyczki formatów obrazów dla Qt
Name: kf6-%{kfname}
Version: 6.11.0
-Release: 3
+Release: 4
License: LGPL v2.1+
Group: X11/Libraries
Source0: https://download.kde.org/stable/frameworks/%{kdeframever}/%{kfname}-%{version}.tar.xz
# Source0-md5: 4f035f9b0466e297bd95ee57eb53f820
+Patch0: kimageformats-jxr.patch
URL: https://kde.org/
BuildRequires: OpenEXR-devel >= 3.0
BuildRequires: Qt6Core-devel >= %{qt_ver}
@@ -100,6 +101,7 @@ Następujące formaty obrazów mają obsługę odczytu i zapisu:
%prep
%setup -q -n %{kfname}-%{version}
+%patch -P0 -p1
%build
%cmake -B build \
diff --git a/kimageformats-jxr.patch b/kimageformats-jxr.patch
new file mode 100644
index 0000000..9181765
--- /dev/null
+++ b/kimageformats-jxr.patch
@@ -0,0 +1,11 @@
+--- kimageformats-6.11.0/src/imageformats/jxr.cpp.orig 2025-02-07 15:01:34.000000000 +0100
++++ kimageformats-6.11.0/src/imageformats/jxr.cpp 2025-03-09 12:07:48.137425052 +0100
+@@ -859,7 +859,7 @@ bool JXRHandler::read(QImage *outImage)
+ return false;
+ }
+ for (qint32 y = 0, h = img.height(); y < h; ++y) {
+- std::memcpy(img.scanLine(y), ba.data() + convStrideSize * y, (std::min)(convStrideSize, img.bytesPerLine()));
++ std::memcpy(img.scanLine(y), ba.data() + convStrideSize * y, (std::min<qint64>)(convStrideSize, img.bytesPerLine()));
+ }
+ }
+ PKFormatConverter_Release(&pConverter);
================================================================
---- gitweb:
http://git.pld-linux.org/gitweb.cgi/packages/kf6-kimageformats.git/commitdiff/c5d2155cfd8911c768de2234f74e2e52ff74f607
More information about the pld-cvs-commit
mailing list