!31 update version to 0.187

#I5CZ9T  
From: @panxh_purple 
Reviewed-by: @xiezhipeng1 
Signed-off-by: @xiezhipeng1
This commit is contained in:
openeuler-ci-bot 2022-07-05 01:39:18 +00:00 committed by Gitee
commit f606a1ba27
No known key found for this signature in database
GPG Key ID: 173E9B9CA92EEF8F
3 changed files with 7 additions and 30 deletions

View File

@ -1,14 +1,13 @@
# -*- rpm-spec from http://elfutils.org/ -*-
Name: elfutils
Version: 0.185
Release: 5
Version: 0.187
Release: 1
Summary: A collection of utilities and DSOs to handle ELF files and DWARF data
URL: http://elfutils.org/
License: GPLv3+ and (GPLv2+ or LGPLv3+)
Source: ftp://sourceware.org/pub/elfutils/%{version}/elfutils-%{version}.tar.bz2
Patch0: eu-elfclassify-no-stdin-should-use-classify_flag_no_stdin.patch
Patch1: Fix-segfault-in-eu-ar-m.patch
Patch0: Fix-segfault-in-eu-ar-m.patch
Requires: elfutils-libelf = %{version}-%{release}
Requires: elfutils-libs = %{version}-%{release}
@ -265,6 +264,7 @@ fi
%{_mandir}/man1/debuginfod-find.1*
%{_mandir}/man3/debuginfod_*.3*
%{_mandir}/man3/elf_*.3*
%{_mandir}/man7/debuginfod*.7.*
%{_mandir}/man8/debuginfod.8*
%files debuginfod-client
@ -302,6 +302,9 @@ exit 0
%systemd_postun_with_restart debuginfod.service
%changelog
* Fri Jul 1 2022 panxiaohe <panxh.life@foxmail.com> - 0.187-1
- update version to 0.187
* Mon Jun 27 2022 zhangruifang <zhangruifang1@h-partners.com> - 0.185-5
- fix segfault in eu-ar -m

View File

@ -1,26 +0,0 @@
From 6ac20db56ab5e431b128a9f80d294bcf82111e29 Mon Sep 17 00:00:00 2001
From: panxiaohe <panxh.life@foxmail.com>
Date: Thu, 17 Feb 2022 15:39:23 +0800
Subject: [PATCH] eu-elfclassify: --no-stdin option should use
classify_flag_no_stdin
---
src/elfclassify.c | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/src/elfclassify.c b/src/elfclassify.c
index 535cc49..712e08f 100644
--- a/src/elfclassify.c
+++ b/src/elfclassify.c
@@ -948,7 +948,7 @@ separated by newlines"), 2 },
{ "stdin0", classify_flag_stdin0, NULL, 0,
N_("Also read file names to process from standard input, \
separated by ASCII NUL bytes"), 2 },
- { "no-stdin", classify_flag_stdin, NULL, 0,
+ { "no-stdin", classify_flag_no_stdin, NULL, 0,
N_("Do not read files from standard input (default)"), 2 },
{ "compressed", 'z', NULL, 0,
N_("Try to open compressed files or embedded (kernel) ELF images"),
--
1.8.3.1