Script 'mail_helper' called by obssrc
Hello community,

here is the log from the commit of package tenmon for openSUSE:Factory checked 
in at 2025-02-10 17:25:54
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Comparing /work/SRC/openSUSE:Factory/tenmon (Old)
 and      /work/SRC/openSUSE:Factory/.tenmon.new.19470 (New)
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++

Package is "tenmon"

Mon Feb 10 17:25:54 2025 rev:7 rq:1244515 version:20250126

Changes:
--------
--- /work/SRC/openSUSE:Factory/tenmon/tenmon.changes    2024-09-15 
12:40:19.090341652 +0200
+++ /work/SRC/openSUSE:Factory/.tenmon.new.19470/tenmon.changes 2025-02-10 
18:35:35.432803393 +0100
@@ -1,0 +2,12 @@
+Sun Feb  9 16:54:17 UTC 2025 - Paolo Stivanin <[email protected]>
+
+- Update to 20250126:
+  * Support for really big images +50000px
+  * Add setting solver profile in scripts
+  * Plate solving
+  * Open marked files as directory
+  * Improved ICC color profile handling
+  * Add *.fz and *.fts as FITS extension
+- Rename use_system_libxisf.patch to fix-cmakelists.patch
+
+-------------------------------------------------------------------

Old:
----
  tenmon-20240816.tar.gz
  use_system_libxisf.patch

New:
----
  fix-cmakelists.patch
  tenmon-20250126.tar.gz

BETA DEBUG BEGIN:
  Old:  * Add *.fz and *.fts as FITS extension
- Rename use_system_libxisf.patch to fix-cmakelists.patch
BETA DEBUG END:

BETA DEBUG BEGIN:
  New:  * Add *.fz and *.fts as FITS extension
- Rename use_system_libxisf.patch to fix-cmakelists.patch
BETA DEBUG END:

++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++

Other differences:
------------------
++++++ tenmon.spec ++++++
--- /var/tmp/diff_new_pack.OsSOiu/_old  2025-02-10 18:35:36.924865415 +0100
+++ /var/tmp/diff_new_pack.OsSOiu/_new  2025-02-10 18:35:36.924865415 +0100
@@ -1,7 +1,7 @@
 #
 # spec file for package tenmon
 #
-# Copyright (c) 2024 SUSE LLC
+# Copyright (c) 2025 SUSE LLC
 #
 # All modifications and additions to the file contributed by third parties
 # remain the property of their copyright owners, unless otherwise agreed
@@ -21,18 +21,19 @@
 %endif
 
 Name:           tenmon
-Version:        20240816
+Version:        20250126
 Release:        0
 Summary:        FITS and XISF image viewer, converter and indexer
 License:        GPL-3.0-or-later
 URL:            https://gitea.nouspiro.space/nou/tenmon/
 Source:         
https://gitea.nouspiro.space/nou/tenmon/archive/%{version}.tar.gz#/%{name}-%{version}.tar.gz
 # PATCH-FIX-UPSTREAM
-Patch0:         use_system_libxisf.patch
+Patch0:         fix-cmakelists.patch
 # PATCH-FIX-UPSTREAM
 Patch1:         fix-libxisf-include.patch
 BuildRequires:  gcc%{?force_gcc_version}-c++ >= 12
 BuildRequires:  libXISF-devel >= 0.2.12+git5.d00de20
+BuildRequires:  libzstd-devel
 BuildRequires:  pkgconfig
 BuildRequires:  qt6-base-devel >= 6.2.0
 BuildRequires:  pkgconfig(Qt6OpenGL)

++++++ fix-cmakelists.patch ++++++
--- a/CMakeLists.txt    2025-02-09 17:58:04.385856772 +0100
+++ b/CMakeLists.txt    2025-02-09 17:58:49.750855984 +0100
@@ -26,8 +26,9 @@
 find_library(WCS_LIB wcs wcslib REQUIRED)
 find_library(LCMS2_LIB lcms2 REQUIRED)
 find_library(STELLARSOLVER_LIB stellarsolver)
+find_library(LibXISF_LIBRARY NAMES libXISF XISF REQUIRED)
+find_library(ZSTD_LIB NAMES zstd REQUIRED)
 
-add_subdirectory(libXISF)
 
 set(TENMON_SRC
     about.cpp about.h
@@ -74,7 +75,7 @@
 qt_add_executable(tenmon WIN32 MACOSX_BUNDLE ${tenmon_ICON} ${TENMON_SRC})
 
 find_path(FITS_INCLUDE fitsio2.h PATH_SUFFIXES cfitsio REQUIRED)
-target_include_directories(tenmon PRIVATE ${FITS_INCLUDE} ${CMAKE_BINARY_DIR} 
${libXISF_SOURCE_DIR})
+target_include_directories(tenmon PRIVATE ${FITS_INCLUDE} ${CMAKE_BINARY_DIR})
 
 option(COLOR_MANAGMENT "Enable sRGB framebuffer support for gamma correct 
images and color profiles support" ON)
 if(COLOR_MANAGMENT)
@@ -98,7 +99,7 @@
     message(STATUS "Found stellarsolver ${STELLARSOLVER_INCLUDE} 
${STELLARSOLVER_LIB}")
 endif(STELLARSOLVER_INCLUDE AND STELLARSOLVER_LIB)
 
-target_link_libraries(tenmon PRIVATE Qt6::Widgets Qt6::Sql Qt6::OpenGLWidgets 
Qt6::Qml ${GSL_LIB} ${GSLCBLAS_LIB} ${EXIF_LIB} ${FITS_LIB} ${RAW_LIB} 
${WCS_LIB} ${LCMS2_LIB} XISF)
+target_link_libraries(tenmon PRIVATE Qt6::Widgets Qt6::Sql Qt6::OpenGLWidgets 
Qt6::Qml ${GSL_LIB} ${GSLCBLAS_LIB} ${EXIF_LIB} ${FITS_LIB} ${RAW_LIB} 
${WCS_LIB} ${LCMS2_LIB} ${LibXISF_LIBRARY} ${ZSTD_LIB})
 if(APPLE)
     target_link_libraries(tenmon PRIVATE Qt6::DBus "-framework CoreFoundation")
 elseif(UNIX)

++++++ fix-libxisf-include.patch ++++++
--- /var/tmp/diff_new_pack.OsSOiu/_old  2025-02-10 18:35:36.976867577 +0100
+++ /var/tmp/diff_new_pack.OsSOiu/_new  2025-02-10 18:35:36.992868242 +0100
@@ -1,31 +1,31 @@
 diff -ru orig/main.cpp mod/main.cpp
---- orig/main.cpp      2024-06-10 22:39:52.000000000 +0200
-+++ mod/main.cpp       2024-06-12 07:44:13.782719909 +0200
-@@ -3,7 +3,7 @@
+--- orig/main.cpp      2025-01-26 16:00:00.000000000 +0100
++++ mod/main.cpp       2025-02-09 17:59:53.335087174 +0100
+@@ -3,6 +3,7 @@
  #include <QSurfaceFormat>
  #include <QTranslator>
  #include <stdlib.h>
--#include "libxisf.h"
 +#include <libxisf.h>
  
  int main(int argc, char *argv[])
  {
 diff -ru orig/scriptengine.cpp mod/scriptengine.cpp
---- orig/scriptengine.cpp      2024-06-10 22:39:52.000000000 +0200
-+++ mod/scriptengine.cpp       2024-06-12 07:44:24.692828986 +0200
+--- orig/scriptengine.cpp      2025-01-26 16:00:00.000000000 +0100
++++ mod/scriptengine.cpp       2025-02-09 17:59:53.338096114 +0100
 @@ -1,4 +1,5 @@
  #include "scriptengine.h"
 +
  #include <QDir>
  #include <QFileInfo>
  #include <QDebug>
-@@ -8,7 +9,7 @@
+@@ -9,7 +10,7 @@
  #include "loadrunable.h"
  #include "batchprocessing.h"
  #include <fitsio2.h>
 -#include "libXISF/libxisf.h"
 +#include <libxisf.h>
- 
- namespace Script
- {
+ #ifdef PLATESOLVER
+ #include "solver.h"
+ #endif // PLATESOLVER
+Only in mod/: scriptengine.cpp.orig
 

++++++ tenmon-20240816.tar.gz -> tenmon-20250126.tar.gz ++++++
++++ 11395 lines of diff (skipped)

Reply via email to