Script 'mail_helper' called by obssrc Hello community, here is the log from the commit of package libkdcraw for openSUSE:Factory checked in at 2025-12-15 11:49:47 ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Comparing /work/SRC/openSUSE:Factory/libkdcraw (Old) and /work/SRC/openSUSE:Factory/.libkdcraw.new.1939 (New) ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Package is "libkdcraw" Mon Dec 15 11:49:47 2025 rev:184 rq:1322483 version:25.12.0 Changes: -------- --- /work/SRC/openSUSE:Factory/libkdcraw/libkdcraw.changes 2025-11-08 16:29:42.924113267 +0100 +++ /work/SRC/openSUSE:Factory/.libkdcraw.new.1939/libkdcraw.changes 2025-12-15 11:51:24.809814973 +0100 @@ -1,0 +2,19 @@ +Sat Dec 6 11:41:07 UTC 2025 - Christophe Marin <[email protected]> + +- Update to 25.12.0 + * New feature release + * For more details please see: + * https://kde.org/announcements/gear/25.12.0/ +- No code change since 25.11.80 + +------------------------------------------------------------------- +Sat Nov 15 19:57:10 UTC 2025 - Christophe Marin <[email protected]> + +- Update to 25.11.80 + * New feature release +- Changes since 25.08.3: + * Add find_package(LibRaw) to KDcrawConfig.cmake for static builds + * Add static CI build + * Allow building libkdcraw as a static library + +------------------------------------------------------------------- Old: ---- libkdcraw-25.08.3.tar.xz libkdcraw-25.08.3.tar.xz.sig New: ---- libkdcraw-25.12.0.tar.xz libkdcraw-25.12.0.tar.xz.sig ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Other differences: ------------------ ++++++ libkdcraw.spec ++++++ --- /var/tmp/diff_new_pack.JGCbXs/_old 2025-12-15 11:51:25.709852903 +0100 +++ /var/tmp/diff_new_pack.JGCbXs/_new 2025-12-15 11:51:25.713853071 +0100 @@ -21,8 +21,8 @@ %if "%{flavor}" == "qt6" %define qt6 1 %define pkg_suffix -qt6 -%define kf6_version 6.14.0 -%define qt6_version 6.8.0 +%define kf6_version 6.19.0 +%define qt6_version 6.9.0 %define library_name libKDcrawQt6 %define so_suffix -5 %else @@ -34,7 +34,7 @@ %endif %bcond_without released Name: libkdcraw%{?pkg_suffix} -Version: 25.08.3 +Version: 25.12.0 Release: 0 Summary: Shared library interface around dcraw License: LGPL-2.0-or-later AND GPL-2.0-or-later AND GPL-3.0-or-later ++++++ libkdcraw-25.08.3.tar.xz -> libkdcraw-25.12.0.tar.xz ++++++ diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/libkdcraw-25.08.3/.gitlab-ci.yml new/libkdcraw-25.12.0/.gitlab-ci.yml --- old/libkdcraw-25.08.3/.gitlab-ci.yml 2025-07-21 12:20:11.000000000 +0200 +++ new/libkdcraw-25.12.0/.gitlab-ci.yml 2025-08-24 07:55:27.000000000 +0200 @@ -6,6 +6,7 @@ file: - /gitlab-templates/linux.yml - /gitlab-templates/linux-qt6.yml + - /gitlab-templates/linux-qt6-static.yml - /gitlab-templates/linux-qt6-next.yml - /gitlab-templates/freebsd-qt6.yml - /gitlab-templates/windows-qt6.yml diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/libkdcraw-25.08.3/cmake/templates/KDcrawConfig.cmake.in new/libkdcraw-25.12.0/cmake/templates/KDcrawConfig.cmake.in --- old/libkdcraw-25.08.3/cmake/templates/KDcrawConfig.cmake.in 2025-07-21 12:20:11.000000000 +0200 +++ new/libkdcraw-25.12.0/cmake/templates/KDcrawConfig.cmake.in 2025-08-24 07:55:27.000000000 +0200 @@ -4,4 +4,15 @@ find_dependency(Qt@QT_MAJOR_VERSION@Core @QT_MIN_VERSION@) find_dependency(Qt@QT_MAJOR_VERSION@Gui @QT_MIN_VERSION@) +if (NOT @BUILD_SHARED_LIBS@) + find_package(LibRaw ${LIBRAW_MIN_VERSION} QUIET) + if (NOT LibRaw_FOUND) + message(FATAL_ERROR + "Static build of KDcraw requires LibRaw." + "Please provide a FindLibRaw.cmake file on CMAKE_MODULE_PATH " + "or add libkdcraw/cmake/modules to CMAKE_MODULE_PATH." + ) + endif() +endif() + include("${CMAKE_CURRENT_LIST_DIR}/@[email protected]") diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/libkdcraw-25.08.3/src/CMakeLists.txt new/libkdcraw-25.12.0/src/CMakeLists.txt --- old/libkdcraw-25.08.3/src/CMakeLists.txt 2025-07-21 12:20:11.000000000 +0200 +++ new/libkdcraw-25.12.0/src/CMakeLists.txt 2025-08-24 07:55:27.000000000 +0200 @@ -27,7 +27,7 @@ kde_enable_exceptions() -add_library(KDcraw SHARED) +add_library(KDcraw) set_target_properties(KDcraw PROPERTIES VERSION ${KDCRAW_VERSION}
