Script 'mail_helper' called by obssrc Hello community, here is the log from the commit of package slade for openSUSE:Factory checked in at 2025-10-28 14:45:44 ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Comparing /work/SRC/openSUSE:Factory/slade (Old) and /work/SRC/openSUSE:Factory/.slade.new.1980 (New) ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Package is "slade" Tue Oct 28 14:45:44 2025 rev:21 rq:1313616 version:3.2.8 Changes: -------- --- /work/SRC/openSUSE:Factory/slade/slade.changes 2025-08-25 20:38:51.882017863 +0200 +++ /work/SRC/openSUSE:Factory/.slade.new.1980/slade.changes 2025-10-28 14:46:25.958601353 +0100 @@ -1,0 +2,22 @@ +Tue Oct 21 09:18:21 UTC 2025 - Jan Engelhardt <[email protected]> + +- Update to release 3.2.8 + * Updated DECOHack language definition + * Added support for the Heretic (2025)/Hexen (2025) port + * Resource editor: + * Added ability to copy+paste gfx offsets + * Fixed crashes on entry list updates (entry + added/deleted, etc.) while filtering is active + * Texture editor: + * Double clicking a TEXTUREx entry will now open + only that entry in the texture editor + * Limited the number of TEXTUREx entries initially opened to 5 + when launching the texture editor via toolbar or menu + * Fixed patch offsets being set to the wrong value when + double-clicking a patch in the browser during 'replace patch' + action + * Map editor: + * Added ability to auto-align on the Y-axis and improved X-axis + auto alignment + +------------------------------------------------------------------- Old: ---- 3.2.7.tar.gz New: ---- 3.2.8.tar.gz ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Other differences: ------------------ ++++++ slade.spec ++++++ --- /var/tmp/diff_new_pack.A64Hlx/_old 2025-10-28 14:46:26.694632306 +0100 +++ /var/tmp/diff_new_pack.A64Hlx/_new 2025-10-28 14:46:26.698632475 +0100 @@ -1,7 +1,7 @@ # # spec file for package slade # -# Copyright (c) 2025 SUSE LLC +# Copyright (c) 2025 SUSE LLC and contributors # # All modifications and additions to the file contributed by third parties # remain the property of their copyright owners, unless otherwise agreed @@ -17,7 +17,7 @@ Name: slade -Version: 3.2.7 +Version: 3.2.8 Release: 0 Summary: An editor for DOOM maps and WAD/PK3 archives License: GPL-2.0-or-later @@ -36,22 +36,28 @@ BuildRequires: pkg-config BuildRequires: strip-nondeterminism BuildRequires: update-desktop-files -BuildRequires: wxGTK3-devel +BuildRequires: wxGTK3-devel >= 3.1.6 BuildRequires: zip BuildRequires: pkgconfig(fluidsynth) BuildRequires: pkgconfig(ftgl) BuildRequires: pkgconfig(gl) BuildRequires: pkgconfig(libcurl) -BuildRequires: pkgconfig(libmpg123) +BuildRequires: pkgconfig(libmpg123) >= 1.28.1 +BuildRequires: pkgconfig(libwebp) +BuildRequires: pkgconfig(sfml-all) +BuildRequires: pkgconfig(x11) +%if 0%{?suse_version} >= 1690 +BuildRequires: sfml3-devel +%endif %if 0%{?suse_version} >= 1690 BuildRequires: pkgconfig(lzma-sdk) +%else +BuildRequires: pkgconfig(clzma) %endif -BuildRequires: pkgconfig(sfml-all) -BuildRequires: pkgconfig(x11) %if 0%{?suse_version} >= 1600 BuildRequires: fmt-devel %else -Provides: bundled(fmt) = 10 +Provides: bundled(fmt) = 11.1.3 %endif Provides: bundled(dumb) = 0.9.3 @@ -66,6 +72,9 @@ %build %define _lto_cflags %nil +%if 0%{?suse_version} >= 1600 && 0%{?suse_version} < 1690 +perl -i -lpe 's{ -llzmasdk }{ -lclzma }g' thirdparty/CMakeLists.txt +%endif %cmake -DNO_WEBVIEW=ON -DWX_GTK3=OFF -DNO_CRASHHANDLER=ON \ -DCMAKE_C_FLAGS_RELWITHDEBINFO:STRING="$CFLAGS" \ -DCMAKE_CXX_FLAGS_RELWITHDEBINFO:STRING="$CFLAGS" \ ++++++ 0001-build-allow-deactivating-the-crash-handler-at-build-.patch ++++++ --- /var/tmp/diff_new_pack.A64Hlx/_old 2025-10-28 14:46:26.726633652 +0100 +++ /var/tmp/diff_new_pack.A64Hlx/_new 2025-10-28 14:46:26.730633820 +0100 @@ -18,11 +18,11 @@ src/CMakeLists.txt | 3 +++ 2 files changed, 4 insertions(+), 1 deletion(-) -Index: SLADE-3.2.7/src/Application/SLADEWxApp.cpp +Index: SLADE-3.2.8/src/Application/SLADEWxApp.cpp =================================================================== ---- SLADE-3.2.7.orig/src/Application/SLADEWxApp.cpp -+++ SLADE-3.2.7/src/Application/SLADEWxApp.cpp -@@ -449,7 +449,7 @@ bool SLADEWxApp::OnInit() +--- SLADE-3.2.8.orig/src/Application/SLADEWxApp.cpp ++++ SLADE-3.2.8/src/Application/SLADEWxApp.cpp +@@ -452,7 +452,7 @@ bool SLADEWxApp::OnInit() #endif // Handle exceptions using wxDebug stuff, but only in release mode @@ -31,14 +31,14 @@ wxHandleFatalExceptions(true); #endif -Index: SLADE-3.2.7/src/CMakeLists.txt +Index: SLADE-3.2.8/src/CMakeLists.txt =================================================================== ---- SLADE-3.2.7.orig/src/CMakeLists.txt -+++ SLADE-3.2.7/src/CMakeLists.txt -@@ -41,3 +41,6 @@ if(WIN32 AND MSVC) - else() +--- SLADE-3.2.8.orig/src/CMakeLists.txt ++++ SLADE-3.2.8/src/CMakeLists.txt +@@ -47,3 +47,6 @@ if (WIN32 AND MSVC) + else () include("unix") # Linux or MacOS - endif() + endif () +if (NOT NO_CRASHHANDLER) + add_definitions(-DUSE_CRASHHANDLER) +endif () ++++++ 3.2.7.tar.gz -> 3.2.8.tar.gz ++++++ /work/SRC/openSUSE:Factory/slade/3.2.7.tar.gz /work/SRC/openSUSE:Factory/.slade.new.1980/3.2.8.tar.gz differ: char 13, line 1 ++++++ _scmsync.obsinfo ++++++ --- /var/tmp/diff_new_pack.A64Hlx/_old 2025-10-28 14:46:26.818637522 +0100 +++ /var/tmp/diff_new_pack.A64Hlx/_new 2025-10-28 14:46:26.822637689 +0100 @@ -1,5 +1,5 @@ -mtime: 1756040132 -commit: 8273475613ed25ec94162ec0a442886cb70d2bb47950605c56e52ab890cfc8ab +mtime: 1761066075 +commit: 2e771a1914a8de2797ef9c5131873a054dfa6793ac3b536ceb8e84d949fcb2e9 url: https://src.opensuse.org/jengelh/slade revision: master ++++++ build.specials.obscpio ++++++ ++++++ build.specials.obscpio ++++++ diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/.gitignore new/.gitignore --- old/.gitignore 1970-01-01 01:00:00.000000000 +0100 +++ new/.gitignore 2025-10-21 19:01:26.000000000 +0200 @@ -0,0 +1 @@ +.osc ++++++ disable_sse.patch ++++++ --- /var/tmp/diff_new_pack.A64Hlx/_old 2025-10-28 14:46:27.050647279 +0100 +++ /var/tmp/diff_new_pack.A64Hlx/_new 2025-10-28 14:46:27.054647447 +0100 @@ -12,26 +12,26 @@ thirdparty/dumb/helpers/resampler.c | 2 +- 2 files changed, 1 insertion(+), 6 deletions(-) -Index: SLADE-3.2.7/cmake/unix.cmake +Index: SLADE-3.2.8/cmake/unix.cmake =================================================================== ---- SLADE-3.2.7.orig/cmake/unix.cmake -+++ SLADE-3.2.7/cmake/unix.cmake -@@ -133,11 +133,6 @@ endif(APPLE) +--- SLADE-3.2.8.orig/cmake/unix.cmake ++++ SLADE-3.2.8/cmake/unix.cmake +@@ -133,11 +133,6 @@ endif (APPLE) # Enable SSE instructions for dumb library include(CheckCCompilerFlag) -check_c_compiler_flag(-msse HAVE_SSE) --if(HAVE_SSE) +-if (HAVE_SSE) - add_compile_options(-msse) - add_definitions(-D_USE_SSE) --endif() +-endif () # Define a SLADE_DEBUG macro set(CMAKE_CXX_FLAGS_DEBUG "${CMAKE_CXX_FLAGS_DEBUG} -DSLADE_DEBUG") -Index: SLADE-3.2.7/thirdparty/dumb/helpers/resampler.c +Index: SLADE-3.2.8/thirdparty/dumb/helpers/resampler.c =================================================================== ---- SLADE-3.2.7.orig/thirdparty/dumb/helpers/resampler.c -+++ SLADE-3.2.7/thirdparty/dumb/helpers/resampler.c +--- SLADE-3.2.8.orig/thirdparty/dumb/helpers/resampler.c ++++ SLADE-3.2.8/thirdparty/dumb/helpers/resampler.c @@ -2,7 +2,7 @@ #include <string.h> #define _USE_MATH_DEFINES
