Script 'mail_helper' called by obssrc Hello community, here is the log from the commit of package kimageformats for openSUSE:Factory checked in at 2022-06-17 21:19:52 ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Comparing /work/SRC/openSUSE:Factory/kimageformats (Old) and /work/SRC/openSUSE:Factory/.kimageformats.new.1548 (New) ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Package is "kimageformats" Fri Jun 17 21:19:52 2022 rev:107 rq:982471 version:5.95.0 Changes: -------- --- /work/SRC/openSUSE:Factory/kimageformats/kimageformats.changes 2022-05-16 18:08:47.797289923 +0200 +++ /work/SRC/openSUSE:Factory/.kimageformats.new.1548/kimageformats.changes 2022-06-17 21:22:03.858758776 +0200 @@ -1,0 +2,15 @@ +Mon Jun 13 13:18:42 UTC 2022 - Wolfgang Bauer <wba...@tmo.at> + +- Enable AVIF plugin also on Leap 15.4 + +------------------------------------------------------------------- +Fri Jun 10 14:12:32 UTC 2022 - Christophe Giboudeaux <christo...@krop.fr> + +- Update to 5.95.0 + * New feature release + * For more details please see: + * https://kde.org/announcements/frameworks/5/5.95.0 +- Changes since 5.94.0: + * psd: Fix segfault on architectures where char is unsigned (like ARM) + +------------------------------------------------------------------- Old: ---- kimageformats-5.94.0.tar.xz kimageformats-5.94.0.tar.xz.sig New: ---- kimageformats-5.95.0.tar.xz kimageformats-5.95.0.tar.xz.sig ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Other differences: ------------------ ++++++ kimageformats.spec ++++++ --- /var/tmp/diff_new_pack.UtlFHt/_old 2022-06-17 21:22:04.518759134 +0200 +++ /var/tmp/diff_new_pack.UtlFHt/_new 2022-06-17 21:22:04.522759136 +0200 @@ -16,13 +16,13 @@ # -%if 0%{?suse_version} > 1500 +%if 0%{?suse_version} > 1500 || (0%{?is_opensuse} && 0%{?sle_version} >= 150400) %define with_avif 1 %endif %if 0%{?suse_version} > 1500 || (0%{?is_opensuse} && 0%{?sle_version} >= 150300) %define with_heif 1 %endif -%define _tar_path 5.94 +%define _tar_path 5.95 # Full KF5 version (e.g. 5.33.0) %{!?_kf5_version: %global _kf5_version %{version}} # Last major and minor KF5 version (e.g. 5.33) @@ -30,7 +30,7 @@ # Only needed for the package signature condition %bcond_without released Name: kimageformats -Version: 5.94.0 +Version: 5.95.0 Release: 0 Summary: Image format plugins for Qt License: LGPL-2.1-or-later ++++++ kimageformats-5.94.0.tar.xz -> kimageformats-5.95.0.tar.xz ++++++ diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/kimageformats-5.94.0/CMakeLists.txt new/kimageformats-5.95.0/CMakeLists.txt --- old/kimageformats-5.94.0/CMakeLists.txt 2022-05-02 11:46:37.000000000 +0200 +++ new/kimageformats-5.95.0/CMakeLists.txt 2022-06-04 10:19:33.000000000 +0200 @@ -3,7 +3,7 @@ project(KImageFormats) include(FeatureSummary) -find_package(ECM 5.93.0 NO_MODULE) +find_package(ECM 5.95.0 NO_MODULE) set_package_properties(ECM PROPERTIES TYPE REQUIRED DESCRIPTION "Extra CMake Modules." URL "https://commits.kde.org/extra-cmake-modules") feature_summary(WHAT REQUIRED_PACKAGES_NOT_FOUND FATAL_ON_MISSING_REQUIRED_PACKAGES) diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/kimageformats-5.94.0/src/imageformats/psd.cpp new/kimageformats-5.95.0/src/imageformats/psd.cpp --- old/kimageformats-5.94.0/src/imageformats/psd.cpp 2022-05-02 11:46:37.000000000 +0200 +++ new/kimageformats-5.95.0/src/imageformats/psd.cpp 2022-06-04 10:19:33.000000000 +0200 @@ -490,11 +490,11 @@ { qint64 j = 0; for (qint64 ip = 0, rr = 0, available = olen; j < olen && ip < ilen; available = olen - j) { - char n = input[ip++]; - if (static_cast<signed char>(n) == -128) + signed char n = static_cast<signed char>(input[ip++]); + if (n == -128) continue; - if (static_cast<signed char>(n) >= 0) { + if (n >= 0) { rr = qint64(n) + 1; if (available < rr) { ip--;