Script 'mail_helper' called by obssrc
Hello community,

here is the log from the commit of package dcmtk for openSUSE:Factory checked 
in at 2024-11-21 15:14:14
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Comparing /work/SRC/openSUSE:Factory/dcmtk (Old)
 and      /work/SRC/openSUSE:Factory/.dcmtk.new.28523 (New)
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++

Package is "dcmtk"

Thu Nov 21 15:14:14 2024 rev:31 rq:1225358 version:3.6.8

Changes:
--------
--- /work/SRC/openSUSE:Factory/dcmtk/dcmtk.changes      2024-04-25 
20:48:31.980649598 +0200
+++ /work/SRC/openSUSE:Factory/.dcmtk.new.28523/dcmtk.changes   2024-11-21 
15:14:59.820398571 +0100
@@ -1,0 +2,7 @@
+Wed Nov 20 16:59:26 UTC 2024 - Christophe Marin <christo...@krop.fr>
+
+- Add patches:
+  * 0001-Fixed-link-instructions-for-libtiff.patch
+  * 0001-Fix-find_package-library-variables-for-libtiff.patch
+
+-------------------------------------------------------------------
@@ -6,0 +14 @@
+    (boo#1227235, CVE-2024-27628)
@@ -7,0 +16 @@
+    (boo#1223949, CVE-2024-34509, boo#1223925, CVE-2024-34508)

New:
----
  0001-Fix-find_package-library-variables-for-libtiff.patch
  0001-Fixed-link-instructions-for-libtiff.patch

BETA DEBUG BEGIN:
  New:  * 0001-Fixed-link-instructions-for-libtiff.patch
  * 0001-Fix-find_package-library-variables-for-libtiff.patch
  New:- Add patches:
  * 0001-Fixed-link-instructions-for-libtiff.patch
  * 0001-Fix-find_package-library-variables-for-libtiff.patch
BETA DEBUG END:

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

Other differences:
------------------
++++++ dcmtk.spec ++++++
--- /var/tmp/diff_new_pack.tkGkEi/_old  2024-11-21 15:15:00.676434153 +0100
+++ /var/tmp/diff_new_pack.tkGkEi/_new  2024-11-21 15:15:00.676434153 +0100
@@ -34,6 +34,8 @@
 Patch5:         0002-Fixed-unchecked-typecasts-and-fixed-LUT-handling.patch
 Patch6:         0003-Fixed-wrong-error-handling-previous-commit.patch
 Patch7:         0001-Fixed-DcmDecimalString-unit-tests.patch
+Patch8:         0001-Fixed-link-instructions-for-libtiff.patch
+Patch9:         0001-Fix-find_package-library-variables-for-libtiff.patch
 BuildRequires:  cmake
 BuildRequires:  doxygen
 BuildRequires:  fdupes

++++++ 0001-Fix-find_package-library-variables-for-libtiff.patch ++++++
>From a92b79c7134eca0588d84817a6a1670e46016f4d Mon Sep 17 00:00:00 2001
From: Michael Onken <on...@open-connections.de>
Date: Tue, 13 Feb 2024 16:48:05 +0100
Subject: [PATCH] Fix find_package() library variables for libtiff.

The detection of libtiff and its related JPEG support now uses the
correct CMake variables set by the corresponding find_package() scripts.

Old and obsolete values were: TIFF_LIBRARY and JPEG_LIBRARY.
New values are: TIFF_LIBRARIES and JPEG_LIBRARIES.

Thanks to "sameeul" (Sameeul Bashir Samee) for the report and patch.
---
 CMake/3rdparty.cmake | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/CMake/3rdparty.cmake b/CMake/3rdparty.cmake
index 5f8f07e5f..fbd804a93 100644
--- a/CMake/3rdparty.cmake
+++ b/CMake/3rdparty.cmake
@@ -38,11 +38,11 @@ if(DCMTK_USE_FIND_PACKAGE)
       if(NOT JPEG_FOUND)
         message(STATUS "Info: DCMTK TIFF support will be enabled (but without 
JPEG)")
         include_directories(${TIFF_INCLUDE_DIR})
-        set(LIBTIFF_LIBS ${TIFF_LIBRARY} ${TIFF_EXTRA_LIBS_STATIC})
+        set(LIBTIFF_LIBS ${TIFF_LIBRARIES} ${TIFF_EXTRA_LIBS_STATIC})
       else()
         message(STATUS "Info: DCMTK TIFF support will be enabled")
         include_directories(${TIFF_INCLUDE_DIR} ${JPEG_INCLUDE_DIR})
-        set(LIBTIFF_LIBS ${TIFF_LIBRARY} ${TIFF_EXTRA_LIBS_STATIC} 
${JPEG_LIBRARY})
+        set(LIBTIFF_LIBS ${TIFF_LIBRARIES} ${TIFF_EXTRA_LIBS_STATIC} 
${JPEG_LIBRARIES})
       endif()
     endif()
   endif()
-- 
2.47.0


++++++ 0001-Fixed-link-instructions-for-libtiff.patch ++++++
>From 418f3ee269cc9d9f01bbde1c2b48c5abddb5fa28 Mon Sep 17 00:00:00 2001
From: Marco Eichelberg <di...@offis.de>
Date: Mon, 25 Dec 2023 14:12:41 +0100
Subject: [PATCH] Fixed link instructions for libtiff.

Fixed link instructions for libtiff for the case that libjpeg is not present.
---
 CMake/3rdparty.cmake | 3 ++-
 1 file changed, 2 insertions(+), 1 deletion(-)

diff --git a/CMake/3rdparty.cmake b/CMake/3rdparty.cmake
index c3559229a..5f8f07e5f 100644
--- a/CMake/3rdparty.cmake
+++ b/CMake/3rdparty.cmake
@@ -38,11 +38,12 @@ if(DCMTK_USE_FIND_PACKAGE)
       if(NOT JPEG_FOUND)
         message(STATUS "Info: DCMTK TIFF support will be enabled (but without 
JPEG)")
         include_directories(${TIFF_INCLUDE_DIR})
+        set(LIBTIFF_LIBS ${TIFF_LIBRARY} ${TIFF_EXTRA_LIBS_STATIC})
       else()
         message(STATUS "Info: DCMTK TIFF support will be enabled")
         include_directories(${TIFF_INCLUDE_DIR} ${JPEG_INCLUDE_DIR})
+        set(LIBTIFF_LIBS ${TIFF_LIBRARY} ${TIFF_EXTRA_LIBS_STATIC} 
${JPEG_LIBRARY})
       endif()
-      set(LIBTIFF_LIBS ${TIFF_LIBRARY} ${TIFF_EXTRA_LIBS_STATIC} 
${JPEG_LIBRARY})
     endif()
   endif()
 
-- 
2.47.0

Reply via email to