Script 'mail_helper' called by obssrc Hello community, here is the log from the commit of package renderdoc for openSUSE:Factory checked in at 2022-08-16 17:08:22 ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Comparing /work/SRC/openSUSE:Factory/renderdoc (Old) and /work/SRC/openSUSE:Factory/.renderdoc.new.1521 (New) ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Package is "renderdoc" Tue Aug 16 17:08:22 2022 rev:7 rq:997342 version:1.20 Changes: -------- --- /work/SRC/openSUSE:Factory/renderdoc/renderdoc.changes 2022-06-01 17:34:55.918759940 +0200 +++ /work/SRC/openSUSE:Factory/.renderdoc.new.1521/renderdoc.changes 2022-08-16 17:08:28.624009681 +0200 @@ -1,0 +2,10 @@ +Tue Aug 16 12:12:44 UTC 2022 - Patrik Jakobsson <[email protected]> + +- Added patch file 0001-Fix-install-rpaths.patch + +------------------------------------------------------------------- +Mon Aug 15 09:31:57 UTC 2022 - Patrik Jakobsson <[email protected]> + +- Remove install rpaths from binaries. Factory no longer allows them. + +------------------------------------------------------------------- New: ---- 0001-Fix-install-rpaths.patch ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Other differences: ------------------ ++++++ renderdoc.spec ++++++ --- /var/tmp/diff_new_pack.fKaVHV/_old 2022-08-16 17:08:29.340011823 +0200 +++ /var/tmp/diff_new_pack.fKaVHV/_new 2022-08-16 17:08:29.344011835 +0200 @@ -25,7 +25,8 @@ URL: https://renderdoc.org/ Source0: https://github.com/baldurk/renderdoc/archive/v%{version}/renderdoc-%{version}.tar.gz Source1: https://github.com/baldurk/swig/archive/renderdoc-modified-7.zip -Patch0: 0002-Add-debugger-as-desktop-menu-category.patch +Patch0: 0001-Fix-install-rpaths.patch +Patch1: 0002-Add-debugger-as-desktop-menu-category.patch BuildRequires: Mesa-libGL-devel BuildRequires: autoconf BuildRequires: automake @@ -78,7 +79,8 @@ -DENABLE_RENDERDOCCMD=ON \ -DENABLE_QRENDERDOC=ON \ -DCMAKE_BUILD_TYPE=RelWithDebInfo \ - -DBUILD_VERSION_STABLE=ON + -DBUILD_VERSION_STABLE=ON \ + -DCMAKE_INSTALL_RPATH="" %cmake_build %install ++++++ 0001-Fix-install-rpaths.patch ++++++ >From 6144c10c98340a36832ecb52ebd9efbd07a69189 Mon Sep 17 00:00:00 2001 From: Patrik Jakobsson <[email protected]> Date: Mon, 15 Aug 2022 10:21:17 +0200 Subject: [PATCH] Fix install rpaths Signed-off-by: Patrik Jakobsson <[email protected]> --- qrenderdoc/qrenderdoc.pro | 2 +- renderdoccmd/CMakeLists.txt | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/qrenderdoc/qrenderdoc.pro b/qrenderdoc/qrenderdoc.pro index dc2de53..964b68d 100644 --- a/qrenderdoc/qrenderdoc.pro +++ b/qrenderdoc/qrenderdoc.pro @@ -124,7 +124,7 @@ win32 { # Link against the core library LIBS += -lrenderdoc - QMAKE_LFLAGS += '-Wl,-rpath,\'\$$ORIGIN\',-rpath,\'\$$ORIGIN/../lib'$$LIB_SUFFIX'/'$$LIB_SUBFOLDER_TRAIL_SLASH'\'' + set(CMAKE_INSTALL_RPATH "$ORIGIN/:$ORIGIN/../lib${LIB_SUFFIX}/${LIB_SUBFOLDER_TRAIL_SLASH}") # Add the SWIG files that were generated in cmake SOURCES += $$CMAKE_DIR/qrenderdoc/renderdoc_python.cxx diff --git a/renderdoccmd/CMakeLists.txt b/renderdoccmd/CMakeLists.txt index 1f0173d..e9b8f10 100644 --- a/renderdoccmd/CMakeLists.txt +++ b/renderdoccmd/CMakeLists.txt @@ -69,7 +69,7 @@ else() set(CMAKE_MACOSX_RPATH TRUE) set(CMAKE_INSTALL_RPATH "@executable_path/../lib") else() - set(CMAKE_INSTALL_RPATH "$ORIGIN/:$ORIGIN/../lib${LIB_SUFFIX}/${LIB_SUBFOLDER_TRAIL_SLASH}") + set(CMAKE_INSTALL_RPATH "") endif() set(CMAKE_EXE_LINKER_FLAGS "${CMAKE_EXE_LINKER_FLAGS} ${LINKER_FLAGS}") -- 2.37.1
