Script 'mail_helper' called by obssrc Hello community, here is the log from the commit of package libXISF for openSUSE:Factory checked in at 2023-10-18 21:26:26 ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Comparing /work/SRC/openSUSE:Factory/libXISF (Old) and /work/SRC/openSUSE:Factory/.libXISF.new.31755 (New) ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Package is "libXISF" Wed Oct 18 21:26:26 2023 rev:9 rq:1118598 version:0.2.10 Changes: -------- --- /work/SRC/openSUSE:Factory/libXISF/libXISF.changes 2023-10-12 23:47:49.353308426 +0200 +++ /work/SRC/openSUSE:Factory/.libXISF.new.31755/libXISF.changes 2023-10-18 21:26:42.234861316 +0200 @@ -1,0 +2,6 @@ +Wed Oct 18 13:40:40 UTC 2023 - Paolo Stivanin <i...@paolostivanin.com> + +- Update to 0.2.10: + * Fix incorrect header size. + +------------------------------------------------------------------- Old: ---- libXISF-0.2.9.tar.gz New: ---- libXISF-0.2.10.tar.gz ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Other differences: ------------------ ++++++ libXISF.spec ++++++ --- /var/tmp/diff_new_pack.hJORQw/_old 2023-10-18 21:26:42.726879139 +0200 +++ /var/tmp/diff_new_pack.hJORQw/_new 2023-10-18 21:26:42.726879139 +0200 @@ -22,7 +22,7 @@ %define sover 0 Name: libXISF -Version: 0.2.9 +Version: 0.2.10 Release: 0 Summary: Library to read/write PixInsight XISF files License: GPL-3.0-or-later ++++++ libXISF-0.2.9.tar.gz -> libXISF-0.2.10.tar.gz ++++++ diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/libxisf/CMakeLists.txt new/libxisf/CMakeLists.txt --- old/libxisf/CMakeLists.txt 2023-08-13 19:13:39.000000000 +0200 +++ new/libxisf/CMakeLists.txt 2023-10-16 19:17:04.000000000 +0200 @@ -1,6 +1,6 @@ cmake_minimum_required(VERSION 3.14) -project(libXISF VERSION 0.2.9 LANGUAGES CXX C +project(libXISF VERSION 0.2.10 LANGUAGES CXX C HOMEPAGE_URL https://gitea.nouspiro.space/nou/libXISF DESCRIPTION "LibXISF is C++ library that can read and write XISF files produced by PixInsight.") diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/libxisf/libxisf.cpp new/libxisf/libxisf.cpp --- old/libxisf/libxisf.cpp 2023-08-13 19:13:39.000000000 +0200 +++ new/libxisf/libxisf.cpp 2023-10-16 19:17:04.000000000 +0200 @@ -957,7 +957,7 @@ offset += image._dataBlock.data.size(); } - uint32_t headerSize = size - sizeof(signature); + uint32_t headerSize = header.size() - sizeof(signature); header.resize(size, 0); header.replace(8, sizeof(uint32_t), (const char*)&headerSize, sizeof(uint32_t));