Blame SPECS/elfutils.spec

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