Blame SPECS/elfutils.spec

d89fee
# For RHEL8 we need this before using any scl macro.
d89fee
%global __python /usr/bin/python3
d89fee
d89fee
%{?scl:%{?scl_package:%scl_package elfutils}}
d89fee
d89fee
Name: %{?scl_prefix}elfutils
d89fee
Version: 0.185
84b2c5
%global baserelease 5
d89fee
Release: %{baserelease}%{?dist}
d89fee
URL: http://elfutils.org/
d89fee
%global source_url ftp://sourceware.org/pub/elfutils/%{version}/
d89fee
License: GPLv3+ and (GPLv2+ or LGPLv3+) and GFDL
d89fee
Source: %{?source_url}elfutils-%{version}.tar.bz2
d89fee
Summary: A collection of utilities and DSOs to handle ELF files and DWARF data
d89fee
Group: Development/Tools
d89fee
d89fee
# Needed for isa specific Provides and Requires.
d89fee
%global depsuffix %{?_isa}%{!?_isa:-%{_arch}}
d89fee
d89fee
Requires: %{?scl_prefix}elfutils-libelf%{depsuffix} = %{version}-%{release}
d89fee
Requires: %{?scl_prefix}elfutils-libs%{depsuffix} = %{version}-%{release}
d89fee
%if 0%{?rhel} >= 8 || 0%{?fedora} >= 20
d89fee
Recommends: %{?scl_prefix}elfutils-debuginfod-client%{depsuffix} = %{version}-%{release}
d89fee
%else
d89fee
Requires: %{?scl_prefix}elfutils-debuginfod-client%{depsuffix} = %{version}-%{release}
d89fee
%endif
d89fee
d89fee
# Libraries in Developer Toolset are linked in statically to allow
d89fee
# compiled binaries to run even when DTS is not installed.
d89fee
# So we provide linker scripts for all libraries.
d89fee
Source2: libelf.so
d89fee
Source3: libdw.so
d89fee
Source4: libasm.so
d89fee
Source5: libelf.a
d89fee
Source6: libdw.a
d89fee
Source7: libasm.a
d89fee
Source8: libdebuginfod.so
d89fee
Source9: libdebuginfod.a
d89fee
d89fee
BuildRequires: gcc
d89fee
# For libstdc++ demangle support
d89fee
BuildRequires: gcc-c++
d89fee
d89fee
BuildRequires: gettext
d89fee
BuildRequires: bison
d89fee
BuildRequires: flex
d89fee
d89fee
# Compression support
d89fee
BuildRequires: zlib-devel
d89fee
BuildRequires: bzip2-devel
d89fee
BuildRequires: xz-devel
d89fee
BuildRequires: libzstd-devel
d89fee
d89fee
# For debuginfod
d89fee
BuildRequires: pkgconfig(libmicrohttpd) >= 0.9.33
d89fee
BuildRequires: pkgconfig(libcurl) >= 7.29.0
d89fee
BuildRequires: pkgconfig(sqlite3) >= 3.7.17
d89fee
BuildRequires: pkgconfig(libarchive) >= 3.1.2
d89fee
d89fee
# For tests need to bunzip2 test files.
d89fee
BuildRequires: bzip2
d89fee
BuildRequires: zstd
d89fee
# For the run-debuginfod-find.sh test case in %%check for /usr/sbin/ss
d89fee
BuildRequires: iproute
d89fee
BuildRequires: bsdtar
d89fee
BuildRequires: curl
d89fee
BuildRequires: procps
d89fee
d89fee
BuildRequires: automake
d89fee
BuildRequires: autoconf
d89fee
BuildRequires: gettext-devel
d89fee
d89fee
%{?scl:Requires:%scl_runtime}
d89fee
d89fee
%global _gnu %{nil}
d89fee
%global _program_prefix eu-
d89fee
d89fee
# For DTS we never provide the default yama scope.
d89fee
%global provide_yama_scope	0
d89fee
d89fee
# Are we building for a Software Collection?
d89fee
%{?scl:%global is_scl 1}
d89fee
%{!?scl:%global is_scl 0}
d89fee
d89fee
# Remove any pkgconfig provides for SCL devel packages.
d89fee
# These should only be provided by the base packages.
84b2c5
# Also remove the pkgconfig requires for libdw because that
84b2c5
# includes libelf, which should come from the SCL, not the
84b2c5
# base system. The other pkgconfig requires are fine and do
84b2c5
# come from base.
d89fee
%if %{is_scl}
d89fee
%define __provides_exclude_from ^%{_libdir}/pkgconfig/.*.pc$
84b2c5
%define __requires_exclude_from ^%{_libdir}/pkgconfig/libdw.pc$
d89fee
%endif
d89fee
d89fee
# Patches
d89fee
d89fee
# DTS specific patches.
d89fee
Patch100: elfutils-0.185-dts.patch
d89fee
Patch101: elfutils-dts-libs-version.patch
d89fee
d89fee
%description
d89fee
Elfutils is a collection of utilities, including stack (to show
d89fee
backtraces), nm (for listing symbols from object files), size
d89fee
(for listing the section sizes of an object or archive file),
d89fee
strip (for discarding symbols), readelf (to see the raw ELF file
d89fee
structures), elflint (to check for well-formed ELF files) and
d89fee
elfcompress (to compress or decompress ELF sections).
d89fee
d89fee
%package libs
d89fee
Summary: Libraries to handle compiled objects
d89fee
Group: Development/Tools
d89fee
License: GPLv2+ or LGPLv3+
d89fee
%if 0%{!?_isa:1}
d89fee
Provides: %{?scl_prefix}elfutils-libs%{depsuffix} = %{version}-%{release}
d89fee
%endif
d89fee
Requires: %{?scl_prefix}elfutils-libelf%{depsuffix} = %{version}-%{release}
d89fee
%if %{provide_yama_scope}
d89fee
Requires: default-yama-scope
d89fee
%endif
d89fee
%if 0%{?rhel} >= 8 || 0%{?fedora} >= 20
d89fee
Requires: %{?scl_prefix}elfutils-debuginfod-client%{depsuffix} = %{version}-%{release}
d89fee
%else
d89fee
Recommends: %{?scl_prefix}elfutils-debuginfod-client%{depsuffix} = %{version}-%{release}
d89fee
%endif
d89fee
d89fee
%description libs
d89fee
The elfutils-libs package contains libraries which implement DWARF, ELF,
d89fee
and machine-specific ELF handling and process introspection.  These
d89fee
libraries are used by the programs in the elfutils package.  The
d89fee
elfutils-devel package enables building other programs using these
d89fee
libraries.
d89fee
d89fee
%package devel
d89fee
Summary: Development libraries to handle compiled objects
d89fee
Group: Development/Tools
d89fee
License: GPLv2+ or LGPLv3+
d89fee
%if 0%{!?_isa:1}
d89fee
Provides: %{?scl_prefix}elfutils-devel%{depsuffix} = %{version}-%{release}
d89fee
%endif
d89fee
Requires: %{?scl_prefix}elfutils-libs%{depsuffix} = %{version}-%{release}
d89fee
Requires: %{?scl_prefix}elfutils-libelf-devel%{depsuffix} = %{version}-%{release}
d89fee
%if 0%{?rhel} >= 8 || 0%{?fedora} >= 20
d89fee
Requires: %{?scl_prefix}elfutils-debuginfod-client-devel%{depsuffix} = %{version}-%{release}
d89fee
%else
d89fee
Recommends: %{?scl_prefix}elfutils-debuginfod-client-devel%{depsuffix} = %{version}-%{release}
d89fee
%endif
d89fee
# For DTS explicitly require compression -devel packages
d89fee
Requires: zlib-devel
d89fee
Requires: bzip2-devel
d89fee
Requires: xz-devel
d89fee
Requires: libzstd-devel
d89fee
d89fee
%description devel
d89fee
The elfutils-devel package contains the libraries to create
d89fee
applications for handling compiled objects.  libdw provides access
d89fee
to the DWARF debugging information.  libasm provides a programmable
d89fee
assembler interface.
d89fee
d89fee
%package libelf
d89fee
Summary: Library to read and write ELF files
d89fee
Group: Development/Tools
d89fee
License: GPLv2+ or LGPLv3+
d89fee
%if 0%{!?_isa:1}
d89fee
Provides: %{?scl_prefix}elfutils-libelf%{depsuffix} = %{version}-%{release}
d89fee
%endif
d89fee
d89fee
%description libelf
d89fee
The elfutils-libelf package provides a DSO which allows reading and
d89fee
writing ELF files on a high level.  Third party programs depend on
d89fee
this package to read internals of ELF files.  The programs of the
d89fee
elfutils package use it also to generate new ELF files.
d89fee
d89fee
%package libelf-devel
d89fee
Summary: Development support for libelf
d89fee
Group: Development/Tools
d89fee
License: GPLv2+ or LGPLv3+
d89fee
%if 0%{!?_isa:1}
d89fee
Provides: %{?scl_prefix}elfutils-libelf-devel%{depsuffix} = %{version}-%{release}
d89fee
%endif
d89fee
Requires: %{?scl_prefix}elfutils-libelf%{depsuffix} = %{version}-%{release}
d89fee
# For DTS explicitly require zlib-devel
d89fee
Requires: zlib-devel
d89fee
d89fee
%description libelf-devel
d89fee
The elfutils-libelf-devel package contains the libraries to create
d89fee
applications for handling compiled objects.  libelf allows you to
d89fee
access the internals of the ELF object file format, so you can see the
d89fee
different sections of an ELF file.
d89fee
d89fee
%if %{provide_yama_scope}
d89fee
%package default-yama-scope
d89fee
Summary: Default yama attach scope sysctl setting
d89fee
Group: Development/Tools
d89fee
License: GPLv2+ or LGPLv3+
d89fee
Provides: default-yama-scope
d89fee
BuildArch: noarch
d89fee
# For the sysctl_apply macro
d89fee
%{?systemd_requires}
d89fee
BuildRequires: systemd >= 215
d89fee
d89fee
%description default-yama-scope
d89fee
Yama sysctl setting to enable default attach scope settings
d89fee
enabling programs to use ptrace attach, access to
d89fee
/proc/PID/{mem,personality,stack,syscall}, and the syscalls
d89fee
process_vm_readv and process_vm_writev which are used for
d89fee
interprocess services, communication and introspection
d89fee
(like synchronisation, signaling, debugging, tracing and
d89fee
profiling) of processes.
d89fee
%endif
d89fee
d89fee
%package debuginfod-client
d89fee
Summary: Library and command line client for build-id HTTP ELF/DWARF server
d89fee
License: GPLv3+ and (GPLv2+ or LGPLv3+)
d89fee
%if 0%{!?_isa:1}
d89fee
Provides: %{?scl_prefix}elfutils-debuginfod-client%{depsuffix} = %{version}-%{release}
d89fee
%endif
d89fee
d89fee
%package debuginfod-client-devel
d89fee
Summary: Libraries and headers to build debuginfod client applications
d89fee
License: GPLv2+ or LGPLv3+
d89fee
%if 0%{!?_isa:1}
d89fee
Provides: %{?scl_prefix}elfutils-debuginfod-client-devel%{depsuffix} = %{version}-%{release}
d89fee
%endif
d89fee
Requires: %{?scl_prefix}elfutils-debuginfod-client%{depsuffix} = %{version}-%{release}
d89fee
# For DTS explicitly require curl-devel to get libcurl.so
d89fee
Requires: pkgconfig(libcurl) >= 7.29.0
d89fee
d89fee
%package debuginfod
d89fee
Summary: HTTP ELF/DWARF file server addressed by build-id
d89fee
License: GPLv3+
d89fee
Requires: %{?scl_prefix}elfutils-libs%{depsuffix} = %{version}-%{release}
d89fee
Requires: %{?scl_prefix}elfutils-libelf%{depsuffix} = %{version}-%{release}
d89fee
Requires: %{?scl_prefix}elfutils-debuginfod-client%{depsuffix} = %{version}-%{release}
d89fee
# To extract .deb files with a bsdtar (= libarchive) subshell
d89fee
Requires: bsdtar
d89fee
d89fee
%description debuginfod-client
d89fee
The elfutils-debuginfod-client package contains shared libraries
d89fee
dynamically loaded from -ldw, which use a debuginfod service
d89fee
to look up debuginfo and associated data. Also includes a
d89fee
command-line frontend.
d89fee
d89fee
%description debuginfod-client-devel
d89fee
The elfutils-debuginfod-client-devel package contains the libraries
d89fee
to create applications to use the debuginfod service.
d89fee
d89fee
%description debuginfod
d89fee
The elfutils-debuginfod package contains the debuginfod binary
d89fee
and control files for a service that can provide ELF/DWARF
d89fee
files to remote clients, based on build-id identification.
d89fee
The ELF/DWARF file searching functions in libdwfl can query
d89fee
such servers to download those files on demand.
d89fee
d89fee
%prep
d89fee
%setup -q -n elfutils-%{version}
d89fee
d89fee
# Apply patches
d89fee
d89fee
# DTS specific patches
d89fee
%patch100 -p1 -b .dts
d89fee
%patch101 -p1 -b .versions
d89fee
d89fee
autoreconf -f -v -i
d89fee
d89fee
# In case the above patches added any new test scripts, make sure they
d89fee
# are executable.
d89fee
find . -name \*.sh ! -perm -0100 -print | xargs chmod +x
d89fee
d89fee
%build
d89fee
# Remove -Wall from default flags.  The makefiles enable enough warnings
d89fee
# themselves, and they use -Werror.  Appending -Wall defeats the cases where
d89fee
# the makefiles disable some specific warnings for specific code.
d89fee
# But add -Wformat explicitly for use with -Werror=format-security which
d89fee
# doesn't work without -Wformat (enabled by -Wall).
d89fee
RPM_OPT_FLAGS="${RPM_OPT_FLAGS/-Wall/}"
d89fee
RPM_OPT_FLAGS="${RPM_OPT_FLAGS} -Wformat"
d89fee
d89fee
d89fee
trap 'cat config.log' EXIT
d89fee
%configure CFLAGS="$RPM_OPT_FLAGS -fexceptions"
d89fee
trap '' EXIT
d89fee
%make_build V=1
d89fee
d89fee
%install
d89fee
rm -rf ${RPM_BUILD_ROOT}
d89fee
%make_install
d89fee
d89fee
chmod +x ${RPM_BUILD_ROOT}%{_prefix}/%{_lib}/lib*.so*
d89fee
d89fee
# We don't have standard DEBUGINFOD_URLS yet.
d89fee
rm ${RPM_BUILD_ROOT}%{_sysconfdir}/profile.d/debuginfod.sh
d89fee
rm ${RPM_BUILD_ROOT}%{_sysconfdir}/profile.d/debuginfod.csh
d89fee
d89fee
# Rename static archives to *.ar, so that brp-strip-static-archive
d89fee
# doesn't find them.  We still want debuginfo for other files, so we
d89fee
# can't simply %%define __strip /bin/true.  We do want -lelf -static
d89fee
# to find libelf.a though, so we provide a linker script that brings
d89fee
# in the .ar files.
d89fee
find $RPM_BUILD_ROOT%{_libdir}/ -name '*.a' -exec mv -v {} {}r \;
d89fee
d89fee
ls -ls $RPM_BUILD_ROOT%{_libdir}/lib{elf,dw,asm,debuginfod}.so
d89fee
rm -f $RPM_BUILD_ROOT%{_libdir}/lib{elf,dw,asm,debuginfod}.so
d89fee
install -p -m 644 %{SOURCE2} %{SOURCE3} %{SOURCE4} \
d89fee
	%{SOURCE5} %{SOURCE6} %{SOURCE7} %{SOURCE8} %{SOURCE9} \
d89fee
	$RPM_BUILD_ROOT%{_libdir}/
d89fee
d89fee
%find_lang elfutils
d89fee
d89fee
%if %{provide_yama_scope}
d89fee
install -Dm0644 config/10-default-yama-scope.conf ${RPM_BUILD_ROOT}%{_sysctldir}/10-default-yama-scope.conf
d89fee
%endif
d89fee
d89fee
%check
d89fee
# Record some build root versions in build.log
d89fee
uname -r; rpm -q binutils gcc glibc || true
d89fee
d89fee
%make_build -s check || (cat tests/test-suite.log; true)
d89fee
d89fee
# Only the latest Fedora and EPEL have these scriptlets,
d89fee
# older Fedora and plain RHEL don't.
d89fee
%if 0%{?ldconfig_scriptlets:1}
d89fee
%ldconfig_scriptlets libs
d89fee
%ldconfig_scriptlets libelf
d89fee
%ldconfig_scriptlets debuginfod-client
d89fee
%else
d89fee
%post libs -p /sbin/ldconfig
d89fee
%postun libs -p /sbin/ldconfig
d89fee
%post libelf -p /sbin/ldconfig
d89fee
%postun libelf -p /sbin/ldconfig
d89fee
%post debuginfod-client -p /sbin/ldconfig
d89fee
%postun debuginfod-client -p /sbin/ldconfig
d89fee
%endif
d89fee
d89fee
%if %{provide_yama_scope}
d89fee
%post default-yama-scope
d89fee
# Due to circular dependencies might not be installed yet, so double check.
d89fee
# (systemd -> elfutils-libs -> default-yama-scope -> systemd)
d89fee
if [ -x /usr/lib/systemd/systemd-sysctl ] ; then
d89fee
%sysctl_apply 10-default-yama-scope.conf
d89fee
fi
d89fee
%endif
d89fee
d89fee
%files
d89fee
%defattr(-,root,root)
d89fee
%{!?_licensedir:%global license %%doc}
d89fee
%license COPYING COPYING-GPLV2 COPYING-LGPLV3 doc/COPYING-GFDL
d89fee
%doc README TODO CONTRIBUTING
d89fee
%{_bindir}/eu-addr2line
d89fee
%{_bindir}/eu-ar
d89fee
%{_bindir}/eu-elfclassify
d89fee
%{_bindir}/eu-elfcmp
d89fee
%{_bindir}/eu-elfcompress
d89fee
%{_bindir}/eu-elflint
d89fee
%{_bindir}/eu-findtextrel
d89fee
%{_bindir}/eu-make-debug-archive
d89fee
%{_bindir}/eu-nm
d89fee
%{_bindir}/eu-objdump
d89fee
%{_bindir}/eu-ranlib
d89fee
%{_bindir}/eu-readelf
d89fee
%{_bindir}/eu-size
d89fee
%{_bindir}/eu-stack
d89fee
%{_bindir}/eu-strings
d89fee
%{_bindir}/eu-strip
d89fee
%{_bindir}/eu-unstrip
d89fee
%{_mandir}/man1/eu-*.1*
d89fee
d89fee
%files libs
d89fee
%defattr(-,root,root)
d89fee
%{!?_licensedir:%global license %%doc}
d89fee
%license COPYING-GPLV2 COPYING-LGPLV3
d89fee
%{_libdir}/libasm-%{version}.so
d89fee
%{_libdir}/libdw-%{version}.so
d89fee
%{_libdir}/libasm.so.*
d89fee
%{_libdir}/libdw.so.*
d89fee
d89fee
%files devel
d89fee
%defattr(-,root,root)
d89fee
%{_includedir}/dwarf.h
d89fee
%dir %{_includedir}/elfutils
d89fee
%{_includedir}/elfutils/elf-knowledge.h
d89fee
%{_includedir}/elfutils/known-dwarf.h
d89fee
%{_includedir}/elfutils/libasm.h
d89fee
%{_includedir}/elfutils/libdw.h
d89fee
%{_includedir}/elfutils/libdwfl.h
d89fee
%{_includedir}/elfutils/libdwelf.h
d89fee
%{_includedir}/elfutils/version.h
d89fee
%{_libdir}/libasm.so
d89fee
%{_libdir}/libdw.so
d89fee
%{_libdir}/pkgconfig/libdw.pc
d89fee
%{_libdir}/libdw.a
d89fee
%{_libdir}/libasm.a
d89fee
%{_libdir}/libdw.ar
d89fee
%{_libdir}/libasm.ar
d89fee
d89fee
%files -f elfutils.lang libelf
d89fee
%defattr(-,root,root)
d89fee
%{!?_licensedir:%global license %%doc}
d89fee
%license COPYING-GPLV2 COPYING-LGPLV3
d89fee
%{_libdir}/libelf-%{version}.so
d89fee
%{_libdir}/libelf.so.*
d89fee
d89fee
%files libelf-devel
d89fee
%defattr(-,root,root)
d89fee
%{_includedir}/libelf.h
d89fee
%{_includedir}/gelf.h
d89fee
%{_includedir}/nlist.h
d89fee
%{_libdir}/libelf.so
d89fee
%{_libdir}/pkgconfig/libelf.pc
d89fee
%{_mandir}/man3/elf_*.3*
d89fee
%{_libdir}/libelf.a
d89fee
%{_libdir}/libelf.ar
d89fee
d89fee
%if %{provide_yama_scope}
d89fee
%files default-yama-scope
d89fee
%defattr(-,root,root)
d89fee
%{_sysctldir}/10-default-yama-scope.conf
d89fee
%endif
d89fee
d89fee
%files debuginfod-client
d89fee
%defattr(-,root,root)
d89fee
%{_libdir}/libdebuginfod-%{version}.so
d89fee
%{_libdir}/libdebuginfod.so.*
d89fee
%{_bindir}/debuginfod-find
d89fee
%{_mandir}/man1/debuginfod-find.1*
d89fee
d89fee
%files debuginfod-client-devel
d89fee
%defattr(-,root,root)
d89fee
%{_libdir}/pkgconfig/libdebuginfod.pc
d89fee
%{_mandir}/man3/debuginfod_*.3*
d89fee
%{_includedir}/elfutils/debuginfod.h
d89fee
%{_libdir}/libdebuginfod.so
d89fee
%{_libdir}/libdebuginfod.a
d89fee
%{_libdir}/libdebuginfod.ar
d89fee
d89fee
%files debuginfod
d89fee
%defattr(-,root,root)
d89fee
%{_bindir}/debuginfod
d89fee
%{_mandir}/man8/debuginfod.8*
d89fee
d89fee
%changelog
84b2c5
* Thu Sep 30 2021 Mark Wielaard <mjw@redhat.com> - 0.185-5
84b2c5
- Rebuilt for #2000942
84b2c5
84b2c5
* Fri Sep  3 2021 Mark Wielaard <mjw@redhat.com> - 0.185-4
84b2c5
- Also use __requires_exclude_from for libdw.pc
84b2c5
d89fee
* Thu Jul 29 2021 Mark Wielaard <mjw@redhat.com> - 0.185-3
d89fee
- Use __provides_exclude_from instead of filter_from_provides
d89fee
d89fee
* Thu Jun 24 2021 Mark Wielaard <mjw@redhat.com> - 0.185-2
d89fee
- Filter out pkgconfig provides
d89fee
d89fee
* Thu May 27 2021 Mark Wielaard <mjw@redhat.com> - 0.185-1
d89fee
- Upgrade to upstream 0.185
d89fee
d89fee
* Wed Nov 11 2020 Mark Wielaard <mjw@redhat.com> - 0.182-3
d89fee
- Add -lzstd to libdw.so linker script.
d89fee
d89fee
* Mon Nov  2 2020 Mark Wielaard <mjw@redhat.com> - 0.182-2
d89fee
- Add elfutils-0.182-debuginfod-test-fix.patch.
d89fee
d89fee
* Mon Nov  2 2020 Mark Wielaard <mjw@redhat.com> - 0.182-1
d89fee
- Upgrade to upstream 0.182
d89fee
  - backends: Support for tilegx has been removed.
d89fee
  - config: New /etc/profile.d files to provide default $DEBUGINFOD_URLS.
d89fee
  - debuginfod: More efficient package traversal, tolerate various
d89fee
    errors during scanning, grooming progress is more visible and
d89fee
    interruptible, more prometheus metrics.
d89fee
  - debuginfod-client: Now supports compressed (kernel) ELF images.
d89fee
  - libdwfl: Add ZSTD compression support.
d89fee
d89fee
* Mon Nov  2 2020 Mark Wielaard <mjw@redhat.com> - 0.180-2
d89fee
- Add Requires for -devel packages (#1873413)
d89fee
d89fee
* Thu Jun 11 2020 Mark Wielaard <mjw@redhat.com> - 0.180-1
d89fee
- New upstream release.
d89fee
d89fee
* Wed Jun 10 2020 Mark Wielaard <mjw@redhat.com> - 0.178-1
d89fee
- New upstream release.
d89fee
  - debuginfod: New server, client tool and library to index and fetch
d89fee
                ELF/DWARF files addressed by build-id through HTTP.
d89fee
  - doc: There are now some manual pages for functions and tools.
d89fee
  - backends: The libebl libraries are no longer dynamically loaded
d89fee
              through dlopen, but are now compiled into libdw.so directly.
d89fee
  - readelf: -n, --notes now takes an optional "SECTION" argument.
d89fee
             -p and -x now also handle section numbers.
d89fee
             New option --dyn-sym to show just the dynamic symbol table.
d89fee
  - libdw: Abbrevs and DIEs can now be read concurrently by multiple
d89fee
           threads through the same Dwarf handle.
d89fee
  - libdwfl: Will try to use debuginfod when installed as fallback to
d89fee
             retrieve ELF and DWARF debug data files by build-id.
d89fee
d89fee
* Tue Jun  9 2020 Mark Wielaard <mjw@redhat.com> - 0.177-1
d89fee
- New upstream release.
d89fee
  - elfclassify: New tool to analyze ELF objects.
d89fee
  - readelf: Print DW_AT_data_member_location as decimal offset.
d89fee
             Decode DW_AT_discr_list block attributes.
d89fee
  - libdw: Add DW_AT_GNU_numerator, DW_AT_GNU_denominator and DW_AT_GNU_bias.
d89fee
  - libdwelf: Add dwelf_elf_e_machine_string.
d89fee
              dwelf_elf_begin now only returns NULL when there is an error
d89fee
              reading or decompressing a file. If the file is not an ELF file
d89fee
              an ELF handle of type ELF_K_NONE is returned.
d89fee
d89fee
* Wed May 27 2020 Mark Wielaard <mjw@redhat.com> - 0.176-6
d89fee
- Add elfutils-0.176-pt-gnu-prop.patch
d89fee
d89fee
* Fri Jul  5 2019 Mark Wielaard <mjw@redhat.com> - 0.176-5
d89fee
- Add elfutils-0.176-strip-symbols-illformed.patch
d89fee
d89fee
* Fri Jun  7 2019 Mark Wielaard <mjw@redhat.com> - 0.176-4
d89fee
- Add elfutils-0.176-gcc-pr88835.patch
d89fee
- Add elfutils-0.176-xlate-note.patch
d89fee
- Add elfutils-0.176-elf-update.patch
d89fee
d89fee
* Thu Mar  7 2019 Mark Wielaard <mjw@redhat.com> - 0.176-1
d89fee
- Update to elfutils-0.176.
d89fee
  - Fixes CVE-2019-7146, CVE-2019-7148, CVE-2019-7149, CVE-2019-7150,
d89fee
          CVE-2019-7664, CVE-2019-7665.
d89fee
d89fee
* Fri Jan 11 2019 Mark Wielaard <mjw@redhat.com> - 0.175-2
d89fee
- Update to elfutils-0.175.
d89fee
d89fee
* Fri Sep 14 2018 Mark Wielaard <mjw@redhat.com> - 0.174-1
d89fee
- New upstream release
d89fee
  - libelf, libdw and all tools now handle extended shnum and shstrndx
d89fee
    correctly
d89fee
  - elfcompress: Don't rewrite input file if no section data needs
d89fee
    updating.  Try harder to keep same file mode bits (suid) on rewrite.
d89fee
  - strip: Handle mixed (out of order) allocated/non-allocated sections.
d89fee
  - unstrip: Handle SHT_GROUP sections.
d89fee
  - Fixes CVE-2018-16062, CVE-2018-16402 and CVE-2018-16403.
d89fee
d89fee
* Wed Jul  4 2018 Mark Wielaard <mjw@redhat.com> - 0.173-1
d89fee
- New upstream release
d89fee
  - More fixes for crashes and hangs found by afl-fuzz. In particular
d89fee
    various functions now detect and break infinite loops caused by bad
d89fee
    DIE tree cycles.
d89fee
  - readelf: Will now lookup the size and signedness of constant value
d89fee
    types to display them correctly (and not just how they were encoded).
d89fee
  - libdw: New function dwarf_next_lines to read CU-less .debug_line data.
d89fee
    dwarf_begin_elf now accepts ELF files containing just .debug_line
d89fee
    or .debug_frame sections (which can be read without needing a DIE
d89fee
    tree from the .debug_info section).
d89fee
    Removed dwarf_getscn_info, which was never implemented.
d89fee
  - backends: Handle BPF simple relocations.
d89fee
    The RISCV backends now handles ABI specific CFI and knows about
d89fee
    RISCV register types and names.
d89fee
d89fee
- Add scl macros and elfutils-0.173-dts.patch.
d89fee
d89fee
* Wed Jun 20 2018 Mark Wielaard <mjw@fedoraproject.org> - 0.172-2
d89fee
- Add elfutils-0.172-robustify.patch.
d89fee
d89fee
* Mon Jun 11 2018 Mark Wielaard <mjw@fedoraproject.org> - 0.172-1
d89fee
- New upstream release.
d89fee
  - No functional changes compared to 0.171.
d89fee
  - Various bug fixes in libdw and eu-readelf dealing with bad DWARF5
d89fee
    data. Thanks to running the afl fuzzer on eu-readelf and various
d89fee
    testcases.
d89fee
  - eu-readelf -N is ~15% faster.
d89fee
d89fee
* Fri Jun 01 2018 Mark Wielaard <mjw@fedoraproject.org> - 0.171-1
d89fee
- New upstream release.
d89fee
  - DWARF5 and split dwarf, including GNU DebugFission, support.
d89fee
  - readelf: Handle all new DWARF5 sections.
d89fee
    --debug-dump=info+ will show split unit DIEs when found.
d89fee
    --dwarf-skeleton can be used when inspecting a .dwo file.
d89fee
    Recognizes GNU locviews with --debug-dump=loc.
d89fee
  - libdw: New functions dwarf_die_addr_die, dwarf_get_units,
d89fee
    dwarf_getabbrevattr_data and dwarf_cu_info.
d89fee
    libdw will now try to resolve the alt file on first use
d89fee
    when not set yet with dwarf_set_alt.
d89fee
    dwarf_aggregate_size() now works with multi-dimensional arrays.
d89fee
  - libdwfl: Use process_vm_readv when available instead of ptrace.
d89fee
  - backends: Add a RISC-V backend.
d89fee
d89fee
* Wed Apr 11 2018 Mark Wielaard <mjw@fedoraproject.org> - 0.170-11
d89fee
- Add explict libstdc++-devel BuildRequires for demangle support.
d89fee
- Add elfutils-0.170-unwind.patch. (#1555726)
d89fee
d89fee
* Thu Mar 01 2018 Mark Wielaard <mjw@fedoraproject.org> - 0.170-10
d89fee
- Add elfutils-0.170-GNU_variable_value.patch
d89fee
- Add elfutils-0.170-locviews.patch
d89fee
d89fee
* Fri Feb 16 2018 Mark Wielaard <mjw@fedoraproject.org> - 0.170-9
d89fee
- Add elfutils-0.170-core-pid.patch
d89fee
- Add elfutils-0.170-elf_sync.patch
d89fee
- Add elfutils-0.170-new-notes-hack.patch
d89fee
d89fee
* Thu Feb 15 2018 Mark Wielaard <mjw@fedoraproject.org> - 0.170-8
d89fee
- Add elfutils-0.170-sys-ptrace.patch
d89fee
- Make sure spec can be build even when ldconfig_scriplets aren't defined.
d89fee
- Add elfutils-0.170-m68k-packed-not-aligned.patch
d89fee
d89fee
* Fri Feb 09 2018 Igor Gnatenko <ignatenkobrain@fedoraproject.org> - 0.170-7
d89fee
- Escape macros in %%changelog
d89fee
d89fee
* Wed Feb 07 2018 Fedora Release Engineering <releng@fedoraproject.org> - 0.170-6
d89fee
- Rebuilt for https://fedoraproject.org/wiki/Fedora_28_Mass_Rebuild
d89fee
d89fee
* Sat Feb 03 2018 Igor Gnatenko <ignatenkobrain@fedoraproject.org> - 0.170-5
d89fee
- Switch to %%ldconfig_scriptlets
d89fee
d89fee
* Wed Dec 20 2017 Mark Wielaard <mjw@fedoraproject.org> - 0.170-4
d89fee
- Add elfutils-0.170-dwarf_aggregate_size.patch.
d89fee
d89fee
* Wed Nov  8 2017 Mark Wielaard <mjw@fedoraproject.org> - 0.170-3
d89fee
- Rely on (and check) systemd_requires for sysctl_apply default-yama-scope.
d89fee
d89fee
* Thu Nov  2 2017 Mark Wielaard <mjw@redhat.com> - 0.170-2
d89fee
- Config files under /usr/lib/sysctl.d (_sysctldir) aren't %%config (#1506660)
d89fee
  Admin can place the real config file under /etc/sysctl.d as override.
d89fee
d89fee
* Thu Aug  3 2017 Mark Wielaard <mjw@fedoraproject.org> - 0.170-1
d89fee
- New upstream release. Remove upstreamed patches.
d89fee
- provide_yama_scope for either fedora >= 22 and rhel >= 7.
d89fee
d89fee
* Wed Aug 02 2017 Fedora Release Engineering <releng@fedoraproject.org> - 0.169-8
d89fee
- Rebuilt for https://fedoraproject.org/wiki/Fedora_27_Binutils_Mass_Rebuild
d89fee
d89fee
* Wed Jul 26 2017 Fedora Release Engineering <releng@fedoraproject.org> - 0.169-7
d89fee
- Rebuilt for https://fedoraproject.org/wiki/Fedora_27_Mass_Rebuild
d89fee
d89fee
* Fri Jul 21 2017 Mark Wielaard <mjw@fedoraproject.org> - 0.169-6
d89fee
- Add elfutils-0.169-strip-data-marker-symbols.patch.
d89fee
d89fee
* Mon Jul 17 2017 Mark Wielaard <mjw@fedoraproject.org> - 0.169-5
d89fee
- Fix build on s390 (ptrace.h). Add elfutils-0.169-s390x-ptrace.patch.
d89fee
d89fee
* Mon Jul 17 2017 Mark Wielaard <mjw@fedoraproject.org> - 0.169-4
d89fee
- Add elfutils-0.169-strip-keep-remove-section.patch (#1465997)
d89fee
d89fee
* Wed Jun  7 2017 Mark Wielaard <mjw@fedoraproject.org> - 0.169-3
d89fee
- Add elfutils-0.169-dup-shstrtab.patch
d89fee
- Add elfutils-0.169-strip-empty.patch
d89fee
d89fee
* Tue May 30 2017 Mark Wielaard <mjw@fedoraproject.org> - 0.169-2
d89fee
- Add ppc64 fallback unwinder.
d89fee
d89fee
* Fri May  5 2017 Mark Wielaard <mjw@fedoraproject.org> - 0.169-1
d89fee
- New upstream release. Removed upstreamed patches.
d89fee
d89fee
* Wed Feb 15 2017 Mark Wielaard <mark@klomp.org> - 0.168-5
d89fee
- Add patches for new gcc warnings and new binutils ppc64 attributes.
d89fee
  - elfutils-0.168-libasm-truncation.patch
d89fee
  - elfutils-0.168-ppc64-attrs.patch
d89fee
d89fee
* Fri Feb 10 2017 Fedora Release Engineering <releng@fedoraproject.org> - 0.168-4
d89fee
- Rebuilt for https://fedoraproject.org/wiki/Fedora_26_Mass_Rebuild
d89fee
d89fee
* Mon Jan 16 2017 Mark Wielaard <mark@klomp.org> - 0.168-3
d89fee
- Never use old, deprecated, filter_provides_in, it really is too broken.
d89fee
d89fee
* Fri Jan 13 2017 Mark Wielaard <mark@klomp.org> - 0.168-2
d89fee
- Filter out private libebl backends from provides.
d89fee
d89fee
* Wed Dec 28 2016 Mark Wielaard <mark@klomp.org> - 0.168-1
d89fee
- New upstream release from new home https://sourceware.org/elfutils/
d89fee
- Resolves:
d89fee
  - #1396092 Please implement eu-readelf --symbols[=SECTION]
d89fee
  - #1388057 memory allocation failure in allocate_elf
d89fee
  - #1387584 memory allocation failure in __libelf_set_rawdata_wrlock
d89fee
d89fee
* Fri Oct  7 2016 Mark Wielaard <mjw@redhat.com> - 0.167-2
d89fee
- Add elfutils-0.167-strip-alloc-symbol.patch (#1380961)
d89fee
d89fee
* Fri Aug 26 2016 Mark Wielaard <mjw@redhat.com> - 0.167-1
d89fee
- Upgrade to elfutils-0.167
d89fee
  Drop upstream elfutils-0.166-elfcmp-comp-gcc6.patch
d89fee
  Fixes: #1365812, #1352232.
d89fee
d89fee
* Thu Apr 14 2016 Mark Wielaard <mjw@redhat.com> - 0.166-2
d89fee
- Add elfutils-0.166-elfcmp-comp-gcc6.patch
d89fee
d89fee
* Thu Mar 31 2016 Mark Wielaard <mjw@redhat.com> - 0.166-1
d89fee
- Upgrade to elfutils-0.166
d89fee
  Drop upstreamed patches:
d89fee
    - elfutils-0.165-nobitsalign-strip.patch.
d89fee
    - elfutils-0.165-reloc.patch.
d89fee
    - elfutils-0.165-elf-libelf.patch.
d89fee
d89fee
* Thu Feb 04 2016 Mark Wielaard <mjw@redhat.com> - 0.165-5
d89fee
- Add elfutils-0.165-nobitsalign-strip.patch.
d89fee
d89fee
* Wed Feb 03 2016 Fedora Release Engineering <releng@fedoraproject.org> - 0.165-4
d89fee
- Rebuilt for https://fedoraproject.org/wiki/Fedora_24_Mass_Rebuild
d89fee
d89fee
* Thu Jan 28 2016 Mark Wielaard <mjw@redhat.com> - 0.165-3
d89fee
- Add elfutils-0.165-reloc.patch.
d89fee
d89fee
* Thu Jan 14 2016 Mark Wielaard <mjw@redhat.com> - 0.165-2
d89fee
- Add elfutils-0.165-elf-libelf.patch.
d89fee
d89fee
* Mon Jan 11 2016 Mark Wielaard <mjw@redhat.com> - 0.165-1
d89fee
- Update to elfutils-0.165 (#1294079, #1236699, #807053)
d89fee
  - Add eu-elfcompress
d89fee
  - Add pkg-config files for libelf and libdw.
d89fee
d89fee
* Fri Oct 16 2015 Mark Wielaard <mjw@redhat.com> - 0.164-1
d89fee
- Update to elfutils-0.164
d89fee
- Drop old compat stuff
d89fee
d89fee
* Mon Sep 07 2015 Mark Wielaard <mjw@redhat.com> - 0.163-4
d89fee
- Add elfutils-0.163-readelf-n-undefined-shift.patch (#1259259)
d89fee
d89fee
* Tue Aug 04 2015 Mark Wielaard <mjw@redhat.com> - 0.163-3
d89fee
- Add elfutils-0.163-default-yama-conf.patch (#1250079)
d89fee
  Provides: default-yama-scope
d89fee
d89fee
* Mon Aug 03 2015 Mark Wielaard <mjw@redhat.com> - 0.163-2
d89fee
- Add elfutils-0.163-unstrip-shf_info_link.patch
d89fee
d89fee
* Fri Jun 19 2015 Mark Wielaard <mjw@redhat.com> - 0.163-1
d89fee
- Update to 0.163
d89fee
  - Drop elfutils-0.162-ftruncate-allocate.patch
d89fee
d89fee
* Tue Jun 16 2015 Mark Wielaard <mjw@redhat.com> - 0.162-2
d89fee
- Add elfutils-0.162-ftruncate-allocate.patch (#1232206)
d89fee
d89fee
* Thu Jun 11 2015 Mark Wielaard <mjw@redhat.com> - 0.162-1
d89fee
- Update to 0.162 (#1170810, #1139815, #1129756, #1020842)
d89fee
- Include elfutils/known-dwarf.h
d89fee
- Drop BuildRequires glibc-headers (#1230468)
d89fee
- Removed integrated upstream patches:
d89fee
  - elfutils-0.161-aarch64relro.patch
d89fee
  - elfutils-0.161-copyreloc.patch
d89fee
  - elfutils-0.161-addralign.patch
d89fee
  - elfutils-0.161-ar-long-name.patch
d89fee
  - elfutils-0.161-formref-type.patch
d89fee
d89fee
* Sat May 02 2015 Kalev Lember <kalevlember@gmail.com> - 0.161-8
d89fee
- Rebuilt for GCC 5 C++11 ABI change
d89fee
d89fee
* Mon Mar 23 2015 Mark Wielaard <mjw@redhat.com> - 0.161-7
d89fee
- Add elfutils-0.161-aarch64relro.patch (#1201778)
d89fee
d89fee
* Mon Mar 09 2015 Mark Wielaard <mjw@redhat.com> - 0.161-6
d89fee
- Add elfutils-0.161-copyreloc.patch.
d89fee
d89fee
* Sat Feb 21 2015 Till Maas <opensource@till.name> - 0.161-5
d89fee
- Rebuilt for Fedora 23 Change
d89fee
  https://fedoraproject.org/wiki/Changes/Harden_all_packages_with_position-independent_code
d89fee
d89fee
* Sat Feb 07 2015 Mark Wielaard <mjw@redhat.com> - 0.161-4
d89fee
- Add elfutils-0.161-addralign.patch (#1189928)
d89fee
d89fee
* Thu Feb 05 2015 Mark Wielaard <mjw@redhat.com> - 0.161-3
d89fee
- Add elfutils-0.161-formref-type.patch
d89fee
d89fee
* Tue Jan 13 2015 Mark Wielaard <mjw@redhat.com> - 0.161-2
d89fee
- Add elfutils-0.161-ar-long-name.patch (#1181525 CVE-2014-9447)
d89fee
d89fee
* Fri Dec 19 2014 Mark Wielaard <mjw@redhat.com> - 0.161-1
d89fee
- Update to 0.161.
d89fee
d89fee
* Wed Aug 27 2014 Mark Wielaard <mjw@redhat.com> - 0.160-1
d89fee
- Update to 0.160.
d89fee
  - Remove integrated upstream patches:
d89fee
    elfutils-aarch64-user_regs_struct.patch
d89fee
    elfutils-0.159-argp-attach.patch
d89fee
    elfutils-0.159-aarch64-bool-ret.patch
d89fee
    elfutils-0.159-elf-h.patch
d89fee
    elfutils-0.159-ppc64le-elfv2-abi.patch
d89fee
    elfutils-0.159-report_r_debug.patch
d89fee
    elfutils-0.159-ko_xz.patch
d89fee
d89fee
* Sat Aug 16 2014 Mark Wielaard <mjw@redhat.com> - 0.159-10
d89fee
- Add elfutils-0.159-ko_xz.patch
d89fee
d89fee
* Sat Aug 16 2014 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 0.159-9
d89fee
- Rebuilt for https://fedoraproject.org/wiki/Fedora_21_22_Mass_Rebuild
d89fee
d89fee
* Mon Jul 28 2014 Mark Wielaard <mjw@redhat.com> - 0.159-8
d89fee
- Add elfutils-0.159-report_r_debug.patch (#1112610)
d89fee
d89fee
* Fri Jul 18 2014 Mark Wielaard <mjw@redhat.com> - 0.159-7
d89fee
- Add configure check to elfutils-aarch64-user_regs_struct.patch.
d89fee
d89fee
* Sat Jul 12 2014 Tom Callaway <spot@fedoraproject.org> - 0.159-6
d89fee
- fix license handling
d89fee
d89fee
* Fri Jul  4 2014 Mark Wielaard <mjw@redhat.com> - 0.159-5
d89fee
- Add elfutils-0.159-aarch64-bool-ret.patch
d89fee
- Add elfutils-0.159-elf-h.patch
d89fee
- Add elfutils-0.159-ppc64le-elfv2-abi.patch (#1110249)
d89fee
d89fee
* Tue Jun 10 2014 Mark Wielaard <mjw@redhat.com> - 0.159-4
d89fee
- Add elfutils-0.159-argp-attach.patch (#1107654)
d89fee
d89fee
* Mon Jun 09 2014 Kyle McMartin <kyle@fedoraproject.org> - 0.159-3
d89fee
- AArch64: handle new glibc-headers which provides proper GETREGSET structs.
d89fee
d89fee
* Sat Jun 07 2014 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 0.159-2.1
d89fee
- Rebuilt for https://fedoraproject.org/wiki/Fedora_21_Mass_Rebuild
d89fee
d89fee
* Mon May 19 2014 Mark Wielaard <mjw@redhat.com> - 0.159-1
d89fee
- Update to 0.159.
d89fee
  - Remove integrated upstream patches:
d89fee
    robustify.patch, mod-e_type.patch and CVE-2014-0172.patch.
d89fee
  - Remove special handling of now default compile and configure flags:
d89fee
    Don't remove -Werror=format-security, don't configure --enable-dwz.
d89fee
d89fee
* Thu Apr 10 2014 Mark Wielaard <mjw@redhat.com> - 0.158-3
d89fee
- Add elfutils-0.158-CVE-2014-0172.patch (#1085729)
d89fee
d89fee
* Tue Mar 11 2014 Mark Wielaard <mjw@redhat.com> - 0.158-2
d89fee
- Add elfutils-0.158-mod-e_type.patch.
d89fee
d89fee
* Mon Jan  6 2014 Mark Wielaard <mjw@redhat.com> - 0.158-1
d89fee
- Update to 0.158. Remove all patches now upstream. Add eu-stack.
d89fee
d89fee
* Thu Dec 19 2013 Mark Wielaard <mjw@redhat.com> - 0.157-4
d89fee
- Add elfutils-0.157-aarch64-got-special-symbol.patch.
d89fee
- Remove -Werror=format-security from RPM_OPT_FLAGS.
d89fee
d89fee
* Fri Dec 13 2013 Petr Machata <pmachata@redhat.com> - 0.157-3
d89fee
- Add upstream support for aarch64
d89fee
d89fee
* Wed Oct  9 2013 Mark Wielaard <mjw@redhat.com> 0.157-2
d89fee
- Show tests/test-suite.log in build.log when make check fails.
d89fee
d89fee
* Mon Sep 30 2013 Mark Wielaard <mjw@redhat.com> 0.157-1
d89fee
- Update to 0.157.
d89fee
- Remove elfutils-0.156-abi_cfi-ppc-s390-arm.patch.
d89fee
- Remove elfutils-0.156-et_dyn-kernels.patch.
d89fee
d89fee
* Fri Sep 06 2013 Mark Wielaard <mjw@redhat.com> 0.156-5
d89fee
- Add elfutils-0.156-abi_cfi-ppc-s390-arm.patch.
d89fee
  Sets up initial CFI return register, CFA location expression and
d89fee
  register rules for PPC, S390 and ARM (dwarf_cfi_addrframe support).
d89fee
d89fee
* Mon Aug 26 2013 Mark Wielaard <mjw@redhat.com> 0.156-4
d89fee
- Add elfutils-0.156-et_dyn-kernels.patch.
d89fee
  Fixes an issue on ppc64 with systemtap kernel address placement.
d89fee
d89fee
* Thu Aug  8 2013 Mark Wielaard <mjw@redhat.com> 0.156-3
d89fee
- Make check can now also be ran in parallel.
d89fee
d89fee
* Thu Jul 25 2013 Jan Kratochvil <jan.kratochvil@redhat.com> 0.156-2
d89fee
- Update the %%configure command for compatibility with fc20 Koji.
d89fee
d89fee
* Thu Jul 25 2013 Jan Kratochvil <jan.kratochvil@redhat.com> 0.156-1
d89fee
- Update to 0.156.
d89fee
  - #890447 - Add __bss_start and __TMC_END__ to elflint.
d89fee
  - #909481 - Only try opening files with installed compression libraries.
d89fee
  - #914908 - Add __bss_start__ to elflint.
d89fee
  - #853757 - Updated Polish translation.
d89fee
  - #985438 - Incorrect prototype of __libdwfl_find_elf_build_id.
d89fee
  - Drop upstreamed elfutils-0.155-binutils-pr-ld-13621.patch.
d89fee
  - Drop upstreamed elfutils-0.155-mem-align.patch.
d89fee
  - Drop upstreamed elfutils-0.155-sizeof-pointer-memaccess.patch.
d89fee
d89fee
* Tue Jul 02 2013 Karsten Hopp <karsten@redhat.com> 0.155-6
d89fee
- bump release and rebuild to fix dependencies on PPC
d89fee
d89fee
* Sun Feb 24 2013 Mark Wielaard <mjw@redhat.com> - 0.155-5
d89fee
- Add ARM variant to elfutils-0.155-binutils-pr-ld-13621.patch rhbz#914908.
d89fee
- rhel >= 5 has xz-devel
d89fee
d89fee
* Fri Feb 22 2013 Mark Wielaard <mjw@redhat.com> - 0.155-4
d89fee
- Replace elfutils-0.155-binutils-pr-ld-13621.patch with upstream fix.
d89fee
d89fee
* Thu Jan 24 2013 Mark Wielaard <mjw@redhat.com> - 0.155-3
d89fee
- Backport sizeof-pointer-memaccess upstream fixes.
d89fee
d89fee
* Thu Jan 10 2013 Mark Wielaard <mjw@redhat.com> - 0.155-2
d89fee
- #891553 - unaligned memory access issues.
d89fee
d89fee
* Mon Aug 27 2012 Mark Wielaard <mjw@redhat.com> - 0.155-1
d89fee
- Update to 0.155.
d89fee
  - #844270 - eu-nm invalid %%N$ use detected.
d89fee
  - #847454 - Ukrainian translation update.
d89fee
  - Removed local ar 64-bit symbol patch, dwz support patch and xlatetom fix.
d89fee
d89fee
* Tue Aug 14 2012 Petr Machata <pmachata@redhat.com> - 0.154-4
d89fee
- Add support for archives with 64-bit symbol tables (#843019)
d89fee
d89fee
* Wed Aug 01 2012 Mark Wielaard <mjw@redhat.com> 0.154-3
d89fee
- Add dwz support
d89fee
d89fee
* Wed Jul 18 2012 Mark Wielaard <mjw@redhat.com> 0.154-2
d89fee
- Add upstream xlatetom fix (#835877)
d89fee
d89fee
* Mon Jul 02 2012 Karsten Hopp <karsten@redhat.com> 0.154-1.1
d89fee
- disable unstrip-n check for now (835877)
d89fee
d89fee
* Fri Jun 22 2012 Mark Wielaard <mjw@redhat.com> - 0.154-1
d89fee
- Update to 0.154
d89fee
  - elflint doesn't recognize SHF_INFO_LINK on relocation sections (#807823)
d89fee
  - Update license to GPLv3+ and (GPLv2+ or LGPLv3+)
d89fee
  - Remove elfutils-0.153-dwfl_segment_report_module.patch
d89fee
- Add elfutils-0.154-binutils-pr-ld-13621.patch
d89fee
d89fee
* Mon Apr 02 2012 Mark Wielaard <mark@klomp.org> - 0.153-2
d89fee
- Fix for eu-unstrip emits garbage for librt.so.1 (#805447)
d89fee
d89fee
* Thu Feb 23 2012 Mark Wielaard <mjw@redhat.com> - 0.153-1
d89fee
- Update to 0.153
d89fee
  - New --disable-werror for portability.
d89fee
  - Support for .zdebug sections (#679777)
d89fee
  - type_units and DW_AT_GNU_odr_signature support (#679815)
d89fee
  - low level support DW_OP_GNU_entry_value and DW_TAG_GNU_call_site (#688090)
d89fee
  - FTBFS on rawhide with gcc 4.7 (#783506)
d89fee
    - Remove gcc-4.7 patch
d89fee
d89fee
* Fri Jan 20 2012 Mark Wielaard <mjw@redhat.com> - 0.152-3
d89fee
- Fixes for gcc-4.7 based on upstream commit 32899a (#783506).
d89fee
d89fee
* Fri Jan 13 2012 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 0.152-2
d89fee
- Rebuilt for https://fedoraproject.org/wiki/Fedora_17_Mass_Rebuild
d89fee
d89fee
* Tue Feb 15 2011 Roland McGrath <roland@redhat.com> - 0.152-1
d89fee
- Update to 0.152
d89fee
  - Various build and warning nits fixed for newest GCC and Autoconf.
d89fee
  - libdwfl: Yet another prelink-related fix for another regression. (#674465)
d89fee
  - eu-elfcmp: New flag --ignore-build-id to ignore differing build ID bits.
d89fee
  - eu-elfcmp: New flag -l/--verbose to print all differences.
d89fee
d89fee
* Tue Feb 08 2011 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 0.151-2
d89fee
- Rebuilt for https://fedoraproject.org/wiki/Fedora_15_Mass_Rebuild
d89fee
d89fee
* Wed Jan 12 2011 Roland McGrath <roland@redhat.com> - 0.151-1
d89fee
- Update to 0.151
d89fee
  - libdwfl: Fix for more prelink cases with separate debug file.
d89fee
  - eu-strip: New flag --strip-sections to remove section headers entirely.
d89fee
d89fee
* Thu Dec  2 2010 Roland McGrath <roland@redhat.com> - 0.150-2
d89fee
- libdwfl: Remove bogus assert. (#658268)
d89fee
d89fee
* Tue Nov 23 2010 Roland McGrath <roland@redhat.com> - 0.150-1
d89fee
- Update to 0.150
d89fee
  - libdw: Fix for handling huge .debug_aranges section. (#638432)
d89fee
  - libdwfl: Fix for handling prelinked DSO with separate debug file. (#652857)
d89fee
  - findtextrel: Fix diagnostics to work with usual section ordering.
d89fee
d89fee
* Wed Sep 29 2010 jkeating - 0.149-2
d89fee
- Rebuilt for gcc bug 634757
d89fee
d89fee
* Mon Sep 13 2010 Roland McGrath <roland@redhat.com> - 0.149-1
d89fee
- Update to 0.149
d89fee
  - libdw: Decode new DW_OP_GNU_implicit_pointer operation;
d89fee
           new function dwarf_getlocation_implicit_pointer.
d89fee
  - libdwfl: New function dwfl_dwarf_line.
d89fee
  - eu-addr2line: New flag -F/--flags to print more DWARF line info details.
d89fee
  - eu-readelf: better .debug_loc processing (#627729)
d89fee
  - eu-strings: Fix non-mmap file reading. (#609468)
d89fee
  - eu-strip: -g recognizes .gdb_index as a debugging section. (#631997)
d89fee
d89fee
* Mon Jun 28 2010 Roland McGrath <roland@redhat.com> - 0.148-1
d89fee
- Update to 0.148
d89fee
  - libdw: Accept DWARF 4 format: new functions dwarf_next_unit,
d89fee
           dwarf_offdie_types.
d89fee
           New functions dwarf_lineisa, dwarf_linediscriminator,
d89fee
           dwarf_lineop_index.
d89fee
  - libdwfl: Fixes in core-file handling, support cores from PIEs. (#588818)
d89fee
             When working from build IDs, don't open a named file
d89fee
             that mismatches.
d89fee
  - readelf: Handle DWARF 4 formats.
d89fee
d89fee
* Mon May  3 2010 Roland McGrath <roland@redhat.com> - 0.147-1
d89fee
- Update to 0.147
d89fee
d89fee
* Wed Apr 21 2010 Roland McGrath <roland@redhat.com> - 0.146-1
d89fee
- Update to 0.146
d89fee
  - libdwfl: New function dwfl_core_file_report.
d89fee
  - libelf: Fix handling of phdrs in truncated file. (#577310)
d89fee
  - libdwfl: Fix infinite loop handling clobbered link_map. (#576379)
d89fee
- Package translations.
d89fee
d89fee
* Tue Feb 23 2010 Roland McGrath <roland@redhat.com> - 0.145-1
d89fee
- Update to 0.145
d89fee
  - Fix build with --disable-dependency-tracking. (#564646)
d89fee
  - Fix build with most recent glibc headers.
d89fee
  - libdw: Fix CFI decoding. (#563528)
d89fee
  - libdwfl: Fix address bias returned by CFI accessors. (#563528)
d89fee
             Fix core file module layout identification. (#559836)
d89fee
  - readelf: Fix CFI decoding.
d89fee
d89fee
* Fri Jan 15 2010 Roland McGrath <roland@redhat.com> - 0.144-2
d89fee
- Fix sloppy #include's breaking build with F-13 glibc.
d89fee
d89fee
* Thu Jan 14 2010 Roland McGrath <roland@redhat.com> - 0.144-1
d89fee
- Update to 0.144
d89fee
  - libdw: New function dwarf_aggregate_size for computing (constant) type
d89fee
           sizes, including array_type cases with nontrivial calculation.
d89fee
  - readelf: Don't give errors for missing info under -a.
d89fee
             Handle Linux "VMCOREINFO" notes under -n.
d89fee
- Resolves: RHBZ #527004, RHBZ #530704, RHBZ #550858
d89fee
d89fee
* Mon Sep 21 2009 Roland McGrath <roland@redhat.com> - 0.143-1
d89fee
- Update to 0.143
d89fee
  - libdw: Various convenience functions for individual attributes now use
d89fee
           dwarf_attr_integrate to look up indirect inherited attributes.
d89fee
           Location expression handling now supports DW_OP_implicit_value.
d89fee
  - libdwfl: Support automatic decompression of files in XZ format,
d89fee
             and of Linux kernel images made with bzip2 or LZMA
d89fee
             (as well as gzip).
d89fee
d89fee
* Tue Jul 28 2009 Roland McGrath <roland@redhat.com> - 0.142-1
d89fee
- Update to 0.142
d89fee
  - libelf: Bug fix in filling gaps between sections. (#512840)
d89fee
  - libelf: Add elf_getshdrnum alias for elf_getshnum and elf_getshdrstrndx
d89fee
            alias for elf_getshstrndx and deprecate original names.
d89fee
  - libebl, elflint: Add support for STB_GNU_UNIQUE. (#511436)
d89fee
  - readelf: Add -N option, speeds up DWARF printing
d89fee
             without address->name lookups. (#505347)
d89fee
  - libdw: Add support for decoding DWARF CFI into location description form.
d89fee
           Handle some new DWARF 3 expression operations previously omitted.
d89fee
           Basic handling of some new encodings slated for DWARF 4.
d89fee
d89fee
* Thu Apr 23 2009 Roland McGrath <roland@redhat.com> - 0.141-1
d89fee
- Update to 0.141
d89fee
  - libebl: sparc backend fixes (#490585)
d89fee
            some more arm backend support
d89fee
  - libdwfl: fix dwfl_module_build_id for prelinked DSO case (#489439)
d89fee
             fixes in core file support (#494858)
d89fee
             dwfl_module_getsym interface improved for non-address symbols
d89fee
  - eu-strip: fix infinite loop on strange inputs with -f
d89fee
  - eu-addr2line: take -j/--section=NAME option for binutils compatibility
d89fee
                  (same effect as '(NAME)0x123' syntax already supported)
d89fee
- Resolves: RHBZ #495213, RHBZ #465872, RHBZ #470055, RHBZ #484623
d89fee
d89fee
* Tue Feb 24 2009 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 0.140-2
d89fee
- Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild
d89fee
d89fee
* Sun Feb 15 2009 Roland McGrath <roland@redhat.com> - 0.140-1
d89fee
- Update to 0.140
d89fee
  - libelf: Fix regression in creation of section header. (#484946)
d89fee
d89fee
* Fri Jan 23 2009 Roland McGrath <roland@redhat.com> - 0.139-1
d89fee
- Update to 0.139
d89fee
  - libcpu: Add Intel SSE4 disassembler support
d89fee
  - readelf: Implement call frame information and exception handling dumping.
d89fee
             Add -e option.  Enable it implicitly for -a.
d89fee
  - elflint: Check PT_GNU_EH_FRAME program header entry.
d89fee
  - libdwfl: Support automatic gzip/bzip2 decompression of ELF files. (#472136)
d89fee
d89fee
* Thu Jan  1 2009 Roland McGrath <roland@redhat.com> - 0.138-2
d89fee
- Fix libelf regression.
d89fee
d89fee
* Wed Dec 31 2008 Roland McGrath <roland@redhat.com> - 0.138-1
d89fee
- Update to 0.138
d89fee
  - Install <elfutils/version.h> header file for applications to use in
d89fee
    source version compatibility checks.
d89fee
  - libebl: backend fixes for i386 TLS relocs; backend support for NT_386_IOPERM
d89fee
  - libcpu: disassembler fixes (#469739)
d89fee
  - libdwfl: bug fixes (#465878)
d89fee
  - libelf: bug fixes
d89fee
  - eu-nm: bug fixes for handling corrupt input files (#476136)
d89fee
d89fee
* Wed Oct  1 2008 Roland McGrath <roland@redhat.com> - 0.137-3
d89fee
- fix libdwfl regression (#462689)
d89fee
d89fee
* Thu Aug 28 2008 Roland McGrath <roland@redhat.com> - 0.137-2
d89fee
- Update to 0.137
d89fee
  - libdwfl: bug fixes; new segment interfaces;
d89fee
             all the libdwfl-based tools now support --core=COREFILE option
d89fee
- Resolves: RHBZ #325021, RHBZ #447416
d89fee
d89fee
* Mon Jul  7 2008 Tom "spot" Callaway <tcallawa@redhat.com> - 0.135-2
d89fee
- fix conditional comparison
d89fee
d89fee
* Mon May 12 2008 Roland McGrath <roland@redhat.com> - 0.135-1
d89fee
- Update to 0.135
d89fee
  - libdwfl: bug fixes
d89fee
  - eu-strip: changed handling of ET_REL files wrt symbol tables and relocs
d89fee
d89fee
* Wed Apr  9 2008 Roland McGrath <roland@redhat.com> - 0.134-1
d89fee
- Update to 0.134
d89fee
  - elflint: backend improvements for sparc, alpha (#204170)
d89fee
  - libdwfl, libelf: bug fixes (#439344, #438867, #438263, #438190)
d89fee
- Remove Conflicts: libelf-devel from elfutils-libelf-devel. (#435742)
d89fee
d89fee
* Sun Mar  2 2008 Roland McGrath <roland@redhat.com> - 0.133-2
d89fee
- Update to 0.133
d89fee
  - readelf, elflint, libebl: SHT_GNU_ATTRIBUTE section handling (readelf -A)
d89fee
  - readelf: core note handling for NT_386_TLS, NT_PPC_SPE, Alpha NT_AUXV
d89fee
  - libdwfl: bug fixes and optimization in relocation handling
d89fee
  - elfcmp: bug fix for non-allocated section handling
d89fee
  - ld: implement newer features of binutils linker.
d89fee
- Install eu-objdump and libasm, now has limited disassembler support.
d89fee
d89fee
* Mon Jan 21 2008 Roland McGrath <roland@redhat.com> - 0.132-3
d89fee
- Update to 0.132
d89fee
  - libelf: Use loff_t instead of off64_t in libelf.h header. (#377241)
d89fee
  - eu-readelf: Fix handling of ET_REL files in archives.
d89fee
  - libcpu: Implement x86 and x86-64 disassembler.
d89fee
  - libasm: Add interface for disassembler.
d89fee
  - all programs: add debugging of branch prediction.
d89fee
  - libelf: new function elf_scnshndx.
d89fee
d89fee
* Sun Nov 11 2007 Roland McGrath <roland@redhat.com> - 0.131-1
d89fee
- Update to 0.131
d89fee
  - libdw: DW_FORM_ref_addr support; dwarf_formref entry point now deprecated;
d89fee
           bug fixes for oddly-formatted DWARF
d89fee
  - libdwfl: bug fixes in offline archive support, symbol table handling;
d89fee
             apply partial relocations for dwfl_module_address_section on ET_REL
d89fee
  - libebl: powerpc backend support for Altivec registers
d89fee
d89fee
* Wed Oct 17 2007 Roland McGrath <roland@redhat.com> - 0.130-3
d89fee
- Fix ET_REL support.
d89fee
- Fix odd indentation in eu-readelf -x output.
d89fee
d89fee
* Tue Oct 16 2007 Roland McGrath <roland@redhat.com> - 0.130-1
d89fee
- Update to 0.130
d89fee
  - eu-readelf -p option can take an argument like -x for one section
d89fee
  - eu-readelf --archive-index (or -c)
d89fee
  - eu-readelf -n improved output for core dumps
d89fee
  - eu-readelf: handle SHT_NOTE sections without requiring phdrs (#249467)
d89fee
  - eu-elflint: ditto
d89fee
  - eu-elflint: stricter checks on debug sections
d89fee
  - eu-unstrip: new options, --list (or -n), --relocate (or -R)
d89fee
  - libelf: new function elf_getdata_rawchunk, replaces gelf_rawchunk;
d89fee
            new functions gelf_getnote, gelf_getauxv, gelf_update_auxv
d89fee
  - libebl: backend improvements (#324031)
d89fee
  - libdwfl: build_id support, new functions for it
d89fee
  - libdwfl: dwfl_module_addrsym fixes (#268761, #268981)
d89fee
  - libdwfl offline archive support, new script eu-make-debug-archive
d89fee
d89fee
* Mon Aug 20 2007 Roland McGrath <roland@redhat.com> - 0.129-2
d89fee
- Fix false-positive eu-elflint failure on ppc -mbss-plt binaries.
d89fee
d89fee
* Tue Aug 14 2007 Roland McGrath <roland@redhat.com> - 0.129-1
d89fee
- Update to 0.129
d89fee
  - readelf: new options --hex-dump (or -x), --strings (or -p) (#250973)
d89fee
  - addr2line: new option --symbols (or -S)
d89fee
  - libdw: dwarf_getscopes fixes (#230235)
d89fee
  - libdwfl: dwfl_module_addrsym fixes (#249490)
d89fee
d89fee
* Fri Jun  8 2007 Roland McGrath <roland@redhat.com> - 0.128-2
d89fee
- Update to 0.128
d89fee
  - new program: unstrip
d89fee
  - elfcmp: new option --hash-inexact
d89fee
- Replace Conflicts: with Provides/Requires using -arch
d89fee
d89fee
* Wed Apr 18 2007 Roland McGrath <roland@redhat.com> - 0.127-1
d89fee
- Update to 0.127
d89fee
  - libdw: new function dwarf_getsrcdirs
d89fee
  - libdwfl: new functions dwfl_module_addrsym, dwfl_report_begin_add,
d89fee
             dwfl_module_address_section
d89fee
d89fee
* Mon Feb  5 2007 Roland McGrath <roland@redhat.com> - 0.126-1
d89fee
- Update to 0.126
d89fee
  - New program eu-ar.
d89fee
  - libdw: fix missing dwarf_getelf (#227206)
d89fee
  - libdwfl: dwfl_module_addrname for st_size=0 symbols (#227167, #227231)
d89fee
d89fee
* Wed Jan 10 2007 Roland McGrath <roland@redhat.com> - 0.125-3
d89fee
- Fix overeager warn_unused_result build failures.
d89fee
d89fee
* Wed Jan 10 2007 Roland McGrath <roland@redhat.com> - 0.125-1
d89fee
- Update to 0.125
d89fee
  - elflint: Compare DT_GNU_HASH tests.
d89fee
  - move archives into -static RPMs
d89fee
  - libelf, elflint: better support for core file handling
d89fee
  - Really fix libdwfl sorting of modules with 64-bit addresses (#220817).
d89fee
- Resolves: RHBZ #220817, RHBZ #213792
d89fee
d89fee
* Tue Oct 10 2006 Roland McGrath <roland@redhat.com> - 0.124-1
d89fee
- eu-strip -f: copy symtab into debuginfo file when relocs use it (#203000)
d89fee
- Update to 0.124
d89fee
  - libebl: fix ia64 reloc support (#206981)
d89fee
  - libebl: sparc backend support for return value location
d89fee
  - libebl, libdwfl: backend register name support extended with more info
d89fee
  - libelf, libdw: bug fixes for unaligned accesses on machines that care
d89fee
  - readelf, elflint: trivial bugs fixed
d89fee
d89fee
* Mon Aug 14 2006 Roland McGrath <roland@redhat.com> 0.123-1
d89fee
- Update to 0.123
d89fee
  - libebl: Backend build fixes, thanks to Stepan Kasal.
d89fee
  - libebl: ia64 backend support for register names, return value location
d89fee
  - libdwfl: Handle truncated linux kernel module section names.
d89fee
  - libdwfl: Look for linux kernel vmlinux files with .debug suffix.
d89fee
  - elflint: Fix checks to permit --hash-style=gnu format.
d89fee
d89fee
* Mon Jul 17 2006 Roland McGrath <roland@redhat.com> - 0.122-4
d89fee
- Fix warnings in elflint compilation.
d89fee
d89fee
* Wed Jul 12 2006 Roland McGrath <roland@redhat.com> - 0.122-3
d89fee
- Update to 0.122
d89fee
  - Fix libdwfl sorting of modules with 64-bit addresses (#198225).
d89fee
  - libebl: add function to test for relative relocation
d89fee
  - elflint: fix and extend DT_RELCOUNT/DT_RELACOUNT checks
d89fee
  - elflint, readelf: add support for DT_GNU_HASH
d89fee
  - libelf: add elf_gnu_hash
d89fee
  - elflint, readelf: add support for 64-bit SysV-style hash tables
d89fee
  - libdwfl: new functions dwfl_module_getsymtab, dwfl_module_getsym.
d89fee
d89fee
* Thu Jun 15 2006 Roland McGrath <roland@redhat.com> - 0.121-1
d89fee
- Update to 0.121
d89fee
  - libelf: bug fixes for rewriting existing files when using mmap (#187618).
d89fee
  - make all installed headers usable in C++ code (#193153).
d89fee
  - eu-readelf: better output format.
d89fee
  - eu-elflint: fix tests of dynamic section content.
d89fee
  - libdw, libdwfl: handle files without aranges info.
d89fee
d89fee
* Thu May 25 2006 Jeremy Katz <katzj@redhat.com> - 0.120-3
d89fee
- rebuild to pick up -devel deps
d89fee
d89fee
* Tue Apr  4 2006 Roland McGrath <roland@redhat.com> - 0.120-2
d89fee
- Update to 0.120
d89fee
  - License changed to GPL, with some exceptions for using
d89fee
    the libelf, libebl, libdw, and libdwfl library interfaces.
d89fee
    Red Hat elfutils is an included package of the Open Invention Network.
d89fee
  - dwarf.h updated for DWARF 3.0 final specification.
d89fee
  - libelf: Fix corruption in ELF_C_RDWR uses (#187618).
d89fee
  - libdwfl: New function dwfl_version; fixes for offline.
d89fee
d89fee
* Fri Feb 10 2006 Jesse Keating <jkeating@redhat.com> - 0.119-1.2.1
d89fee
- bump again for double-long bug on ppc(64)
d89fee
d89fee
* Tue Feb 07 2006 Jesse Keating <jkeating@redhat.com> - 0.119-1.2
d89fee
- rebuilt for new gcc4.1 snapshot and glibc changes
d89fee
d89fee
* Fri Jan 13 2006 Roland McGrath <roland@redhat.com> - 0.119-1
d89fee
- update to 0.119
d89fee
d89fee
* Fri Dec 09 2005 Jesse Keating <jkeating@redhat.com>
d89fee
- rebuilt
d89fee
d89fee
* Sun Nov 27 2005 Roland McGrath <roland@redhat.com> - 0.118-1
d89fee
- update to 0.118
d89fee
  - elflint: more tests.
d89fee
  - libdwfl: New function dwfl_module_register_names.
d89fee
  - libebl: New backend hook for register names.
d89fee
- Make sure -fexceptions is always in CFLAGS.
d89fee
d89fee
* Tue Nov 22 2005 Roland McGrath <roland@redhat.com> - 0.117-2
d89fee
- update to 0.117
d89fee
  - libdwfl: New function dwfl_module_return_value_location (#166118)
d89fee
  - libebl: Backend improvements for several CPUs
d89fee
d89fee
* Mon Oct 31 2005 Roland McGrath <roland@redhat.com> - 0.116-1
d89fee
- update to 0.116
d89fee
  - libdw fixes, API changes and additions
d89fee
  - libdwfl fixes (#169672)
d89fee
  - eu-strip/libelf fix to preserve setuid/setgid permission bits (#167745)
d89fee
d89fee
* Fri Sep  9 2005 Roland McGrath <roland@redhat.com> - 0.115-3
d89fee
- Update requires/conflicts for better biarch update behavior.
d89fee
d89fee
* Mon Sep  5 2005 Roland McGrath <roland@redhat.com> - 0.115-2
d89fee
- update to 0.115
d89fee
  - New program eu-strings.
d89fee
  - libdw: New function dwarf_getscopes_die.
d89fee
  - libelf: speed-ups of non-mmap reading.
d89fee
  - Implement --enable-gcov option for configure.
d89fee
d89fee
* Wed Aug 24 2005 Roland McGrath <roland@redhat.com> - 0.114-1
d89fee
- update to 0.114
d89fee
  - new program eu-ranlib
d89fee
  - libdw: new calls for inlines
d89fee
  - libdwfl: new calls for offline modules
d89fee
d89fee
* Sat Aug 13 2005 Roland McGrath <roland@redhat.com> - 0.113-2
d89fee
- update to 0.113
d89fee
  - elflint: relax a bit.  Allow version definitions for defined symbols
d89fee
    against DSO versions also for symbols in nobits sections.
d89fee
    Allow .rodata section to have STRINGS and MERGE flag set.
d89fee
  - strip: add some more compatibility with binutils.
d89fee
  - libdwfl: bug fixes.
d89fee
- Separate libdw et al into elfutils-libs subpackage.
d89fee
d89fee
* Sat Aug  6 2005 Roland McGrath <roland@redhat.com> - 0.112-1
d89fee
- update to 0.112
d89fee
  - elfcmp: some more relaxation.
d89fee
  - elflint: many more tests, especially regarding to symbol versioning.
d89fee
  - libelf: Add elfXX_offscn and gelf_offscn.
d89fee
  - libasm: asm_begin interface changes.
d89fee
  - libebl: Add three new interfaces to directly access machine, class,
d89fee
    and data encoding information.
d89fee
d89fee
* Fri Jul 29 2005 Roland McGrath <roland@redhat.com> - 0.111-2
d89fee
- update portability patch
d89fee
d89fee
* Thu Jul 28 2005 Roland McGrath <roland@redhat.com> - 0.111-1
d89fee
- update to 0.111
d89fee
  - libdwfl library now merged into libdw
d89fee
d89fee
* Sun Jul 24 2005 Roland McGrath <roland@redhat.com> - 0.110-1
d89fee
- update to 0.110
d89fee
d89fee
* Fri Jul 22 2005 Roland McGrath <roland@redhat.com> - 0.109-2
d89fee
- update to 0.109
d89fee
  - verify that libebl modules are from the same build
d89fee
  - new eu-elflint checks on copy relocations
d89fee
  - new program eu-elfcmp
d89fee
  - new experimental libdwfl library
d89fee
d89fee
* Thu Jun  9 2005 Roland McGrath <roland@redhat.com> - 0.108-5
d89fee
- robustification of eu-strip and eu-readelf
d89fee
d89fee
* Wed May 25 2005 Roland McGrath <roland@redhat.com> - 0.108-3
d89fee
- more robustification
d89fee
d89fee
* Mon May 16 2005 Roland McGrath <roland@redhat.com> - 0.108-2
d89fee
- robustification
d89fee
d89fee
* Mon May  9 2005 Roland McGrath <roland@redhat.com> - 0.108-1
d89fee
- update to 0.108
d89fee
  - merge strip fixes
d89fee
  - sort records in dwarf_getsrclines, fix dwarf_getsrc_die searching
d89fee
  - update elf.h from glibc
d89fee
d89fee
* Sun May  8 2005 Roland McGrath <roland@redhat.com> - 0.107-2
d89fee
- fix strip -f byte-swapping bug
d89fee
d89fee
* Sun May  8 2005 Roland McGrath <roland@redhat.com> - 0.107-1
d89fee
- update to 0.107
d89fee
  - readelf: improve DWARF output format
d89fee
  - elflint: -d option to support checking separate debuginfo files
d89fee
  - strip: fix ET_REL debuginfo files (#156341)
d89fee
d89fee
* Mon Apr  4 2005 Roland McGrath <roland@redhat.com> - 0.106-3
d89fee
- fix some bugs in new code, reenable make check
d89fee
d89fee
* Mon Apr  4 2005 Roland McGrath <roland@redhat.com> - 0.106-2
d89fee
- disable make check for most arches, for now
d89fee
d89fee
* Mon Apr  4 2005 Roland McGrath <roland@redhat.com> - 0.106-1
d89fee
- update to 0.106
d89fee
d89fee
* Mon Mar 28 2005 Roland McGrath <roland@redhat.com> - 0.104-2
d89fee
- update to 0.104
d89fee
d89fee
* Wed Mar 23 2005 Jakub Jelinek <jakub@redhat.com> 0.103-2
d89fee
- update to 0.103
d89fee
d89fee
* Wed Feb 16 2005 Jakub Jelinek <jakub@redhat.com> 0.101-2
d89fee
- update to 0.101.
d89fee
- use %%configure macro to get CFLAGS etc. right
d89fee
d89fee
* Sat Feb  5 2005 Jeff Johnson <jbj@redhat.com> 0.99-2
d89fee
- upgrade to 0.99.
d89fee
d89fee
* Sun Sep 26 2004 Jeff Johnson <jbj@redhat.com> 0.97-3
d89fee
- upgrade to 0.97.
d89fee
d89fee
* Tue Aug 17 2004 Jakub Jelinek <jakub@redhat.com> 0.95-5
d89fee
- upgrade to 0.96.
d89fee
d89fee
* Mon Jul  5 2004 Jakub Jelinek <jakub@redhat.com> 0.95-4
d89fee
- rebuilt with GCC 3.4.x, workaround VLA + alloca mixing
d89fee
  warning
d89fee
d89fee
* Tue Jun 15 2004 Elliot Lee <sopwith@redhat.com>
d89fee
- rebuilt
d89fee
d89fee
* Fri Apr  2 2004 Jeff Johnson <jbj@redhat.com> 0.95-2
d89fee
- upgrade to 0.95.
d89fee
d89fee
* Tue Mar 02 2004 Elliot Lee <sopwith@redhat.com>
d89fee
- rebuilt
d89fee
d89fee
* Fri Feb 13 2004 Elliot Lee <sopwith@redhat.com>
d89fee
- rebuilt
d89fee
d89fee
* Fri Jan 16 2004 Jakub Jelinek <jakub@redhat.com> 0.94-1
d89fee
- upgrade to 0.94
d89fee
d89fee
* Fri Jan 16 2004 Jakub Jelinek <jakub@redhat.com> 0.93-1
d89fee
- upgrade to 0.93
d89fee
d89fee
* Thu Jan  8 2004 Jakub Jelinek <jakub@redhat.com> 0.92-1
d89fee
- full version
d89fee
- macroized spec file for GPL or OSL builds
d89fee
- include only libelf under GPL plus wrapper scripts
d89fee
d89fee
* Wed Jan  7 2004 Jakub Jelinek <jakub@redhat.com> 0.91-2
d89fee
- macroized spec file for GPL or OSL builds
d89fee
d89fee
* Wed Jan  7 2004 Ulrich Drepper <drepper@redhat.com>
d89fee
- split elfutils-devel into two packages.
d89fee
d89fee
* Wed Jan  7 2004 Jakub Jelinek <jakub@redhat.com> 0.91-1
d89fee
- include only libelf under GPL plus wrapper scripts
d89fee
d89fee
* Tue Dec 23 2003 Jeff Johnson <jbj@redhat.com> 0.89-3
d89fee
- readelf, not readline, in %%description (#111214).
d89fee
d89fee
* Fri Sep 26 2003 Bill Nottingham <notting@redhat.com> 0.89-1
d89fee
- update to 0.89 (fix eu-strip)
d89fee
d89fee
* Tue Sep 23 2003 Jakub Jelinek <jakub@redhat.com> 0.86-3
d89fee
- update to 0.86 (fix eu-strip on s390x/alpha)
d89fee
- libebl is an archive now; remove references to DSO
d89fee
d89fee
* Mon Jul 14 2003 Jeff Johnson <jbj@redhat.com> 0.84-3
d89fee
- upgrade to 0.84 (readelf/elflint improvements, rawhide bugs fixed).
d89fee
d89fee
* Fri Jul 11 2003 Jeff Johnson <jbj@redhat.com> 0.83-3
d89fee
- upgrade to 0.83 (fix invalid ELf handle on *.so strip, more).
d89fee
d89fee
* Wed Jul  9 2003 Jeff Johnson <jbj@redhat.com> 0.82-3
d89fee
- upgrade to 0.82 (strip tests fixed on big-endian).
d89fee
d89fee
* Tue Jul  8 2003 Jeff Johnson <jbj@redhat.com> 0.81-3
d89fee
- upgrade to 0.81 (strip excludes unused symtable entries, test borked).
d89fee
d89fee
* Thu Jun 26 2003 Jeff Johnson <jbj@redhat.com> 0.80-3
d89fee
- upgrade to 0.80 (debugedit changes for kernel in progress).
d89fee
d89fee
* Wed Jun 04 2003 Elliot Lee <sopwith@redhat.com>
d89fee
- rebuilt
d89fee
d89fee
* Wed May 21 2003 Jeff Johnson <jbj@redhat.com> 0.79-2
d89fee
- upgrade to 0.79 (correct formats for size_t, more of libdw "works").
d89fee
d89fee
* Mon May 19 2003 Jeff Johnson <jbj@redhat.com> 0.78-2
d89fee
- upgrade to 0.78 (libdwarf bugfix, libdw additions).
d89fee
d89fee
* Mon Feb 24 2003 Elliot Lee <sopwith@redhat.com>
d89fee
- debuginfo rebuild
d89fee
d89fee
* Thu Feb 20 2003 Jeff Johnson <jbj@redhat.com> 0.76-2
d89fee
- use the correct way of identifying the section via the sh_info link.
d89fee
d89fee
* Sat Feb 15 2003 Jakub Jelinek <jakub@redhat.com> 0.75-2
d89fee
- update to 0.75 (eu-strip -g fix)
d89fee
d89fee
* Tue Feb 11 2003 Jakub Jelinek <jakub@redhat.com> 0.74-2
d89fee
- update to 0.74 (fix for writing with some non-dirty sections)
d89fee
d89fee
* Thu Feb  6 2003 Jeff Johnson <jbj@redhat.com> 0.73-3
d89fee
- another -0.73 update (with sparc fixes).
d89fee
- do "make check" in %%check, not %%install, section.
d89fee
d89fee
* Mon Jan 27 2003 Jeff Johnson <jbj@redhat.com> 0.73-2
d89fee
- update to 0.73 (with s390 fixes).
d89fee
d89fee
* Wed Jan 22 2003 Tim Powers <timp@redhat.com>
d89fee
- rebuilt
d89fee
d89fee
* Wed Jan 22 2003 Jakub Jelinek <jakub@redhat.com> 0.72-4
d89fee
- fix arguments to gelf_getsymshndx and elf_getshstrndx
d89fee
- fix other warnings
d89fee
- reenable checks on s390x
d89fee
d89fee
* Sat Jan 11 2003 Karsten Hopp <karsten@redhat.de> 0.72-3
d89fee
- temporarily disable checks on s390x, until someone has
d89fee
  time to look at it
d89fee
d89fee
* Thu Dec 12 2002 Jakub Jelinek <jakub@redhat.com> 0.72-2
d89fee
- update to 0.72
d89fee
d89fee
* Wed Dec 11 2002 Jakub Jelinek <jakub@redhat.com> 0.71-2
d89fee
- update to 0.71
d89fee
d89fee
* Wed Dec 11 2002 Jeff Johnson <jbj@redhat.com> 0.69-4
d89fee
- update to 0.69.
d89fee
- add "make check" and segfault avoidance patch.
d89fee
- elfutils-libelf needs to run ldconfig.
d89fee
d89fee
* Tue Dec 10 2002 Jeff Johnson <jbj@redhat.com> 0.68-2
d89fee
- update to 0.68.
d89fee
d89fee
* Fri Dec  6 2002 Jeff Johnson <jbj@redhat.com> 0.67-2
d89fee
- update to 0.67.
d89fee
d89fee
* Tue Dec  3 2002 Jeff Johnson <jbj@redhat.com> 0.65-2
d89fee
- update to 0.65.
d89fee
d89fee
* Mon Dec  2 2002 Jeff Johnson <jbj@redhat.com> 0.64-2
d89fee
- update to 0.64.
d89fee
d89fee
* Sun Dec 1 2002 Ulrich Drepper <drepper@redhat.com> 0.64
d89fee
- split packages further into elfutils-libelf
d89fee
d89fee
* Sat Nov 30 2002 Jeff Johnson <jbj@redhat.com> 0.63-2
d89fee
- update to 0.63.
d89fee
d89fee
* Fri Nov 29 2002 Ulrich Drepper <drepper@redhat.com> 0.62
d89fee
- Adjust for dropping libtool
d89fee
d89fee
* Sun Nov 24 2002 Jeff Johnson <jbj@redhat.com> 0.59-2
d89fee
- update to 0.59
d89fee
d89fee
* Thu Nov 14 2002 Jeff Johnson <jbj@redhat.com> 0.56-2
d89fee
- update to 0.56
d89fee
d89fee
* Thu Nov  7 2002 Jeff Johnson <jbj@redhat.com> 0.54-2
d89fee
- update to 0.54
d89fee
d89fee
* Sun Oct 27 2002 Jeff Johnson <jbj@redhat.com> 0.53-2
d89fee
- update to 0.53
d89fee
- drop x86_64 hack, ICE fixed in gcc-3.2-11.
d89fee
d89fee
* Sat Oct 26 2002 Jeff Johnson <jbj@redhat.com> 0.52-3
d89fee
- get beehive to punch a rhpkg generated package.
d89fee
d89fee
* Wed Oct 23 2002 Jeff Johnson <jbj@redhat.com> 0.52-2
d89fee
- build in 8.0.1.
d89fee
- x86_64: avoid gcc-3.2 ICE on x86_64 for now.
d89fee
d89fee
* Tue Oct 22 2002 Ulrich Drepper <drepper@redhat.com> 0.52
d89fee
- Add libelf-devel to conflicts for elfutils-devel
d89fee
d89fee
* Mon Oct 21 2002 Ulrich Drepper <drepper@redhat.com> 0.50
d89fee
- Split into runtime and devel package
d89fee
d89fee
* Fri Oct 18 2002 Ulrich Drepper <drepper@redhat.com> 0.49
d89fee
- integrate into official sources
d89fee
d89fee
* Wed Oct 16 2002 Jeff Johnson <jbj@redhat.com> 0.46-1
d89fee
- Swaddle.