Script 'mail_helper' called by obssrc Hello community, here is the log from the commit of package kimageformats for openSUSE:Factory checked in at 2021-08-16 10:07:53 ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Comparing /work/SRC/openSUSE:Factory/kimageformats (Old) and /work/SRC/openSUSE:Factory/.kimageformats.new.1899 (New) ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Package is "kimageformats" Mon Aug 16 10:07:53 2021 rev:97 rq:912140 version:5.85.0 Changes: -------- --- /work/SRC/openSUSE:Factory/kimageformats/kimageformats.changes 2021-07-16 00:01:29.581045133 +0200 +++ /work/SRC/openSUSE:Factory/.kimageformats.new.1899/kimageformats.changes 2021-08-16 10:12:02.963065883 +0200 @@ -1,0 +2,12 @@ +Fri Aug 6 12:12:43 UTC 2021 - Christophe Giboudeaux <[email protected]> + +- Update to 5.85.0 + * New feature release + * For more details please see: + * https://kde.org/announcements/frameworks/5/5.85.0 +- Changes since 5.84.0: + * exr: Repair compability with openexr2 (kde#440084) + * exr: Override the actual function signature (kde#439767) + * Fix build with older openEXR versions + +------------------------------------------------------------------- Old: ---- kimageformats-5.84.0.tar.xz kimageformats-5.84.0.tar.xz.sig New: ---- kimageformats-5.85.0.tar.xz kimageformats-5.85.0.tar.xz.sig ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Other differences: ------------------ ++++++ kimageformats.spec ++++++ --- /var/tmp/diff_new_pack.NcDaga/_old 2021-08-16 10:12:03.467065291 +0200 +++ /var/tmp/diff_new_pack.NcDaga/_new 2021-08-16 10:12:03.471065287 +0200 @@ -22,7 +22,7 @@ %if 0%{?suse_version} > 1500 || (0%{?is_opensuse} && 0%{?sle_version} >= 150300) %define with_heif 1 %endif -%define _tar_path 5.84 +%define _tar_path 5.85 # 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 lang Name: kimageformats -Version: 5.84.0 +Version: 5.85.0 Release: 0 Summary: Image format plugins for Qt License: LGPL-2.1-or-later ++++++ kimageformats-5.84.0.tar.xz -> kimageformats-5.85.0.tar.xz ++++++ diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/kimageformats-5.84.0/CMakeLists.txt new/kimageformats-5.85.0/CMakeLists.txt --- old/kimageformats-5.84.0/CMakeLists.txt 2021-07-10 10:49:14.000000000 +0200 +++ new/kimageformats-5.85.0/CMakeLists.txt 2021-07-21 00:04:45.000000000 +0200 @@ -3,7 +3,7 @@ project(KImageFormats) include(FeatureSummary) -find_package(ECM 5.84.0 NO_MODULE) +find_package(ECM 5.85.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.84.0/src/imageformats/avif.cpp new/kimageformats-5.85.0/src/imageformats/avif.cpp --- old/kimageformats-5.84.0/src/imageformats/avif.cpp 2021-07-10 10:49:14.000000000 +0200 +++ new/kimageformats-5.85.0/src/imageformats/avif.cpp 2021-07-21 00:04:45.000000000 +0200 @@ -814,7 +814,7 @@ return true; } - if (m_decoder->imageIndex >= m_decoder->imageCount - 1) { // start from begining + if (m_decoder->imageIndex >= m_decoder->imageCount - 1) { // start from beginning avifDecoderReset(m_decoder); } diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/kimageformats-5.84.0/src/imageformats/exr.cpp new/kimageformats-5.85.0/src/imageformats/exr.cpp --- old/kimageformats-5.84.0/src/imageformats/exr.cpp 2021-07-10 10:49:14.000000000 +0200 +++ new/kimageformats-5.85.0/src/imageformats/exr.cpp 2021-07-21 00:04:45.000000000 +0200 @@ -44,8 +44,13 @@ } bool read(char c[], int n) override; +#if OPENEXR_VERSION_MAJOR > 2 + uint64_t tellg() override; + void seekg(uint64_t pos) override; +#else Imf::Int64 tellg() override; void seekg(Imf::Int64 pos) override; +#endif void clear() override; private: @@ -65,12 +70,20 @@ return false; } +#if OPENEXR_VERSION_MAJOR > 2 +uint64_t K_IStream::tellg() +#else Imf::Int64 K_IStream::tellg() +#endif { return m_dev->pos(); } +#if OPENEXR_VERSION_MAJOR > 2 +void K_IStream::seekg(uint64_t pos) +#else void K_IStream::seekg(Imf::Int64 pos) +#endif { m_dev->seek(pos); }
