Script 'mail_helper' called by obssrc Hello community, here is the log from the commit of package demumble for openSUSE:Factory checked in at 2025-07-23 16:35:28 ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Comparing /work/SRC/openSUSE:Factory/demumble (Old) and /work/SRC/openSUSE:Factory/.demumble.new.8875 (New) ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Package is "demumble" Wed Jul 23 16:35:28 2025 rev:3 rq:1295226 version:1.3.0 Changes: -------- --- /work/SRC/openSUSE:Factory/demumble/demumble.changes 2024-05-13 17:59:09.912268625 +0200 +++ /work/SRC/openSUSE:Factory/.demumble.new.8875/demumble.changes 2025-07-23 16:39:09.533501124 +0200 @@ -1,0 +2,10 @@ +Sun Jul 20 07:42:52 UTC 2025 - Andreas Stieger <andreas.stie...@gmx.de> + +- update to 1.3.0: + * swift demangling support + * [ms] Two demangling fixes for non-type template parameters + * [itanium] Demangling for built-in type transformations + * [itanium] Demangling rules for C++20 concepts and requires-expressions + * [itanium] Demangle explicitly named object parameters + +------------------------------------------------------------------- Old: ---- demumble-1.2.3.tar.gz New: ---- demumble-1.3.0.tar.gz ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Other differences: ------------------ ++++++ demumble.spec ++++++ --- /var/tmp/diff_new_pack.2HsNBD/_old 2025-07-23 16:39:10.181527111 +0200 +++ /var/tmp/diff_new_pack.2HsNBD/_new 2025-07-23 16:39:10.185527272 +0200 @@ -2,7 +2,7 @@ # spec file for package demumble # # Copyright (c) 2020 SUSE LLC -# Copyright (c) 2024 Andreas Stieger <andreas.stie...@gmx.de> +# Copyright (c) 2025 Andreas Stieger <andreas.stie...@gmx.de> # # All modifications and additions to the file contributed by third parties # remain the property of their copyright owners, unless otherwise agreed @@ -18,7 +18,7 @@ Name: demumble -Version: 1.2.3 +Version: 1.3.0 Release: 0 Summary: A better c++filt and a better undname.exe, in one binary License: Apache-2.0 ++++++ demumble-1.2.3.tar.gz -> demumble-1.3.0.tar.gz ++++++ ++++ 36134 lines of diff (skipped) ++++++ pie.patch ++++++ --- /var/tmp/diff_new_pack.2HsNBD/_old 2025-07-23 16:39:10.333533207 +0200 +++ /var/tmp/diff_new_pack.2HsNBD/_new 2025-07-23 16:39:10.337533368 +0200 @@ -1,7 +1,7 @@ -Index: demumble-1.2.3/CMakeLists.txt +Index: demumble-1.3.0/CMakeLists.txt =================================================================== ---- demumble-1.2.3.orig/CMakeLists.txt -+++ demumble-1.2.3/CMakeLists.txt +--- demumble-1.3.0.orig/CMakeLists.txt ++++ demumble-1.3.0/CMakeLists.txt @@ -1,6 +1,9 @@ -cmake_minimum_required(VERSION 3.5.0 FATAL_ERROR) +cmake_minimum_required(VERSION 3.14.0 FATAL_ERROR) @@ -13,8 +13,8 @@ if (UNIX) set(CMAKE_CXX_FLAGS "${CMAKE_CXX_FLAGS} -Wall -fno-exceptions -fno-rtti") set(CMAKE_CXX_FLAGS "${CMAKE_CXX_FLAGS} -fvisibility=hidden") -@@ -49,4 +52,5 @@ add_executable(demumble - third_party/llvm/lib/Demangle/RustDemangle.cpp +@@ -66,4 +69,5 @@ add_executable(demumble + third_party/swift/lib/Demangling/Remangler.cpp ) set_target_properties(demumble PROPERTIES CXX_STANDARD 17 - CXX_STANDARD_REQUIRED ON)