public inbox for git-commits@fedoraproject.org
help / color / mirror / Atom feed
* [rpms/digikam] rawhide: digiKam-9.1.0
@ 2026-06-08 14:02 nucleo
0 siblings, 0 replies; only message in thread
From: nucleo @ 2026-06-08 14:02 UTC (permalink / raw)
To: git-commits
A new commit has been pushed.
Repo : rpms/digikam
Branch : rawhide
Commit : 717f5fa528ea375ede9e52700833c9c518395b5e
Author : nucleo <nucleo@fedoraproject.org>
Date : 2026-06-08T17:02:41+03:00
Stats : +7/-66 in 4 file(s)
URL : https://src.fedoraproject.org/rpms/digikam/c/717f5fa528ea375ede9e52700833c9c518395b5e?branch=rawhide
Log:
digiKam-9.1.0
---
diff --git a/.gitignore b/.gitignore
index 3c0601e..d20c052 100644
--- a/.gitignore
+++ b/.gitignore
@@ -27,3 +27,4 @@
/digiKam-8.7.0.tar.xz
/digiKam-8.8.0.tar.xz
/digiKam-9.0.0.tar.xz
+/digiKam-9.1.0.tar.xz
diff --git a/9dd5e992b71b6a855fc419114344d4bd181bc08f.patch b/9dd5e992b71b6a855fc419114344d4bd181bc08f.patch
deleted file mode 100644
index 0bebf83..0000000
--- a/9dd5e992b71b6a855fc419114344d4bd181bc08f.patch
+++ /dev/null
@@ -1,63 +0,0 @@
-From 9dd5e992b71b6a855fc419114344d4bd181bc08f Mon Sep 17 00:00:00 2001
-From: Maik Qualmann <metzpinguin@gmail.com>
-Date: Sun, 15 Mar 2026 20:23:21 +0100
-Subject: [PATCH] use the QImage Loader if JPEG2000 is available. Since
- jas_init_library() and jas_cleanup_library() can only be called once in the
- main thread, it is almost impossible to handle them if another Jasper Loader
- is present in a library. BUGS: 517588 FIXED-IN: 9.1.0
-
----
- NEWS | 2 +-
- .../dplugins/dimg/jpeg2000/dimgjpeg2000plugin.cpp | 15 +++++++++++++--
- 2 files changed, 14 insertions(+), 3 deletions(-)
-
-diff --git a/core/dplugins/dimg/jpeg2000/dimgjpeg2000plugin.cpp b/core/dplugins/dimg/jpeg2000/dimgjpeg2000plugin.cpp
-index e1d56e9151..09616f1e2b 100644
---- a/core/dplugins/dimg/jpeg2000/dimgjpeg2000plugin.cpp
-+++ b/core/dplugins/dimg/jpeg2000/dimgjpeg2000plugin.cpp
-@@ -17,6 +17,7 @@
- // Qt includes
-
- #include <QFile>
-+#include <QImageReader>
-
- // KDE includes
-
-@@ -36,6 +37,13 @@ DImgJPEG2000Plugin::DImgJPEG2000Plugin(QObject* const parent)
-
- #if defined JAS_VERSION_MAJOR && JAS_VERSION_MAJOR >= 3
-
-+ const auto frms = QImageReader::supportedImageFormats();
-+
-+ if (frms.contains(QByteArray("jp2")))
-+ {
-+ return;
-+ }
-+
- size_t max_mem = jas_get_total_mem_size();
-
- if (max_mem)
-@@ -70,7 +78,10 @@ DImgJPEG2000Plugin::~DImgJPEG2000Plugin()
-
- #if defined JAS_VERSION_MAJOR && JAS_VERSION_MAJOR >= 3
-
-- jas_cleanup_library();
-+ if (m_initJasper)
-+ {
-+ jas_cleanup_library();
-+ }
-
- #endif
-
-@@ -244,7 +255,7 @@ DImgLoader* DImgJPEG2000Plugin::loader(DImg* const image, const DRawDecoding&) c
-
- DImgLoaderSettings* DImgJPEG2000Plugin::exportWidget(const QString& format) const
- {
-- if (canWrite(format))
-+ if (canWrite(format) || !m_initJasper)
- {
- return (new DImgJPEG2000ExportSettings());
- }
---
-GitLab
-
diff --git a/digikam.spec b/digikam.spec
index 82d4f10..f3d1af1 100644
--- a/digikam.spec
+++ b/digikam.spec
@@ -13,8 +13,8 @@ ExclusiveArch: %{qt5_qtwebengine_arches}
Name: digikam
Summary: A digital camera accessing & photo management application
-Version: 9.0.0
-Release: 5%{?beta}%{?dist}
+Version: 9.1.0
+Release: 1%{?beta}%{?dist}
License: GPL-2.0-or-later
URL: http://www.digikam.org/
@@ -335,6 +335,9 @@ update-desktop-database -q &> /dev/null
%changelog
+* Mon Jun 08 2026 Alexey Kurov <nucleo@fedoraproject.org> - 9.1.0-1
+- digiKam-9.1.0
+
* Thu May 14 2026 Jan Grulich <jgrulich@redhat.com> - 9.0.0-5
- Rebuild (qt6)
diff --git a/sources b/sources
index efea323..b0c294e 100644
--- a/sources
+++ b/sources
@@ -1 +1 @@
-SHA512 (digiKam-9.0.0.tar.xz) = 8b9e4362424971edd9c7c9d634ecbb5687db3bfb97e3df1678848b7336b8c68b7f7cae9ccbdbf664d5a0fdf19e3c835165cb8c4167eebc08e2bc2b9490c3ceb7
+SHA512 (digiKam-9.1.0.tar.xz) = ab083cbde1f3e243a8766b8fe5ea256d32877ff7f2e048349fb063e1ca90b0395eee16028466516a9ab74f10582a413bfc9d64392a4b25b33e45b70ca34f5cd6
^ permalink raw reply related [flat|nested] only message in thread
only message in thread, other threads:[~2026-06-08 14:02 UTC | newest]
Thread overview: (only message) (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2026-06-08 14:02 [rpms/digikam] rawhide: digiKam-9.1.0 nucleo
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox