Hello community, here is the log from the commit of package kimageformats for openSUSE:Factory checked in at 2018-05-18 14:21:45 ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Comparing /work/SRC/openSUSE:Factory/kimageformats (Old) and /work/SRC/openSUSE:Factory/.kimageformats.new (New) ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Package is "kimageformats" Fri May 18 14:21:45 2018 rev:54 rq:607565 version:5.46.0 Changes: -------- --- /work/SRC/openSUSE:Factory/kimageformats/kimageformats.changes 2018-04-19 15:16:48.305795422 +0200 +++ /work/SRC/openSUSE:Factory/.kimageformats.new/kimageformats.changes 2018-05-18 14:21:46.987847168 +0200 @@ -1,0 +2,10 @@ +Sun May 13 21:03:03 UTC 2018 - [email protected] + +- Update to 5.46.0 + * New feature release + * For more details please see: + * https://www.kde.org/announcements/kde-frameworks-5.46.0.php +- Changes since 5.45.0: + * [XCF/GIMP loader] Raise maximimum allowed image size to 32767x32767 on 64 bit platforms (kde#391970) + +------------------------------------------------------------------- Old: ---- kimageformats-5.45.0.tar.xz New: ---- kimageformats-5.46.0.tar.xz ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Other differences: ------------------ ++++++ kimageformats.spec ++++++ --- /var/tmp/diff_new_pack.2qMdx9/_old 2018-05-18 14:21:47.591825005 +0200 +++ /var/tmp/diff_new_pack.2qMdx9/_new 2018-05-18 14:21:47.595824858 +0200 @@ -16,13 +16,13 @@ # -%define _tar_path 5.45 +%define _tar_path 5.46 # Full KF5 version (e.g. 5.33.0) %{!?_kf5_version: %global _kf5_version %{version}} # Last major and minor KF5 version (e.g. 5.33) %{!?_kf5_bugfix_version: %global _kf5_bugfix_version %(echo %{_kf5_version} | awk -F. '{print $1"."$2}')} Name: kimageformats -Version: 5.45.0 +Version: 5.46.0 Release: 0 BuildRequires: cmake >= 3.0 BuildRequires: extra-cmake-modules >= %{_kf5_bugfix_version} ++++++ kimageformats-5.45.0.tar.xz -> kimageformats-5.46.0.tar.xz ++++++ diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/kimageformats-5.45.0/CMakeLists.txt new/kimageformats-5.46.0/CMakeLists.txt --- old/kimageformats-5.45.0/CMakeLists.txt 2018-04-07 09:47:44.000000000 +0200 +++ new/kimageformats-5.46.0/CMakeLists.txt 2018-05-05 14:39:09.000000000 +0200 @@ -3,7 +3,7 @@ project(KImageFormats) include(FeatureSummary) -find_package(ECM 5.45.0 NO_MODULE) +find_package(ECM 5.46.0 NO_MODULE) set_package_properties(ECM PROPERTIES TYPE REQUIRED DESCRIPTION "Extra CMake Modules." URL "https://projects.kde.org/projects/kdesupport/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.45.0/src/imageformats/xcf.cpp new/kimageformats-5.46.0/src/imageformats/xcf.cpp --- old/kimageformats-5.45.0/src/imageformats/xcf.cpp 2018-04-07 09:47:44.000000000 +0200 +++ new/kimageformats-5.46.0/src/imageformats/xcf.cpp 2018-05-05 14:39:09.000000000 +0200 @@ -713,7 +713,8 @@ // SANITY CHECK: Catch corrupted XCF image file where the width or height // of a tile is reported are bogus. See Bug# 234030. - if (layer.width > 32767 || layer.height > 32767 || layer.width * layer.height > 16384 * 16384) { + if (layer.width > 32767 || layer.height > 32767 + || (sizeof(void *) == 4 && layer.width * layer.height > 16384 * 16384)) { return false; }
