From 84e007ff9b6659b06bb494e33d2d5414636bd82e Mon Sep 17 00:00:00 2001 From: Chunmei Xu Date: Wed, 14 Aug 2024 12:20:50 +0800 Subject: [PATCH] disable auto requires of cuda-gdb since it requires many python libs Signed-off-by: Chunmei Xu --- cuda.spec | 16 +++++++++++++++- 1 file changed, 15 insertions(+), 1 deletion(-) diff --git a/cuda.spec b/cuda.spec index ea46432..c6c1a9a 100644 --- a/cuda.spec +++ b/cuda.spec @@ -1,4 +1,4 @@ -%define anolis_release 1 +%define anolis_release 2 %global _build_id_links none @@ -527,6 +527,17 @@ tracing tools that target CUDA applications. %package gdb-%{cuda_name_version} Summary: CUDA debugger API Version: %{cuda_gdb_version} +AutoReq: no +Requires: /usr/bin/env +Requires: libcrypt.so.1()(64bit) +Requires: libdl.so.2()(64bit) +Requires: libgcc_s.so.1()(64bit) +Requires: libgmp.so.10()(64bit) +Requires: libm.so.6()(64bit) +Requires: libstdc++.so.6()(64bit) +Requires: libutil.so.1()(64bit) +Requires: libncurses.so.6()(64bit) +Requires: libpthread.so.0()(64bit) %description gdb-%{cuda_name_version} CUDA-GDB is the NVIDIA tool for debugging CUDA applications running on Linux @@ -1946,6 +1957,9 @@ exit 0 rm -rf %{_builddir}/%{name}-%{cuda_version} %changelog +* Wed Aug 14 2024 Chunmei Xu - 12.5.1-2 +- disable auto requires of cuda-gdb since it requires many python libs + * Tue Aug 13 2024 Chunmei Xu - 12.5.1-1 - update cuda to 12.5.1 -- Gitee