Script 'mail_helper' called by obssrc Hello community, here is the log from the commit of package adaptivecpp for openSUSE:Factory checked in at 2026-08-19 17:58:41 ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Comparing /work/SRC/openSUSE:Factory/adaptivecpp (Old) and /work/SRC/openSUSE:Factory/.adaptivecpp.new.1258 (New) ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Package is "adaptivecpp" Wed Aug 19 17:58:41 2026 rev:10 rq:1371878 version:25.10.0 Changes: -------- --- /work/SRC/openSUSE:Factory/adaptivecpp/adaptivecpp.changes 2025-11-13 17:29:06.563540629 +0100 +++ /work/SRC/openSUSE:Factory/.adaptivecpp.new.1258/adaptivecpp.changes 2026-08-19 18:00:46.522278556 +0200 @@ -1,0 +2,7 @@ +Tue Aug 18 21:26:11 UTC 2026 - Aaron Puchert <[email protected]> + +- Add 0003-Find-llvm-link.patch: use imported CMake target to find + llvm-link, which is no longer available as unversioned symlink + since the migration away from update-alternatives. + +------------------------------------------------------------------- New: ---- 0003-Find-llvm-link.patch ----------(New B)---------- New: - Add 0003-Find-llvm-link.patch: use imported CMake target to find llvm-link, which is no longer available as unversioned symlink ----------(New E)---------- ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Other differences: ------------------ ++++++ adaptivecpp.spec ++++++ --- /var/tmp/diff_new_pack.uzlraP/_old 2026-08-19 18:00:47.159301458 +0200 +++ /var/tmp/diff_new_pack.uzlraP/_new 2026-08-19 18:00:47.160301494 +0200 @@ -1,7 +1,7 @@ # # spec file for package adaptivecpp # -# Copyright (c) 2025 SUSE LLC and contributors +# Copyright (c) 2026 SUSE LLC and contributors # Copyright (c) 2025 Andreas Stieger <[email protected]> # Copyright (c) 2025 Eyad Issa <[email protected]> # @@ -29,6 +29,7 @@ Source: https://github.com/AdaptiveCpp/AdaptiveCpp/archive/v%{version}/%{name}-%{version}.tar.gz Patch1: 0001-Use-bin-env-python3-instead-of-python3-in-scripts.patch Patch2: 0002-Remove-realpath-in-acpp.patch +Patch3: 0003-Find-llvm-link.patch BuildRequires: boost-devel BuildRequires: clang%{llvm_version}-devel BuildRequires: cmake ++++++ 0003-Find-llvm-link.patch ++++++ Use imported target to obtain the correct path. diff --git a/src/libkernel/sscp/CMakeLists.txt b/src/libkernel/sscp/CMakeLists.txt index 672553a..07feced 100644 --- a/src/libkernel/sscp/CMakeLists.txt +++ b/src/libkernel/sscp/CMakeLists.txt @@ -77,7 +77,7 @@ function(libkernel_generate_bitcode_target) set(linked_output ${CMAKE_CURRENT_BINARY_DIR}/libkernel-sscp-${target}-full.bc) add_custom_command( OUTPUT ${linked_output} - COMMAND ${LLVM_TOOLS_BINARY_DIR}/llvm-link -o=${linked_output} ${output_files} + COMMAND llvm-link -o=${linked_output} ${output_files} DEPENDS ${output_files} ${target_depends} )
