From 49bb65e8224b87865c97c5e8b995a912f5d51f37 Mon Sep 17 00:00:00 2001 From: Funda Wang Date: Wed, 5 Feb 2025 11:49:08 +0800 Subject: [PATCH] correctly fix libdebuginfod.so requirement (cherry picked from commit 03439e769961e201412708bead2d05337ae11472) --- elfutils.spec | 9 +++++++-- 1 file changed, 7 insertions(+), 2 deletions(-) diff --git a/elfutils.spec b/elfutils.spec index 7a12468..dc65e62 100644 --- a/elfutils.spec +++ b/elfutils.spec @@ -1,6 +1,6 @@ Name: elfutils Version: 0.192 -Release: 2 +Release: 3 Summary: A collection of utilities and DSOs to handle ELF files and DWARF data URL: https://elfutils.org/ License: GPL-3.0-or-later AND (GPL-2.0-or-later OR LGPL-3.0-or-later) @@ -136,6 +136,7 @@ License: GPL-3.0-or-later AND (GPL-2.0-or-later OR LGPL-3.0-or-later) %package debuginfod-client-devel Summary: Libraries and headers to build debuginfod client applications +Requires: %{name}-debuginfod-client = %{version}-%{release} License: GPL-2.0-or-later OR LGPL-3.0-or-later %package debuginfod @@ -269,11 +270,12 @@ fi %files debuginfod-client %{_libdir}/libdebuginfod-%{version}.so -%{_libdir}/libdebuginfod.so* +%{_libdir}/libdebuginfod.so.* %{_bindir}/debuginfod-find %config(noreplace) %{_datadir}/fish/vendor_conf.d/debuginfod.fish %files debuginfod-client-devel +%{_libdir}/libdebuginfod.so %{_libdir}/pkgconfig/libdebuginfod.pc %{_includedir}/elfutils/debuginfod.h @@ -299,6 +301,9 @@ exit 0 %systemd_postun_with_restart debuginfod.service %changelog +* Wed Feb 05 2025 Funda Wang - 0.192-3 +- correctly fix libdebuginfod.so requirement + * Fri Jan 24 2025 shixuantong - 0.192-2 - move /usr/lib64/libdebuginfod.so from debuginfod-client-devel to debuginfod-client -- Gitee