Hello community, here is the log from the commit of package elfutils for openSUSE:Factory checked in at 2016-03-05 13:04:41 ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Comparing /work/SRC/openSUSE:Factory/elfutils (Old) and /work/SRC/openSUSE:Factory/.elfutils.new (New) ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Package is "elfutils" Changes: -------- --- /work/SRC/openSUSE:Factory/elfutils/elfutils.changes 2015-11-26 17:00:47.000000000 +0100 +++ /work/SRC/openSUSE:Factory/.elfutils.new/elfutils.changes 2016-03-05 13:04:43.000000000 +0100 @@ -1,0 +2,11 @@ +Sat Feb 27 07:36:03 UTC 2016 - [email protected] + +- rename dt-ppc-opt.patch as elfutils-0.164-dt-ppc-opt.patch + and add reference to upstream commit id + +------------------------------------------------------------------- +Tue Dec 15 14:59:54 UTC 2015 - [email protected] + +- dt-ppc-opt.patch: add support for DT_PPC_OPT + +------------------------------------------------------------------- New: ---- elfutils-0.164-dt-ppc-opt.patch ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Other differences: ------------------ ++++++ elfutils.spec ++++++ --- /var/tmp/diff_new_pack.o0l1WE/_old 2016-03-05 13:04:45.000000000 +0100 +++ /var/tmp/diff_new_pack.o0l1WE/_new 2016-03-05 13:04:45.000000000 +0100 @@ -1,7 +1,7 @@ # # spec file for package elfutils # -# Copyright (c) 2015 SUSE LINUX GmbH, Nuernberg, Germany. +# Copyright (c) 2016 SUSE LINUX GmbH, Nuernberg, Germany. # # All modifications and additions to the file contributed by third parties # remain the property of their copyright owners, unless otherwise agreed @@ -30,6 +30,7 @@ Source2: baselibs.conf Source3: %{name}.changes Patch1: elfutils-0.137-dwarf-header-check-fix.diff +Patch2: elfutils-0.164-dt-ppc-opt.patch BuildRoot: %{_tmppath}/%{name}-%{version}-build BuildRequires: autoconf BuildRequires: automake @@ -138,6 +139,7 @@ %prep %setup -q %patch1 -p1 +%patch2 -p1 %build # Change DATE/TIME macros to use last change time of elfutils.changes ++++++ elfutils-0.164-dt-ppc-opt.patch ++++++ >From b6dd3cc8abf8e72fae6c52e7e7518c181d490cc7 Mon Sep 17 00:00:00 2001 From: Andreas Schwab <[email protected]> Date: Tue, 15 Dec 2015 15:58:36 +0100 Subject: [PATCH] Add support for DT_PPC_OPT Upstream: https://git.fedorahosted.org/cgit/elfutils.git/commit/?id=d1d4db68eb441ae67864be209a0679cbc86189c5 References: https://lists.fedorahosted.org/archives/list/[email protected]/thread/IEYDIMGDVFYHGXO6VKHFJFIZEL5KXU63/ Signed-off-by: Andreas Schwab <[email protected]> --- backends/ppc_symbol.c | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/backends/ppc_symbol.c b/backends/ppc_symbol.c index 37d4918..1273c1d 100644 --- a/backends/ppc_symbol.c +++ b/backends/ppc_symbol.c @@ -65,6 +65,8 @@ ppc_dynamic_tag_name (int64_t tag, char *buf __attribute__ ((unused)), { case DT_PPC_GOT: return "PPC_GOT"; + case DT_PPC_OPT: + return "PPC_OPT"; default: break; } @@ -75,7 +77,8 @@ ppc_dynamic_tag_name (int64_t tag, char *buf __attribute__ ((unused)), bool ppc_dynamic_tag_check (int64_t tag) { - return tag == DT_PPC_GOT; + return (tag == DT_PPC_GOT + || tag == DT_PPC_OPT); } -- 2.6.4
