Hello community,

here is the log from the commit of package gdcm for openSUSE:Leap:15.2 checked 
in at 2020-06-23 18:07:17
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Comparing /work/SRC/openSUSE:Leap:15.2/gdcm (Old)
 and      /work/SRC/openSUSE:Leap:15.2/.gdcm.new.2956 (New)
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++

Package is "gdcm"

Tue Jun 23 18:07:17 2020 rev:4 rq:816417 version:3.0.6

Changes:
--------
--- /work/SRC/openSUSE:Leap:15.2/gdcm/gdcm.changes      2020-04-17 
13:38:34.352266334 +0200
+++ /work/SRC/openSUSE:Leap:15.2/.gdcm.new.2956/gdcm.changes    2020-06-23 
18:07:24.407740440 +0200
@@ -1,0 +2,13 @@
+Tue Jun  9 15:31:56 UTC 2020 - Axel Braun <[email protected]>
+
+- version 3.0.6
+  * no changelog available
+  * poppler_api.patch removed (included in source)
+
+-------------------------------------------------------------------
+Mon Jun  8 18:55:02 UTC 2020 - Guillaume GARDET <[email protected]>
+
+- Add patch to fix build on aarch64:
+  * gdcm-2.8.8-dont_use_EOF.patch 
+
+-------------------------------------------------------------------
@@ -10 +23 @@
-- poppler_api.patch added to fix API changes in poppler 
+- poppler_api.patch added to fix API changes in poppler in TW

Old:
----
  gdcm-3.0.5.tar.bz2
  poppler_api.patch

New:
----
  gdcm-2.8.8-dont_use_EOF.patch
  gdcm-3.0.6.tar.bz2

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

Other differences:
------------------
++++++ gdcm.spec ++++++
--- /var/tmp/diff_new_pack.hhpmtz/_old  2020-06-23 18:07:24.827741797 +0200
+++ /var/tmp/diff_new_pack.hhpmtz/_new  2020-06-23 18:07:24.831741810 +0200
@@ -2,7 +2,7 @@
 # spec file for package gdcm
 #
 # Copyright (c) 2020 SUSE LLC
-# Copyright (c) 2019 Dr. Axel Braun
+# Copyright (c) 2019-2020 Dr. Axel Braun
 #
 # All modifications and additions to the file contributed by third parties
 # remain the property of their copyright owners, unless otherwise agreed
@@ -20,7 +20,7 @@
 %define         soname  3_0
 %define         libsocksoname  libsocketxx1_2
 Name:           gdcm
-Version:        3.0.5
+Version:        3.0.6
 Release:        0
 Summary:        Grassroots DiCoM is a C++ library to parse DICOM medical files
 License:        BSD-3-Clause
@@ -29,7 +29,7 @@
 Source0:        
http://sourceforge.net/projects/gdcm/files/gdcm%203.x/GDCM%20%{version}/%{name}-%{version}.tar.bz2
 Patch1:         gdcm-2.4.0-usecopyright.patch
 Patch2:         fix_charls_2.patch
-Patch3:         poppler_api.patch
+Patch3:         gdcm-2.8.8-dont_use_EOF.patch
 BuildRequires:  CharLS-devel >= 2.0
 BuildRequires:  cmake
 BuildRequires:  docbook5-xsl-stylesheets

++++++ fix_charls_2.patch ++++++
--- /var/tmp/diff_new_pack.hhpmtz/_old  2020-06-23 18:07:24.847741862 +0200
+++ /var/tmp/diff_new_pack.hhpmtz/_new  2020-06-23 18:07:24.847741862 +0200
@@ -5,7 +5,7 @@
 diff -ur gdcm/CMakeLists.txt gdcm-2.8.8/CMakeLists.txt
 --- gdcm/CMakeLists.txt        2019-01-13 08:57:04.807970487 +0100
 +++ gdcm-2.8.8/CMakeLists.txt  2019-01-13 08:51:36.459974494 +0100
-@@ -358,7 +358,7 @@
+@@ -357,7 +357,7 @@
  
  if(GDCM_USE_SYSTEM_CHARLS)
    find_package(CharLS 2.0.0 REQUIRED)

++++++ gdcm-2.8.8-dont_use_EOF.patch ++++++
--- ./Testing/Source/Common/Cxx/TestString2.cxx.orig    2019-02-26 
22:01:26.738230841 +0000
+++ ./Testing/Source/Common/Cxx/TestString2.cxx 2019-02-26 22:59:07.751826144 
+0000
@@ -16,7 +16,6 @@
 #include <iostream>
 
 #include <string.h> // strlen
-#include <stdio.h> // EOF
 
 int TestString2(int , char *[])
 {
@@ -26,24 +25,24 @@ int TestString2(int , char *[])
   gdcm::String<> s2 = "coucou!";
   std::cout << s2 << " -> " << s2.size() << std::endl;
 
-  gdcm::String<EOF,64,0> s3 = "coucou";
+  gdcm::String<'\0',64,0> s3 = "coucou";
   std::cout << s3.c_str() << " -> " << s3.size() << std::endl;
 
-  gdcm::String<EOF,64,0> s4 = "coucou!";
+  gdcm::String<'\0',64,0> s4 = "coucou!";
   std::cout << s4.c_str() << " -> " << s4.size() << std::endl;
 
   const char *s = "coucou!";
-  gdcm::String<EOF,64,0> s5( s, strlen(s) );
+  gdcm::String<'\0',64,0> s5( s, strlen(s) );
   std::cout << s5.c_str() << " -> " << s5.size() << std::endl;
 
   std::string ss = "coucou!";
-  gdcm::String<EOF,64,0> s6( ss );
+  gdcm::String<'\0',64,0> s6( ss );
   std::cout << s6.c_str() << " -> " << s6.size() << std::endl;
 
-  gdcm::String<EOF,64,0> s7( ss, 1, 5 );
+  gdcm::String<'\0',64,0> s7( ss, 1, 5 );
   std::cout << s7.c_str() << " -> " << s7.size() << std::endl;
 
-  gdcm::String<EOF,64,0> s8( ss, 1, 6 );
+  gdcm::String<'\0',64,0> s8( ss, 1, 6 );
   std::cout << s8.c_str() << " -> " << s8.size() << std::endl;
 
   return 0;
++++++ gdcm-3.0.5.tar.bz2 -> gdcm-3.0.6.tar.bz2 ++++++
++++ 2708 lines of diff (skipped)


Reply via email to