Blame SPECS/elfutils.spec

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