e4fc3b
Name: elfutils
e4fc3b
Version: 0.186
e4fc3b
%global baserelease 1
e4fc3b
Release: %{baserelease}%{?dist}
e4fc3b
URL: http://elfutils.org/
e4fc3b
%global source_url ftp://sourceware.org/pub/elfutils/%{version}/
e4fc3b
License: GPLv3+ and (GPLv2+ or LGPLv3+) and GFDL
e4fc3b
Source: %{?source_url}%{name}-%{version}.tar.bz2
e4fc3b
Summary: A collection of utilities and DSOs to handle ELF files and DWARF data
e4fc3b
e4fc3b
# Needed for isa specific Provides and Requires.
e4fc3b
%global depsuffix %{?_isa}%{!?_isa:-%{_arch}}
e4fc3b
e4fc3b
Requires: elfutils-libelf%{depsuffix} = %{version}-%{release}
e4fc3b
Requires: elfutils-libs%{depsuffix} = %{version}-%{release}
e4fc3b
%if 0%{?rhel} >= 8 || 0%{?fedora} >= 20
e4fc3b
# see Supplements: instead
e4fc3b
# Recommends: elfutils-debuginfod-client%{depsuffix} = %{version}-%{release}
e4fc3b
%else
e4fc3b
Requires: elfutils-debuginfod-client%{depsuffix} = %{version}-%{release}
e4fc3b
%endif
e4fc3b
e4fc3b
BuildRequires: gcc
e4fc3b
# For libstdc++ demangle support
e4fc3b
BuildRequires: gcc-c++
e4fc3b
e4fc3b
BuildRequires: gettext
e4fc3b
BuildRequires: bison
e4fc3b
BuildRequires: flex
e4fc3b
e4fc3b
# Compression support
e4fc3b
BuildRequires: zlib-devel
e4fc3b
BuildRequires: bzip2-devel
e4fc3b
BuildRequires: xz-devel
e4fc3b
BuildRequires: libzstd-devel
e4fc3b
e4fc3b
# For debuginfod
e4fc3b
BuildRequires: pkgconfig(libmicrohttpd) >= 0.9.33
e4fc3b
BuildRequires: pkgconfig(libcurl) >= 7.29.0
e4fc3b
BuildRequires: pkgconfig(sqlite3) >= 3.7.17
e4fc3b
BuildRequires: pkgconfig(libarchive) >= 3.1.2
e4fc3b
e4fc3b
# For tests need to bunzip2 test files.
e4fc3b
BuildRequires: bzip2
e4fc3b
BuildRequires: zstd
e4fc3b
# For the run-debuginfod-find.sh test case in %%check for /usr/sbin/ss etc.
e4fc3b
BuildRequires: iproute
e4fc3b
BuildRequires: procps
e4fc3b
BuildRequires: bsdtar
e4fc3b
BuildRequires: curl
e4fc3b
e4fc3b
BuildRequires: automake
e4fc3b
BuildRequires: autoconf
e4fc3b
BuildRequires: gettext-devel
e4fc3b
e4fc3b
%global _gnu %{nil}
e4fc3b
%global _program_prefix eu-
e4fc3b
e4fc3b
%global provide_yama_scope	0
e4fc3b
e4fc3b
%if 0%{?fedora} >= 22 || 0%{?rhel} >= 7
e4fc3b
%global provide_yama_scope	1
e4fc3b
%endif
e4fc3b
e4fc3b
# Patches
e4fc3b
e4fc3b
Patch1: elfutils-0.186-brew-testsuite-workaround.patch
e4fc3b
e4fc3b
%description
e4fc3b
Elfutils is a collection of utilities, including stack (to show
e4fc3b
backtraces), nm (for listing symbols from object files), size
e4fc3b
(for listing the section sizes of an object or archive file),
e4fc3b
strip (for discarding symbols), readelf (to see the raw ELF file
e4fc3b
structures), elflint (to check for well-formed ELF files) and
e4fc3b
elfcompress (to compress or decompress ELF sections).
e4fc3b
e4fc3b
%package libs
e4fc3b
Summary: Libraries to handle compiled objects
e4fc3b
License: GPLv2+ or LGPLv3+
e4fc3b
%if 0%{!?_isa:1}
e4fc3b
Provides: elfutils-libs%{depsuffix} = %{version}-%{release}
e4fc3b
%endif
e4fc3b
Requires: elfutils-libelf%{depsuffix} = %{version}-%{release}
e4fc3b
%if %{provide_yama_scope}
e4fc3b
Requires: default-yama-scope
e4fc3b
%endif
e4fc3b
%if 0%{?rhel} >= 8 || 0%{?fedora} >= 20
e4fc3b
# see Supplements: instead
e4fc3b
# Recommends: elfutils-debuginfod-client%{depsuffix} = %{version}-%{release}
e4fc3b
%else
e4fc3b
Requires: elfutils-debuginfod-client%{depsuffix} = %{version}-%{release}
e4fc3b
%endif
e4fc3b
e4fc3b
%description libs
e4fc3b
The elfutils-libs package contains libraries which implement DWARF, ELF,
e4fc3b
and machine-specific ELF handling and process introspection.  These
e4fc3b
libraries are used by the programs in the elfutils package.  The
e4fc3b
elfutils-devel package enables building other programs using these
e4fc3b
libraries.
e4fc3b
e4fc3b
%package devel
e4fc3b
Summary: Development libraries to handle compiled objects
e4fc3b
License: GPLv2+ or LGPLv3+
e4fc3b
%if 0%{!?_isa:1}
e4fc3b
Provides: elfutils-devel%{depsuffix} = %{version}-%{release}
e4fc3b
%endif
e4fc3b
Requires: elfutils-libs%{depsuffix} = %{version}-%{release}
e4fc3b
Requires: elfutils-libelf-devel%{depsuffix} = %{version}-%{release}
e4fc3b
Obsoletes: elfutils-devel-static < 0.180-5
e4fc3b
e4fc3b
%description devel
e4fc3b
The elfutils-devel package contains the libraries to create
e4fc3b
applications for handling compiled objects.  libdw provides access
e4fc3b
to the DWARF debugging information.  libasm provides a programmable
e4fc3b
assembler interface.
e4fc3b
e4fc3b
%package libelf
e4fc3b
Summary: Library to read and write ELF files
e4fc3b
License: GPLv2+ or LGPLv3+
e4fc3b
%if 0%{!?_isa:1}
e4fc3b
Provides: elfutils-libelf%{depsuffix} = %{version}-%{release}
e4fc3b
%endif
e4fc3b
Obsoletes: libelf <= 0.8.2-2
e4fc3b
e4fc3b
%description libelf
e4fc3b
The elfutils-libelf package provides a DSO which allows reading and
e4fc3b
writing ELF files on a high level.  Third party programs depend on
e4fc3b
this package to read internals of ELF files.  The programs of the
e4fc3b
elfutils package use it also to generate new ELF files.
e4fc3b
e4fc3b
%package libelf-devel
e4fc3b
Summary: Development support for libelf
e4fc3b
License: GPLv2+ or LGPLv3+
e4fc3b
%if 0%{!?_isa:1}
e4fc3b
Provides: elfutils-libelf-devel%{depsuffix} = %{version}-%{release}
e4fc3b
%endif
e4fc3b
Requires: elfutils-libelf%{depsuffix} = %{version}-%{release}
e4fc3b
Obsoletes: libelf-devel <= 0.8.2-2
e4fc3b
Obsoletes: elfutils-libelf-devel-static < 0.180-5
e4fc3b
e4fc3b
%description libelf-devel
e4fc3b
The elfutils-libelf-devel package contains the libraries to create
e4fc3b
applications for handling compiled objects.  libelf allows you to
e4fc3b
access the internals of the ELF object file format, so you can see the
e4fc3b
different sections of an ELF file.
e4fc3b
e4fc3b
%if %{provide_yama_scope}
e4fc3b
%package default-yama-scope
e4fc3b
Summary: Default yama attach scope sysctl setting
e4fc3b
License: GPLv2+ or LGPLv3+
e4fc3b
Provides: default-yama-scope
e4fc3b
BuildArch: noarch
e4fc3b
# For the sysctl_apply macro we need systemd as build requires.
e4fc3b
# We also need systemd-sysctl in post to apply the default kernel config.
e4fc3b
# But this creates a circular requirement (see below). And it would always
e4fc3b
# pull in systemd even in build containers that don't really need it.
e4fc3b
# Luckily systemd is normally always installed already. The only times it
e4fc3b
# might not is when we do an initial install (and the cyclic dependency
e4fc3b
# chain might be broken) or when installing into a container. In the first
e4fc3b
# case we'll reboot soon to apply the default kernel config. In the second
e4fc3b
# case we really require that the host has the correct kernel config so it
e4fc3b
# also is available inside the container. So if we have weak dependencies
e4fc3b
# use Recommends (sadly Recommends(post) doesn't exist). This works because
e4fc3b
# in all cases that really matter systemd will already be installed. #1599083
e4fc3b
BuildRequires: systemd >= 215
e4fc3b
%if 0%{?fedora} > 24 || 0%{?rhel} > 7
e4fc3b
Recommends: systemd
e4fc3b
%else
e4fc3b
Requires(post): systemd
e4fc3b
%endif
e4fc3b
e4fc3b
%description default-yama-scope
e4fc3b
Yama sysctl setting to enable default attach scope settings
e4fc3b
enabling programs to use ptrace attach, access to
e4fc3b
/proc/PID/{mem,personality,stack,syscall}, and the syscalls
e4fc3b
process_vm_readv and process_vm_writev which are used for
e4fc3b
interprocess services, communication and introspection
e4fc3b
(like synchronisation, signaling, debugging, tracing and
e4fc3b
profiling) of processes.
e4fc3b
%endif
e4fc3b
e4fc3b
%package debuginfod-client
e4fc3b
Summary: Library and command line client for build-id HTTP ELF/DWARF server
e4fc3b
License: GPLv3+ and (GPLv2+ or LGPLv3+)
e4fc3b
%if 0%{!?_isa:1}
e4fc3b
Provides: elfutils-debuginfod-client%{depsuffix} = %{version}-%{release}
e4fc3b
%endif
e4fc3b
%if 0%{?rhel} >= 8 || 0%{?fedora} >= 20
e4fc3b
# Instead of the weak forward dependency from -libs to -debuginfod-client,
e4fc3b
# we'll add weak reverse dependencies from some of the many programs that
e4fc3b
# indirectly load this.  This lets the base @core compose omit this library.
e4fc3b
Supplements: systemtap-client perf gdb binutils elfutils ltrace dyninst
e4fc3b
Supplements: valgrind annocheck bpftrace dwarves libabigail
e4fc3b
%endif
e4fc3b
e4fc3b
%package debuginfod-client-devel
e4fc3b
Summary: Libraries and headers to build debuginfod client applications
e4fc3b
License: GPLv2+ or LGPLv3+
e4fc3b
%if 0%{!?_isa:1}
e4fc3b
Provides: elfutils-debuginfod-client-devel%{depsuffix} = %{version}-%{release}
e4fc3b
%endif
e4fc3b
Requires: elfutils-debuginfod-client%{depsuffix} = %{version}-%{release}
e4fc3b
e4fc3b
%package debuginfod
e4fc3b
Summary: HTTP ELF/DWARF file server addressed by build-id
e4fc3b
License: GPLv3+
e4fc3b
Requires: elfutils-libs%{depsuffix} = %{version}-%{release}
e4fc3b
Requires: elfutils-libelf%{depsuffix} = %{version}-%{release}
e4fc3b
Requires: elfutils-debuginfod-client%{depsuffix} = %{version}-%{release}
e4fc3b
BuildRequires: systemd
e4fc3b
BuildRequires: make
e4fc3b
Requires(post):   systemd
e4fc3b
Requires(preun):  systemd
e4fc3b
Requires(postun): systemd
e4fc3b
Requires(pre): shadow-utils
e4fc3b
# To extract .deb files with a bsdtar (= libarchive) subshell
e4fc3b
Requires: bsdtar
e4fc3b
e4fc3b
%description debuginfod-client
e4fc3b
The elfutils-debuginfod-client package contains shared libraries
e4fc3b
dynamically loaded from -ldw, which use a debuginfod service
e4fc3b
to look up debuginfo and associated data. Also includes a
e4fc3b
command-line frontend.
e4fc3b
e4fc3b
%description debuginfod-client-devel
e4fc3b
The elfutils-debuginfod-client-devel package contains the libraries
e4fc3b
to create applications to use the debuginfod service.
e4fc3b
e4fc3b
%description debuginfod
e4fc3b
The elfutils-debuginfod package contains the debuginfod binary
e4fc3b
and control files for a service that can provide ELF/DWARF
e4fc3b
files to remote clients, based on build-id identification.
e4fc3b
The ELF/DWARF file searching functions in libdwfl can query
e4fc3b
such servers to download those files on demand.
e4fc3b
e4fc3b
%prep
e4fc3b
%autosetup -p1
e4fc3b
e4fc3b
autoreconf -f -v -i
e4fc3b
e4fc3b
# In case the above patches added any new test scripts, make sure they
e4fc3b
# are executable.
e4fc3b
find . -name \*.sh ! -perm -0100 -print | xargs chmod +x
e4fc3b
e4fc3b
%build
e4fc3b
# Remove -Wall from default flags.  The makefiles enable enough warnings
e4fc3b
# themselves, and they use -Werror.  Appending -Wall defeats the cases where
e4fc3b
# the makefiles disable some specific warnings for specific code.
e4fc3b
# But add -Wformat explicitly for use with -Werror=format-security which
e4fc3b
# doesn't work without -Wformat (enabled by -Wall).
e4fc3b
RPM_OPT_FLAGS="${RPM_OPT_FLAGS/-Wall/}"
e4fc3b
RPM_OPT_FLAGS="${RPM_OPT_FLAGS} -Wformat"
e4fc3b
e4fc3b
e4fc3b
trap 'cat config.log' EXIT
e4fc3b
%configure CFLAGS="$RPM_OPT_FLAGS -fexceptions"
e4fc3b
trap '' EXIT
e4fc3b
%make_build
e4fc3b
e4fc3b
%install
e4fc3b
%make_install
e4fc3b
e4fc3b
chmod +x ${RPM_BUILD_ROOT}%{_prefix}/%{_lib}/lib*.so*
e4fc3b
# We don't want the static libraries
e4fc3b
rm ${RPM_BUILD_ROOT}%{_prefix}/%{_lib}/lib{elf,dw,asm}.a
e4fc3b
e4fc3b
# We don't have standard DEBUGINFOD_URLS yet.
e4fc3b
rm ${RPM_BUILD_ROOT}%{_sysconfdir}/profile.d/debuginfod.sh
e4fc3b
rm ${RPM_BUILD_ROOT}%{_sysconfdir}/profile.d/debuginfod.csh
e4fc3b
e4fc3b
%find_lang %{name}
e4fc3b
e4fc3b
%if %{provide_yama_scope}
e4fc3b
install -Dm0644 config/10-default-yama-scope.conf ${RPM_BUILD_ROOT}%{_sysctldir}/10-default-yama-scope.conf
e4fc3b
%endif
e4fc3b
e4fc3b
install -Dm0644 config/debuginfod.service ${RPM_BUILD_ROOT}%{_unitdir}/debuginfod.service
e4fc3b
install -Dm0644 config/debuginfod.sysconfig ${RPM_BUILD_ROOT}%{_sysconfdir}/sysconfig/debuginfod
e4fc3b
mkdir -p ${RPM_BUILD_ROOT}%{_localstatedir}/cache/debuginfod
e4fc3b
touch ${RPM_BUILD_ROOT}%{_localstatedir}/cache/debuginfod/debuginfod.sqlite
e4fc3b
e4fc3b
%check
e4fc3b
# Record some build root versions in build.log
e4fc3b
uname -r; rpm -q binutils gcc glibc || true
e4fc3b
e4fc3b
%make_build check || (cat tests/test-suite.log; false)
e4fc3b
e4fc3b
# Only the latest Fedora and EPEL have these scriptlets,
e4fc3b
# older Fedora and plain RHEL don't.
e4fc3b
%if 0%{?ldconfig_scriptlets:1}
e4fc3b
%ldconfig_scriptlets libs
e4fc3b
%ldconfig_scriptlets libelf
e4fc3b
%ldconfig_scriptlets debuginfod-client
e4fc3b
%else
e4fc3b
%post libs -p /sbin/ldconfig
e4fc3b
%postun libs -p /sbin/ldconfig
e4fc3b
%post libelf -p /sbin/ldconfig
e4fc3b
%postun libelf -p /sbin/ldconfig
e4fc3b
%post debuginfod-client -p /sbin/ldconfig
e4fc3b
%postun debuginfod-client -p /sbin/ldconfig
e4fc3b
%endif
e4fc3b
e4fc3b
%if %{provide_yama_scope}
e4fc3b
%post default-yama-scope
e4fc3b
# Due to circular dependencies might not be installed yet, so double check.
e4fc3b
# (systemd -> elfutils-libs -> default-yama-scope -> systemd)
e4fc3b
if [ -x /usr/lib/systemd/systemd-sysctl ] ; then
e4fc3b
%sysctl_apply 10-default-yama-scope.conf
e4fc3b
fi
e4fc3b
%endif
e4fc3b
e4fc3b
%files
e4fc3b
%license COPYING COPYING-GPLV2 COPYING-LGPLV3 doc/COPYING-GFDL
e4fc3b
%doc README TODO CONTRIBUTING
e4fc3b
%{_bindir}/eu-addr2line
e4fc3b
%{_bindir}/eu-ar
e4fc3b
%{_bindir}/eu-elfclassify
e4fc3b
%{_bindir}/eu-elfcmp
e4fc3b
%{_bindir}/eu-elfcompress
e4fc3b
%{_bindir}/eu-elflint
e4fc3b
%{_bindir}/eu-findtextrel
e4fc3b
%{_bindir}/eu-make-debug-archive
e4fc3b
%{_bindir}/eu-nm
e4fc3b
%{_bindir}/eu-objdump
e4fc3b
%{_bindir}/eu-ranlib
e4fc3b
%{_bindir}/eu-readelf
e4fc3b
%{_bindir}/eu-size
e4fc3b
%{_bindir}/eu-stack
e4fc3b
%{_bindir}/eu-strings
e4fc3b
%{_bindir}/eu-strip
e4fc3b
%{_bindir}/eu-unstrip
e4fc3b
%{_mandir}/man1/eu-*.1*
e4fc3b
e4fc3b
%files libs
e4fc3b
%license COPYING-GPLV2 COPYING-LGPLV3
e4fc3b
%{_libdir}/libasm-%{version}.so
e4fc3b
%{_libdir}/libdw-%{version}.so
e4fc3b
%{_libdir}/libasm.so.*
e4fc3b
%{_libdir}/libdw.so.*
e4fc3b
e4fc3b
%files devel
e4fc3b
%{_includedir}/dwarf.h
e4fc3b
%dir %{_includedir}/elfutils
e4fc3b
%{_includedir}/elfutils/elf-knowledge.h
e4fc3b
%{_includedir}/elfutils/known-dwarf.h
e4fc3b
%{_includedir}/elfutils/libasm.h
e4fc3b
%{_includedir}/elfutils/libdw.h
e4fc3b
%{_includedir}/elfutils/libdwfl.h
e4fc3b
%{_includedir}/elfutils/libdwelf.h
e4fc3b
%{_includedir}/elfutils/version.h
e4fc3b
%{_libdir}/libasm.so
e4fc3b
%{_libdir}/libdw.so
e4fc3b
%{_libdir}/pkgconfig/libdw.pc
e4fc3b
e4fc3b
%files -f %{name}.lang libelf
e4fc3b
%license COPYING-GPLV2 COPYING-LGPLV3
e4fc3b
%{_libdir}/libelf-%{version}.so
e4fc3b
%{_libdir}/libelf.so.*
e4fc3b
e4fc3b
%files libelf-devel
e4fc3b
%{_includedir}/libelf.h
e4fc3b
%{_includedir}/gelf.h
e4fc3b
%{_includedir}/nlist.h
e4fc3b
%{_libdir}/libelf.so
e4fc3b
%{_libdir}/pkgconfig/libelf.pc
e4fc3b
%{_mandir}/man3/elf_*.3*
e4fc3b
e4fc3b
%if %{provide_yama_scope}
e4fc3b
%files default-yama-scope
e4fc3b
%{_sysctldir}/10-default-yama-scope.conf
e4fc3b
%endif
e4fc3b
e4fc3b
%files debuginfod-client
e4fc3b
%{_libdir}/libdebuginfod-%{version}.so
e4fc3b
%{_libdir}/libdebuginfod.so.*
e4fc3b
%{_bindir}/debuginfod-find
e4fc3b
%{_mandir}/man1/debuginfod-find.1*
e4fc3b
%{_mandir}/man7/debuginfod*.7*
e4fc3b
e4fc3b
%files debuginfod-client-devel
e4fc3b
%{_libdir}/pkgconfig/libdebuginfod.pc
e4fc3b
%{_mandir}/man3/debuginfod_*.3*
e4fc3b
%{_includedir}/elfutils/debuginfod.h
e4fc3b
%{_libdir}/libdebuginfod.so
e4fc3b
e4fc3b
%files debuginfod
e4fc3b
%{_bindir}/debuginfod
e4fc3b
%config(noreplace) %{_sysconfdir}/sysconfig/debuginfod
e4fc3b
%{_unitdir}/debuginfod.service
e4fc3b
%{_sysconfdir}/sysconfig/debuginfod
e4fc3b
%{_mandir}/man8/debuginfod.8*
e4fc3b
e4fc3b
%dir %attr(0700,debuginfod,debuginfod) %{_localstatedir}/cache/debuginfod
e4fc3b
%ghost %attr(0600,debuginfod,debuginfod) %{_localstatedir}/cache/debuginfod/debuginfod.sqlite
e4fc3b
e4fc3b
%pre debuginfod
e4fc3b
getent group debuginfod >/dev/null || groupadd -r debuginfod
e4fc3b
getent passwd debuginfod >/dev/null || \
e4fc3b
    useradd -r -g debuginfod -d /var/cache/debuginfod -s /sbin/nologin \
e4fc3b
            -c "elfutils debuginfo server" debuginfod
e4fc3b
exit 0
e4fc3b
e4fc3b
%post debuginfod
e4fc3b
%systemd_post debuginfod.service
e4fc3b
e4fc3b
%postun debuginfod
e4fc3b
%systemd_postun_with_restart debuginfod.service
e4fc3b
e4fc3b
%changelog
e4fc3b
* Tue Nov 23 2021 Mark Wielaard <mjw@redhat.com> - 0.186-1
e4fc3b
- Upgrade to upstream 0.186
e4fc3b
  - debuginfod-client: Default $DEBUGINFOD_URLS is computed from
e4fc3b
    drop-in files /etc/debuginfod/*.urls rather than
e4fc3b
    hardcoded into the /etc/profile.d/debuginfod*
e4fc3b
    scripts.
e4fc3b
    Add $DEBUGINFOD_MAXSIZE and $DEBUGINFOD_MAXTIME settings
e4fc3b
    for skipping large/slow transfers.
e4fc3b
    Add $DEBUGINFOD_RETRY for retrying aborted lookups.
e4fc3b
  - debuginfod: Supply extra HTTP response headers, describing
e4fc3b
    archive/file names that satisfy the requested buildid content.
e4fc3b
    Support -d :memory: option for in-memory databases.
e4fc3b
    Protect against loops in federated server configurations.
e4fc3b
    Add -r option to use -I/-X regexes for grooming stale files.
e4fc3b
    Protect against wasted CPU from duplicate concurrent requests.
e4fc3b
    Limit the duration of groom ops roughly to rescan (-t) times.
e4fc3b
    Add --passive mode for serving from read-only database.
e4fc3b
    Several other performance improvements & prometheus metrics.
e4fc3b
  - libdw: Support for the NVIDIA Cuda line map extensions.
e4fc3b
    DW_LNE_NVIDIA_inlined_call and DW_LNE_NVIDIA_set_function_name
e4fc3b
    are defined in dwarf.h. New functions dwarf_linecontext and
e4fc3b
    dwarf_linefunctionname.
e4fc3b
  - translations: Update Japanese translation.
e4fc3b
e4fc3b
* Mon Aug 09 2021 Mohan Boddu <mboddu@redhat.com> - 0.185-5
e4fc3b
- Rebuilt for IMA sigs, glibc 2.34, aarch64 flags
e4fc3b
  Related: rhbz#1991688
e4fc3b
e4fc3b
* Wed Jun 16 2021 Frank Ch. Eigler <fche@redhat.com> - 0.185-4
e4fc3b
- RHBZ1947876 - redux.
e4fc3b
e4fc3b
* Wed Jun 09 2021 Frank Ch. Eigler <fche@redhat.com> - 0.185-3
e4fc3b
- RHBZ1947876 - turn -debuginfod-client into a weak reverse dependency.
e4fc3b
e4fc3b
* Mon May 31 2021 Mark Wielaard <mjw@redhat.com> - 0.185-2
e4fc3b
- Allow failing make check
e4fc3b
e4fc3b
* Mon May 31 2021 Mark Wielaard <mjw@redhat.com> - 0.185-1
e4fc3b
- Upgrade to upstream 0.185
e4fc3b
  - debuginfod-client: Simplify curl handle reuse so downloads which
e4fc3b
                       return an error are retried.
e4fc3b
  - elfcompress: Always exit with code 0 when the operation succeeds
e4fc3b
                 (even when nothing was done). On error the exit code
e4fc3b
                 is now always 1.
e4fc3b
e4fc3b
* Thu Apr 15 2021 Mohan Boddu <mboddu@redhat.com> - 0.183-2
e4fc3b
- Rebuilt for RHEL 9 BETA on Apr 15th 2021. Related: rhbz#1947937
e4fc3b
e4fc3b
* Mon Feb  8 2021 Mark Wielaard <mjw@fedoraproject.org> - 0.183-1
e4fc3b
- Upgrade to upstream 0.183
e4fc3b
  - debuginfod: New thread-busy metric and more detailed error metrics.
e4fc3b
    New --fdcache-mintmp and tracking of filesystem freespace.
e4fc3b
  - debuginfod-client: DEBUGINFOD_SONAME macro added to debuginfod.h can
e4fc3b
    be used to dlopen the libdebuginfod.so library.
e4fc3b
    New function debuginfod_set_verbose_fd and DEBUGINFOD_VERBOSE
e4fc3b
    environment variable.
e4fc3b
  - config: profile.sh and profile.csh won't export DEBUGINFOD_URLS
e4fc3b
    unless configured --enable-debuginfod-urls[=URLS]
e4fc3b
  - elflint, readelf: Recognize SHF_GNU_RETAIN.
e4fc3b
    Handle SHT_X86_64_UNWIND as valid relocation target type.
e4fc3b
e4fc3b
* Tue Jan 26 2021 Fedora Release Engineering <releng@fedoraproject.org> - 0.182-3
e4fc3b
- Rebuilt for https://fedoraproject.org/wiki/Fedora_34_Mass_Rebuild
e4fc3b
e4fc3b
* Thu Dec 17 2020 Mark Wielaard <mjw@fedoraproject.org> - 0.182-2
e4fc3b
- Add elfutils-0.182-s390-pid_memory_read.patch
e4fc3b
e4fc3b
* Sat Oct 31 2020 Mark Wielaard <mjw@fedoraproject.org> - 0.182-1
e4fc3b
- Upgrade to upstream 0.182
e4fc3b
  - backends: Support for tilegx has been removed.
e4fc3b
  - config: New /etc/profile.d files to provide default $DEBUGINFOD_URLS.
e4fc3b
  - debuginfod: More efficient package traversal, tolerate various
e4fc3b
    errors during scanning, grooming progress is more visible and
e4fc3b
    interruptible, more prometheus metrics.
e4fc3b
  - debuginfod-client: Now supports compressed (kernel) ELF images.
e4fc3b
  - libdwfl: Add ZSTD compression support.
e4fc3b
e4fc3b
* Mon Oct 19 2020 Mark Wielaard <mjw@fedoraproject.org> - 0.181-3
e4fc3b
- Add elfutils-0.181-array-param.patch.
e4fc3b
e4fc3b
* Fri Sep 18 2020 Mark Wielaard <mjw@fedoraproject.org> - 0.181-2
e4fc3b
- Add ZSTD support elfutils-0.181-zstd.patch.
e4fc3b
e4fc3b
* Tue Sep  8 2020 Mark Wielaard <mjw@fedoraproject.org> - 0.181-1
e4fc3b
- Upgrade to upstream 0.181
e4fc3b
  - libelf: elf_update now compensates (fixes up) a bad sh_addralign
e4fc3b
    for SHF_COMPRESSED sections.
e4fc3b
  - libdebuginfod: configure now takes --enable-libdebuginfod=dummy or
e4fc3b
    --disable-libdebuginfod for bootstrapping.
e4fc3b
    DEBUGINFOD_URLS now accepts "scheme-free" urls
e4fc3b
    (guessing at what the user meant, either http:// or file://)
e4fc3b
  - readelf, elflint: Handle aarch64 bti, pac bits in dynamic table and
e4fc3b
    gnu property notes.
e4fc3b
  - libdw, readelf: Recognize DW_CFA_AARCH64_negate_ra_state. Allows
e4fc3b
    unwinding on arm64 for code that is compiled for PAC
e4fc3b
    (Pointer Authentication Code) as long as it isn't enabled.
e4fc3b
e4fc3b
* Tue Aug 25 2020 Mark Wielaard <mjw@fedoraproject.org> - 0.180-7
e4fc3b
- Add elfutils-0.180-shf-compressed.patch
e4fc3b
e4fc3b
* Mon Jul 27 2020 Fedora Release Engineering <releng@fedoraproject.org> - 0.180-6
e4fc3b
- Rebuilt for https://fedoraproject.org/wiki/Fedora_33_Mass_Rebuild
e4fc3b
e4fc3b
* Wed Jul 22 2020 Mark Wielaard <mjw@fedoraproject.org> - 0.180-5
e4fc3b
- Remove elfutils-libelf-devel-static and elfutils-devel-static subpackages.
e4fc3b
- Remove duplicate listing of sysconfig/debuginfod (config) file.
e4fc3b
e4fc3b
* Mon Jul 13 2020 Tom Stellard <tstellar@redhat.com> - 0.180-4
e4fc3b
- Use make macros
e4fc3b
- https://fedoraproject.org/wiki/Changes/UseMakeBuildInstallMacro
e4fc3b
e4fc3b
* Fri Jul  3 2020 Mark Wielaard <mjw@fedoraproject.org> - 0.180-3
e4fc3b
- Add elfutils-0.180-mhd-result.patch
e4fc3b
e4fc3b
* Wed Jul  1 2020 Jeff Law <law@redhat.com> - 0.180-2
e4fc3b
- Disable LTO
e4fc3b
e4fc3b
* Thu Jun 11 2020 Mark Wielaard <mjw@fedoraproject.org> - 0.180-1
e4fc3b
- New upstream release.
e4fc3b
  elflint: Allow SHF_EXCLUDE as generic section flag when --gnu is given.
e4fc3b
  libdw, readelf: Handle GCC LTO .gnu.debuglto_ prefix.
e4fc3b
  libdw: Use correct CU to resolve file names in dwarf_decl_file.
e4fc3b
  libdwfl: Handle debugaltlink in dwfl_standard_find_debuginfo.
e4fc3b
  size: Also obey radix printing for bsd format.
e4fc3b
  nm: Explicitly print weak 'V' or 'T' and common 'C' symbols.
e4fc3b
e4fc3b
* Thu Apr 30 2020 Mark Wielaard <mjw@fedoraproject.org> - 0.179-2
e4fc3b
- Add elfutils-0.179-debug-client-alt-link.patch
e4fc3b
e4fc3b
* Mon Mar 30 2020 Mark Wielaard <mjw@fedoraproject.org> - 0.179-1
e4fc3b
- New upstream release.
e4fc3b
  debuginfod-client:
e4fc3b
  - When DEBUGINFOD_PROGRESS is set and the program doesn't
e4fc3b
    install its own debuginfod_progressfn_t show download
e4fc3b
    progress on stderr.
e4fc3b
  - DEBUGINFOD_TIMEOUT is now defined as seconds to get at
e4fc3b
    least 100K, defaults to 90 seconds.
e4fc3b
  - Default to $XDG_CACHE_HOME/debuginfod_client.
e4fc3b
  - New functions debuginfod_set_user_data,
e4fc3b
    debuginfod_get_user_data, debuginfod_get_url and
e4fc3b
    debuginfod_add_http_header.
e4fc3b
  - Support for file:// URLs.
e4fc3b
e4fc3b
  debuginfod:
e4fc3b
  - Performance improvements through highly parallelized scanning
e4fc3b
    and archive content caching.
e4fc3b
  - Uses libarchive directly for reading rpm archives.
e4fc3b
  - Support for indexing .deb/.ddeb archives through dpkg-deb
e4fc3b
    or bsdtar.
e4fc3b
  - Generic archive support through -Z EXT[=CMD]. Which can be
e4fc3b
    used for example for arch-linux pacman files by using
e4fc3b
    -Z '.tar.zst=zstdcat'.
e4fc3b
  - Better logging using User-Agent and X-Forwarded-For headers.
e4fc3b
  - More prometheus metrics.
e4fc3b
  - Support for eliding dots or extraneous slashes in path names.
e4fc3b
e4fc3b
  debuginfod-find:
e4fc3b
  - Accept /path/names in place of buildid hex.
e4fc3b
e4fc3b
  libelf:
e4fc3b
  - Handle PN_XNUM in elf_getphdrnum before shdr 0 is cached
e4fc3b
  - Ensure zlib resource cleanup on failure.
e4fc3b
e4fc3b
  libdwfl:
e4fc3b
  - dwfl_linux_kernel_find_elf and dwfl_linux_kernel_report_offline
e4fc3b
    now find and handle a compressed vmlinuz image.
e4fc3b
e4fc3b
  readelf, elflint:
e4fc3b
  - Handle PT_GNU_PROPERTY.
e4fc3b
e4fc3b
  translations:
e4fc3b
  - Updated Ukrainian translation.
e4fc3b
e4fc3b
* Tue Jan 28 2020 Fedora Release Engineering <releng@fedoraproject.org> - 0.178-9
e4fc3b
- Rebuilt for https://fedoraproject.org/wiki/Fedora_32_Mass_Rebuild
e4fc3b
e4fc3b
* Fri Jan 24 2020 Mark Wielaard <mjw@fedoraproject.org> - 0.178-8
e4fc3b
- Add elfutils-0.178-gcc10-null-dereference.patch
e4fc3b
e4fc3b
* Fri Jan 10 2020 Mark Wielaard <mjw@fedoraproject.org> - 0.178-7
e4fc3b
- Add elfutils-0.178-debuginfod-timeoutprogress.patch
e4fc3b
- Add elfutils-0.178-libasm-ebl.patch
e4fc3b
e4fc3b
* Wed Dec 11 2019 Mark Wielaard <mjw@fedoraproject.org> - 0.178-6
e4fc3b
- Add elfutils-0.178-curl-code-gcc-10.patch
e4fc3b
- Add elfutils-0.178-compressed-vmlinuz.patch
e4fc3b
e4fc3b
* Mon Dec  9 2019 Mark Wielaard <mjw@fedoraproject.org> - 0.178-5
e4fc3b
- Add elfutils-0.178-debuginfod-no-cache.patch.
e4fc3b
e4fc3b
* Thu Nov 28 2019 Mark Wielaard <mjw@fedoraproject.org> - 0.178-4
e4fc3b
- Define %%{depsuffix} before use.
e4fc3b
e4fc3b
* Thu Nov 28 2019 Mark Wielaard <mjw@fedoraproject.org> - 0.178-3
e4fc3b
- Add elfutils-debuginfod-client Provides and Requires with depsuffix
e4fc3b
  to get multilib dependencies correct. Add %%{version}-%%{release} to
e4fc3b
  keep subpackages in sync.
e4fc3b
e4fc3b
* Wed Nov 27 2019 Mark Wielaard <mjw@fedoraproject.org> - 0.178-2
e4fc3b
- Fix libdebuginfod file list for debuginfo-client[-devel].
e4fc3b
e4fc3b
* Tue Nov 26 2019 Mark Wielaard <mjw@fedoraproject.org> - 0.178-1
e4fc3b
- New upstream release.
e4fc3b
  - debuginfod: New server, client tool and library to index and fetch
e4fc3b
                ELF/DWARF files addressed by build-id through HTTP.
e4fc3b
  - doc: There are now some manual pages for functions and tools.
e4fc3b
  - backends: The libebl libraries are no longer dynamically loaded
e4fc3b
              through dlopen, but are now compiled into libdw.so directly.
e4fc3b
  - readelf: -n, --notes now takes an optional "SECTION" argument.
e4fc3b
             -p and -x now also handle section numbers.
e4fc3b
             New option --dyn-sym to show just the dynamic symbol table.
e4fc3b
  - libcpu: Add RISC-V disassembler.
e4fc3b
  - libdw: Abbrevs and DIEs can now be read concurrently by multiple
e4fc3b
           threads through the same Dwarf handle.
e4fc3b
  - libdwfl: Will try to use debuginfod when installed as fallback to
e4fc3b
             retrieve ELF and DWARF debug data files by build-id.
e4fc3b
e4fc3b
* Wed Aug 14 2019 Mark Wielaard <mjw@fedoraproject.org> - 0.177-1
e4fc3b
- New upstream release.
e4fc3b
  - elfclassify: New tool to analyze ELF objects.
e4fc3b
  - readelf: Print DW_AT_data_member_location as decimal offset.
e4fc3b
             Decode DW_AT_discr_list block attributes.
e4fc3b
  - libdw: Add DW_AT_GNU_numerator, DW_AT_GNU_denominator and DW_AT_GNU_bias.
e4fc3b
  - libdwelf: Add dwelf_elf_e_machine_string.
e4fc3b
              dwelf_elf_begin now only returns NULL when there is an error
e4fc3b
              reading or decompressing a file. If the file is not an ELF file
e4fc3b
              an ELF handle of type ELF_K_NONE is returned.
e4fc3b
  - backends: Add support for C-SKY.
e4fc3b
e4fc3b
* Wed Jul 24 2019 Fedora Release Engineering <releng@fedoraproject.org> - 0.176-5
e4fc3b
- Rebuilt for https://fedoraproject.org/wiki/Fedora_31_Mass_Rebuild
e4fc3b
e4fc3b
* Fri Jul  5 2019 Mark Wielaard <mjw@fedoraproject.org> - 0.176-4
e4fc3b
- Add elfutils-0.176-strip-symbols-illformed.patch
e4fc3b
e4fc3b
* Mon Jun  3 2019 Mark Wielaard <mjw@fedoraproject.org> - 0.176-3
e4fc3b
- Add elfutils-0.176-elf-update.patch
e4fc3b
e4fc3b
* Tue Apr 30 2019 Mark Wielaard <mjw@fedoraproject.org> - 0.176-2
e4fc3b
- Update elfutils-0.176-gcc-pr88835.patch.
e4fc3b
- Add elfutils-0.176-pt-gnu-prop.patch
e4fc3b
- Add elfutils-0.176-xlate-note.patch
e4fc3b
e4fc3b
* Fri Feb 15 2019 Mark Wielaard <mjw@fedoraproject.org> - 0.176-1
e4fc3b
- New upstream release.
e4fc3b
  - backends: riscv improved core file and return value location support.
e4fc3b
  - Fixes CVE-2019-7146, CVE-2019-7148, CVE-2019-7149, CVE-2019-7150,
e4fc3b
          CVE-2019-7664, CVE-2019-7665.
e4fc3b
e4fc3b
* Thu Jan 31 2019 Fedora Release Engineering <releng@fedoraproject.org> - 0.175-3
e4fc3b
- Rebuilt for https://fedoraproject.org/wiki/Fedora_30_Mass_Rebuild
e4fc3b
e4fc3b
* Mon Dec  3 2018 Mark Wielaard <mjw@fedoraproject.org> - 0.175-2
e4fc3b
- Add elfutils-0.175-gnu-props-32.patch.
e4fc3b
e4fc3b
* Fri Nov 16 2018 Mark Wielaard <mjw@fedoraproject.org> - 0.175-1
e4fc3b
- New upstream release.
e4fc3b
  - readelf: Handle multiple .debug_macro sections.
e4fc3b
  - strip: Add strip --reloc-debug-sections-only option.
e4fc3b
    Handle relocations against GNU compressed sections.
e4fc3b
  - libdwelf: New function dwelf_elf_begin.
e4fc3b
  - libcpu: Recognize bpf jump variants BPF_JLT, BPF_JLE, BPF_JSLT
e4fc3b
    and BPF_JSLE.
e4fc3b
  - backends: RISCV handles ADD/SUB relocations.
e4fc3b
- Remove all patches.
e4fc3b
e4fc3b
* Wed Nov 14 2018 Mark Wielaard <mjw@fedoraproject.org> - 0.174-5
e4fc3b
- Add elfutils-0.174-x86_64_unwind.patch.
e4fc3b
- Add elfutils-0.174-gnu-property-note.patch.
e4fc3b
- Add elfutils-0.174-version-note.patch.
e4fc3b
- Add elfutils-0.174-gnu-attribute-note.patch
e4fc3b
e4fc3b
* Tue Nov  6 2018 Mark Wielaard <mjw@fedoraproject.org> - 0.174-4
e4fc3b
- Add elfutils-0.174-size-rec-ar.patch
e4fc3b
  CVE-2018-18520 (#1646478)
e4fc3b
- Add elfutils-0.174-ar-sh_entsize-zero.patch
e4fc3b
  CVE-2018-18521 (#1646483)
e4fc3b
e4fc3b
* Fri Nov  2 2018 Mark Wielaard <mjw@fedoraproject.org> - 0.174-3
e4fc3b
- Add elfutils-0.174-libdwfl-sanity-check-core-reads.patch
e4fc3b
  CVE-2018-18310 (#1642605)
e4fc3b
e4fc3b
* Wed Oct 17 2018 Mark Wielaard <mjw@fedoraproject.org> - 0.174-2
e4fc3b
- Add elfutils-0.174-strip-unstrip-group.patch.
e4fc3b
e4fc3b
* Fri Sep 14 2018 Mark Wielaard <mjw@fedoraproject.org> - 0.174-1
e4fc3b
- New upstream release
e4fc3b
  - libelf, libdw and all tools now handle extended shnum and shstrndx
e4fc3b
    correctly (#1608390).
e4fc3b
  - elfcompress: Don't rewrite input file if no section data needs
e4fc3b
    updating.  Try harder to keep same file mode bits (suid) on rewrite.
e4fc3b
  - strip: Handle mixed (out of order) allocated/non-allocated sections.
e4fc3b
  - unstrip: Handle SHT_GROUP sections.
e4fc3b
  - backends: RISCV and M68K now have backend implementations to
e4fc3b
    generate CFI based backtraces.
e4fc3b
  - Fixes CVE-2018-16062, CVE-2018-16402 and CVE-2018-16403
e4fc3b
    (#1623753, #1625051, #1625056).
e4fc3b
e4fc3b
* Tue Jul 31 2018 Florian Weimer <fweimer@redhat.com> - 0.173-8
e4fc3b
- Rebuild with fixed binutils
e4fc3b
e4fc3b
* Sun Jul 29 2018 Mark Wielaard <mjw@fedoraproject.org> - 0.173-7
e4fc3b
- Add elfutils-0.173-strip-alloc-nonalloc.patch (#1609577)
e4fc3b
e4fc3b
* Tue Jul 24 2018 Mark Wielaard <mjw@fedoraproject.org>
e4fc3b
- Drop libstdc++-devel BuildRequires. gcc-c++ will pull it in.
e4fc3b
e4fc3b
* Tue Jul 24 2018 Mark Wielaard <mjw@fedoraproject.org> - 0.173-6
e4fc3b
- Update elfutils-0.173-annobingroup.patch.
e4fc3b
e4fc3b
* Sat Jul 21 2018 Mark Wielaard <mjw@fedoraproject.org> - 0.173-5
e4fc3b
- Add BuildRequires gcc-c++ for demangle support.
e4fc3b
- Add elfutils-0.173-annobingroup.patch.
e4fc3b
e4fc3b
* Sat Jul 21 2018 Mark Wielaard <mjw@fedoraproject.org> - 0.173-4
e4fc3b
- Add elfutils-0.173-elfcompress.patch (#1607044)
e4fc3b
e4fc3b
* Thu Jul 12 2018 Fedora Release Engineering <releng@fedoraproject.org> - 0.173-3
e4fc3b
- Rebuilt for https://fedoraproject.org/wiki/Fedora_29_Mass_Rebuild
e4fc3b
e4fc3b
* Mon Jul  9 2018 Mark Wielaard <mjw@fedoraproject.org> - 0.173-2
e4fc3b
- Update elfutils-0.173-new-notes-hack.patch for new annobin note.
e4fc3b
- Unbreak cyclic systemd dependency for buildroot container (#1599083)
e4fc3b
e4fc3b
* Fri Jun 29 2018 Mark Wielaard <mjw@fedoraproject.org> - 0.173-1
e4fc3b
- New upstream release
e4fc3b
  - More fixes for crashes and hangs found by afl-fuzz. In particular
e4fc3b
    various functions now detect and break infinite loops caused by bad
e4fc3b
    DIE tree cycles.
e4fc3b
  - readelf: Will now lookup the size and signedness of constant value
e4fc3b
    types to display them correctly (and not just how they were encoded).
e4fc3b
  - libdw: New function dwarf_next_lines to read CU-less .debug_line data.
e4fc3b
    dwarf_begin_elf now accepts ELF files containing just .debug_line
e4fc3b
    or .debug_frame sections (which can be read without needing a DIE
e4fc3b
    tree from the .debug_info section).
e4fc3b
    Removed dwarf_getscn_info, which was never implemented.
e4fc3b
  - backends: Handle BPF simple relocations.
e4fc3b
    The RISCV backends now handles ABI specific CFI and knows about
e4fc3b
    RISCV register types and names.
e4fc3b
e4fc3b
* Wed Jun 20 2018 Mark Wielaard <mjw@fedoraproject.org> - 0.172-2
e4fc3b
- Add elfutils-0.172-robustify.patch.
e4fc3b
e4fc3b
* Mon Jun 11 2018 Mark Wielaard <mjw@fedoraproject.org> - 0.172-1
e4fc3b
- New upstream release.
e4fc3b
  - No functional changes compared to 0.171.
e4fc3b
  - Various bug fixes in libdw and eu-readelf dealing with bad DWARF5
e4fc3b
    data. Thanks to running the afl fuzzer on eu-readelf and various
e4fc3b
    testcases.
e4fc3b
  - eu-readelf -N is ~15% faster.
e4fc3b
e4fc3b
* Fri Jun 01 2018 Mark Wielaard <mjw@fedoraproject.org> - 0.171-1
e4fc3b
- New upstream release.
e4fc3b
  - DWARF5 and split dwarf, including GNU DebugFission, support.
e4fc3b
  - readelf: Handle all new DWARF5 sections.
e4fc3b
    --debug-dump=info+ will show split unit DIEs when found.
e4fc3b
    --dwarf-skeleton can be used when inspecting a .dwo file.
e4fc3b
    Recognizes GNU locviews with --debug-dump=loc.
e4fc3b
  - libdw: New functions dwarf_die_addr_die, dwarf_get_units,
e4fc3b
    dwarf_getabbrevattr_data and dwarf_cu_info.
e4fc3b
    libdw will now try to resolve the alt file on first use
e4fc3b
    when not set yet with dwarf_set_alt.
e4fc3b
    dwarf_aggregate_size() now works with multi-dimensional arrays.
e4fc3b
  - libdwfl: Use process_vm_readv when available instead of ptrace.
e4fc3b
  - backends: Add a RISC-V backend.
e4fc3b
e4fc3b
* Wed Apr 11 2018 Mark Wielaard <mjw@fedoraproject.org> - 0.170-11
e4fc3b
- Add explict libstdc++-devel BuildRequires for demangle support.
e4fc3b
- Add elfutils-0.170-unwind.patch. (#1555726)
e4fc3b
e4fc3b
* Thu Mar 01 2018 Mark Wielaard <mjw@fedoraproject.org> - 0.170-10
e4fc3b
- Add elfutils-0.170-GNU_variable_value.patch
e4fc3b
- Add elfutils-0.170-locviews.patch
e4fc3b
e4fc3b
* Fri Feb 16 2018 Mark Wielaard <mjw@fedoraproject.org> - 0.170-9
e4fc3b
- Add elfutils-0.170-core-pid.patch
e4fc3b
- Add elfutils-0.170-elf_sync.patch
e4fc3b
- Add elfutils-0.170-new-notes-hack.patch
e4fc3b
e4fc3b
* Thu Feb 15 2018 Mark Wielaard <mjw@fedoraproject.org> - 0.170-8
e4fc3b
- Add elfutils-0.170-sys-ptrace.patch
e4fc3b
- Make sure spec can be build even when ldconfig_scriplets aren't defined.
e4fc3b
- Add elfutils-0.170-m68k-packed-not-aligned.patch
e4fc3b
e4fc3b
* Fri Feb 09 2018 Igor Gnatenko <ignatenkobrain@fedoraproject.org> - 0.170-7
e4fc3b
- Escape macros in %%changelog
e4fc3b
e4fc3b
* Wed Feb 07 2018 Fedora Release Engineering <releng@fedoraproject.org> - 0.170-6
e4fc3b
- Rebuilt for https://fedoraproject.org/wiki/Fedora_28_Mass_Rebuild
e4fc3b
e4fc3b
* Sat Feb 03 2018 Igor Gnatenko <ignatenkobrain@fedoraproject.org> - 0.170-5
e4fc3b
- Switch to %%ldconfig_scriptlets
e4fc3b
e4fc3b
* Wed Dec 20 2017 Mark Wielaard <mjw@fedoraproject.org> - 0.170-4
e4fc3b
- Add elfutils-0.170-dwarf_aggregate_size.patch.
e4fc3b
e4fc3b
* Wed Nov  8 2017 Mark Wielaard <mjw@fedoraproject.org> - 0.170-3
e4fc3b
- Rely on (and check) systemd_requires for sysctl_apply default-yama-scope.
e4fc3b
e4fc3b
* Thu Nov  2 2017 Mark Wielaard <mjw@redhat.com> - 0.170-2
e4fc3b
- Config files under /usr/lib/sysctl.d (_sysctldir) aren't %%config (#1506660)
e4fc3b
  Admin can place the real config file under /etc/sysctl.d as override.
e4fc3b
e4fc3b
* Thu Aug  3 2017 Mark Wielaard <mjw@fedoraproject.org> - 0.170-1
e4fc3b
- New upstream release. Remove upstreamed patches.
e4fc3b
- provide_yama_scope for either fedora >= 22 and rhel >= 7.
e4fc3b
e4fc3b
* Wed Aug 02 2017 Fedora Release Engineering <releng@fedoraproject.org> - 0.169-8
e4fc3b
- Rebuilt for https://fedoraproject.org/wiki/Fedora_27_Binutils_Mass_Rebuild
e4fc3b
e4fc3b
* Wed Jul 26 2017 Fedora Release Engineering <releng@fedoraproject.org> - 0.169-7
e4fc3b
- Rebuilt for https://fedoraproject.org/wiki/Fedora_27_Mass_Rebuild
e4fc3b
e4fc3b
* Fri Jul 21 2017 Mark Wielaard <mjw@fedoraproject.org> - 0.169-6
e4fc3b
- Add elfutils-0.169-strip-data-marker-symbols.patch.
e4fc3b
e4fc3b
* Mon Jul 17 2017 Mark Wielaard <mjw@fedoraproject.org> - 0.169-5
e4fc3b
- Fix build on s390 (ptrace.h). Add elfutils-0.169-s390x-ptrace.patch.
e4fc3b
e4fc3b
* Mon Jul 17 2017 Mark Wielaard <mjw@fedoraproject.org> - 0.169-4
e4fc3b
- Add elfutils-0.169-strip-keep-remove-section.patch (#1465997)
e4fc3b
e4fc3b
* Wed Jun  7 2017 Mark Wielaard <mjw@fedoraproject.org> - 0.169-3
e4fc3b
- Add elfutils-0.169-dup-shstrtab.patch
e4fc3b
- Add elfutils-0.169-strip-empty.patch
e4fc3b
e4fc3b
* Tue May 30 2017 Mark Wielaard <mjw@fedoraproject.org> - 0.169-2
e4fc3b
- Add ppc64 fallback unwinder.
e4fc3b
e4fc3b
* Fri May  5 2017 Mark Wielaard <mjw@fedoraproject.org> - 0.169-1
e4fc3b
- New upstream release. Removed upstreamed patches.
e4fc3b
e4fc3b
* Wed Feb 15 2017 Mark Wielaard <mark@klomp.org> - 0.168-5
e4fc3b
- Add patches for new gcc warnings and new binutils ppc64 attributes.
e4fc3b
  - elfutils-0.168-libasm-truncation.patch
e4fc3b
  - elfutils-0.168-ppc64-attrs.patch
e4fc3b
e4fc3b
* Fri Feb 10 2017 Fedora Release Engineering <releng@fedoraproject.org> - 0.168-4
e4fc3b
- Rebuilt for https://fedoraproject.org/wiki/Fedora_26_Mass_Rebuild
e4fc3b
e4fc3b
* Mon Jan 16 2017 Mark Wielaard <mark@klomp.org> - 0.168-3
e4fc3b
- Never use old, deprecated, filter_provides_in, it really is too broken.
e4fc3b
e4fc3b
* Fri Jan 13 2017 Mark Wielaard <mark@klomp.org> - 0.168-2
e4fc3b
- Filter out private libebl backends from provides.
e4fc3b
e4fc3b
* Wed Dec 28 2016 Mark Wielaard <mark@klomp.org> - 0.168-1
e4fc3b
- New upstream release from new home https://sourceware.org/elfutils/
e4fc3b
- Resolves:
e4fc3b
  - #1396092 Please implement eu-readelf --symbols[=SECTION]
e4fc3b
  - #1388057 memory allocation failure in allocate_elf
e4fc3b
  - #1387584 memory allocation failure in __libelf_set_rawdata_wrlock
e4fc3b
e4fc3b
* Fri Oct  7 2016 Mark Wielaard <mjw@redhat.com> - 0.167-2
e4fc3b
- Add elfutils-0.167-strip-alloc-symbol.patch (#1380961)
e4fc3b
e4fc3b
* Fri Aug 26 2016 Mark Wielaard <mjw@redhat.com> - 0.167-1
e4fc3b
- Upgrade to elfutils-0.167
e4fc3b
  Drop upstream elfutils-0.166-elfcmp-comp-gcc6.patch
e4fc3b
  Fixes: #1365812, #1352232.
e4fc3b
e4fc3b
* Thu Apr 14 2016 Mark Wielaard <mjw@redhat.com> - 0.166-2
e4fc3b
- Add elfutils-0.166-elfcmp-comp-gcc6.patch
e4fc3b
e4fc3b
* Thu Mar 31 2016 Mark Wielaard <mjw@redhat.com> - 0.166-1
e4fc3b
- Upgrade to elfutils-0.166
e4fc3b
  Drop upstreamed patches:
e4fc3b
    - elfutils-0.165-nobitsalign-strip.patch.
e4fc3b
    - elfutils-0.165-reloc.patch.
e4fc3b
    - elfutils-0.165-elf-libelf.patch.
e4fc3b
e4fc3b
* Thu Feb 04 2016 Mark Wielaard <mjw@redhat.com> - 0.165-5
e4fc3b
- Add elfutils-0.165-nobitsalign-strip.patch.
e4fc3b
e4fc3b
* Wed Feb 03 2016 Fedora Release Engineering <releng@fedoraproject.org> - 0.165-4
e4fc3b
- Rebuilt for https://fedoraproject.org/wiki/Fedora_24_Mass_Rebuild
e4fc3b
e4fc3b
* Thu Jan 28 2016 Mark Wielaard <mjw@redhat.com> - 0.165-3
e4fc3b
- Add elfutils-0.165-reloc.patch.
e4fc3b
e4fc3b
* Thu Jan 14 2016 Mark Wielaard <mjw@redhat.com> - 0.165-2
e4fc3b
- Add elfutils-0.165-elf-libelf.patch.
e4fc3b
e4fc3b
* Mon Jan 11 2016 Mark Wielaard <mjw@redhat.com> - 0.165-1
e4fc3b
- Update to elfutils-0.165 (#1294079, #1236699, #807053)
e4fc3b
  - Add eu-elfcompress
e4fc3b
  - Add pkg-config files for libelf and libdw.
e4fc3b
e4fc3b
* Fri Oct 16 2015 Mark Wielaard <mjw@redhat.com> - 0.164-1
e4fc3b
- Update to elfutils-0.164
e4fc3b
- Drop old compat stuff
e4fc3b
e4fc3b
* Mon Sep 07 2015 Mark Wielaard <mjw@redhat.com> - 0.163-4
e4fc3b
- Add elfutils-0.163-readelf-n-undefined-shift.patch (#1259259)
e4fc3b
e4fc3b
* Tue Aug 04 2015 Mark Wielaard <mjw@redhat.com> - 0.163-3
e4fc3b
- Add elfutils-0.163-default-yama-conf.patch (#1250079)
e4fc3b
  Provides: default-yama-scope
e4fc3b
e4fc3b
* Mon Aug 03 2015 Mark Wielaard <mjw@redhat.com> - 0.163-2
e4fc3b
- Add elfutils-0.163-unstrip-shf_info_link.patch
e4fc3b
e4fc3b
* Fri Jun 19 2015 Mark Wielaard <mjw@redhat.com> - 0.163-1
e4fc3b
- Update to 0.163
e4fc3b
  - Drop elfutils-0.162-ftruncate-allocate.patch
e4fc3b
e4fc3b
* Tue Jun 16 2015 Mark Wielaard <mjw@redhat.com> - 0.162-2
e4fc3b
- Add elfutils-0.162-ftruncate-allocate.patch (#1232206)
e4fc3b
e4fc3b
* Thu Jun 11 2015 Mark Wielaard <mjw@redhat.com> - 0.162-1
e4fc3b
- Update to 0.162 (#1170810, #1139815, #1129756, #1020842)
e4fc3b
- Include elfutils/known-dwarf.h
e4fc3b
- Drop BuildRequires glibc-headers (#1230468)
e4fc3b
- Removed integrated upstream patches:
e4fc3b
  - elfutils-0.161-aarch64relro.patch
e4fc3b
  - elfutils-0.161-copyreloc.patch
e4fc3b
  - elfutils-0.161-addralign.patch
e4fc3b
  - elfutils-0.161-ar-long-name.patch
e4fc3b
  - elfutils-0.161-formref-type.patch
e4fc3b
e4fc3b
* Sat May 02 2015 Kalev Lember <kalevlember@gmail.com> - 0.161-8
e4fc3b
- Rebuilt for GCC 5 C++11 ABI change
e4fc3b
e4fc3b
* Mon Mar 23 2015 Mark Wielaard <mjw@redhat.com> - 0.161-7
e4fc3b
- Add elfutils-0.161-aarch64relro.patch (#1201778)
e4fc3b
e4fc3b
* Mon Mar 09 2015 Mark Wielaard <mjw@redhat.com> - 0.161-6
e4fc3b
- Add elfutils-0.161-copyreloc.patch.
e4fc3b
e4fc3b
* Sat Feb 21 2015 Till Maas <opensource@till.name> - 0.161-5
e4fc3b
- Rebuilt for Fedora 23 Change
e4fc3b
  https://fedoraproject.org/wiki/Changes/Harden_all_packages_with_position-independent_code
e4fc3b
e4fc3b
* Sat Feb 07 2015 Mark Wielaard <mjw@redhat.com> - 0.161-4
e4fc3b
- Add elfutils-0.161-addralign.patch (#1189928)
e4fc3b
e4fc3b
* Thu Feb 05 2015 Mark Wielaard <mjw@redhat.com> - 0.161-3
e4fc3b
- Add elfutils-0.161-formref-type.patch
e4fc3b
e4fc3b
* Tue Jan 13 2015 Mark Wielaard <mjw@redhat.com> - 0.161-2
e4fc3b
- Add elfutils-0.161-ar-long-name.patch (#1181525 CVE-2014-9447)
e4fc3b
e4fc3b
* Fri Dec 19 2014 Mark Wielaard <mjw@redhat.com> - 0.161-1
e4fc3b
- Update to 0.161.
e4fc3b
e4fc3b
* Wed Aug 27 2014 Mark Wielaard <mjw@redhat.com> - 0.160-1
e4fc3b
- Update to 0.160.
e4fc3b
  - Remove integrated upstream patches:
e4fc3b
    elfutils-aarch64-user_regs_struct.patch
e4fc3b
    elfutils-0.159-argp-attach.patch
e4fc3b
    elfutils-0.159-aarch64-bool-ret.patch
e4fc3b
    elfutils-0.159-elf-h.patch
e4fc3b
    elfutils-0.159-ppc64le-elfv2-abi.patch
e4fc3b
    elfutils-0.159-report_r_debug.patch
e4fc3b
    elfutils-0.159-ko_xz.patch
e4fc3b
e4fc3b
* Sat Aug 16 2014 Mark Wielaard <mjw@redhat.com> - 0.159-10
e4fc3b
- Add elfutils-0.159-ko_xz.patch
e4fc3b
e4fc3b
* Sat Aug 16 2014 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 0.159-9
e4fc3b
- Rebuilt for https://fedoraproject.org/wiki/Fedora_21_22_Mass_Rebuild
e4fc3b
e4fc3b
* Mon Jul 28 2014 Mark Wielaard <mjw@redhat.com> - 0.159-8
e4fc3b
- Add elfutils-0.159-report_r_debug.patch (#1112610)
e4fc3b
e4fc3b
* Fri Jul 18 2014 Mark Wielaard <mjw@redhat.com> - 0.159-7
e4fc3b
- Add configure check to elfutils-aarch64-user_regs_struct.patch.
e4fc3b
e4fc3b
* Sat Jul 12 2014 Tom Callaway <spot@fedoraproject.org> - 0.159-6
e4fc3b
- fix license handling
e4fc3b
e4fc3b
* Fri Jul  4 2014 Mark Wielaard <mjw@redhat.com> - 0.159-5
e4fc3b
- Add elfutils-0.159-aarch64-bool-ret.patch
e4fc3b
- Add elfutils-0.159-elf-h.patch
e4fc3b
- Add elfutils-0.159-ppc64le-elfv2-abi.patch (#1110249)
e4fc3b
e4fc3b
* Tue Jun 10 2014 Mark Wielaard <mjw@redhat.com> - 0.159-4
e4fc3b
- Add elfutils-0.159-argp-attach.patch (#1107654)
e4fc3b
e4fc3b
* Mon Jun 09 2014 Kyle McMartin <kyle@fedoraproject.org> - 0.159-3
e4fc3b
- AArch64: handle new glibc-headers which provides proper GETREGSET structs.
e4fc3b
e4fc3b
* Sat Jun 07 2014 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 0.159-2.1
e4fc3b
- Rebuilt for https://fedoraproject.org/wiki/Fedora_21_Mass_Rebuild
e4fc3b
e4fc3b
* Mon May 19 2014 Mark Wielaard <mjw@redhat.com> - 0.159-1
e4fc3b
- Update to 0.159.
e4fc3b
  - Remove integrated upstream patches:
e4fc3b
    robustify.patch, mod-e_type.patch and CVE-2014-0172.patch.
e4fc3b
  - Remove special handling of now default compile and configure flags:
e4fc3b
    Don't remove -Werror=format-security, don't configure --enable-dwz.
e4fc3b
e4fc3b
* Thu Apr 10 2014 Mark Wielaard <mjw@redhat.com> - 0.158-3
e4fc3b
- Add elfutils-0.158-CVE-2014-0172.patch (#1085729)
e4fc3b
e4fc3b
* Tue Mar 11 2014 Mark Wielaard <mjw@redhat.com> - 0.158-2
e4fc3b
- Add elfutils-0.158-mod-e_type.patch.
e4fc3b
e4fc3b
* Mon Jan  6 2014 Mark Wielaard <mjw@redhat.com> - 0.158-1
e4fc3b
- Update to 0.158. Remove all patches now upstream. Add eu-stack.
e4fc3b
e4fc3b
* Thu Dec 19 2013 Mark Wielaard <mjw@redhat.com> - 0.157-4
e4fc3b
- Add elfutils-0.157-aarch64-got-special-symbol.patch.
e4fc3b
- Remove -Werror=format-security from RPM_OPT_FLAGS.
e4fc3b
e4fc3b
* Fri Dec 13 2013 Petr Machata <pmachata@redhat.com> - 0.157-3
e4fc3b
- Add upstream support for aarch64
e4fc3b
e4fc3b
* Wed Oct  9 2013 Mark Wielaard <mjw@redhat.com> 0.157-2
e4fc3b
- Show tests/test-suite.log in build.log when make check fails.
e4fc3b
e4fc3b
* Mon Sep 30 2013 Mark Wielaard <mjw@redhat.com> 0.157-1
e4fc3b
- Update to 0.157.
e4fc3b
- Remove elfutils-0.156-abi_cfi-ppc-s390-arm.patch.
e4fc3b
- Remove elfutils-0.156-et_dyn-kernels.patch.
e4fc3b
e4fc3b
* Fri Sep 06 2013 Mark Wielaard <mjw@redhat.com> 0.156-5
e4fc3b
- Add elfutils-0.156-abi_cfi-ppc-s390-arm.patch.
e4fc3b
  Sets up initial CFI return register, CFA location expression and
e4fc3b
  register rules for PPC, S390 and ARM (dwarf_cfi_addrframe support).
e4fc3b
e4fc3b
* Mon Aug 26 2013 Mark Wielaard <mjw@redhat.com> 0.156-4
e4fc3b
- Add elfutils-0.156-et_dyn-kernels.patch.
e4fc3b
  Fixes an issue on ppc64 with systemtap kernel address placement.
e4fc3b
e4fc3b
* Thu Aug  8 2013 Mark Wielaard <mjw@redhat.com> 0.156-3
e4fc3b
- Make check can now also be ran in parallel.
e4fc3b
e4fc3b
* Thu Jul 25 2013 Jan Kratochvil <jan.kratochvil@redhat.com> 0.156-2
e4fc3b
- Update the %%configure command for compatibility with fc20 Koji.
e4fc3b
e4fc3b
* Thu Jul 25 2013 Jan Kratochvil <jan.kratochvil@redhat.com> 0.156-1
e4fc3b
- Update to 0.156.
e4fc3b
  - #890447 - Add __bss_start and __TMC_END__ to elflint.
e4fc3b
  - #909481 - Only try opening files with installed compression libraries.
e4fc3b
  - #914908 - Add __bss_start__ to elflint.
e4fc3b
  - #853757 - Updated Polish translation.
e4fc3b
  - #985438 - Incorrect prototype of __libdwfl_find_elf_build_id.
e4fc3b
  - Drop upstreamed elfutils-0.155-binutils-pr-ld-13621.patch.
e4fc3b
  - Drop upstreamed elfutils-0.155-mem-align.patch.
e4fc3b
  - Drop upstreamed elfutils-0.155-sizeof-pointer-memaccess.patch.
e4fc3b
e4fc3b
* Tue Jul 02 2013 Karsten Hopp <karsten@redhat.com> 0.155-6
e4fc3b
- bump release and rebuild to fix dependencies on PPC
e4fc3b
e4fc3b
* Sun Feb 24 2013 Mark Wielaard <mjw@redhat.com> - 0.155-5
e4fc3b
- Add ARM variant to elfutils-0.155-binutils-pr-ld-13621.patch rhbz#914908.
e4fc3b
- rhel >= 5 has xz-devel
e4fc3b
e4fc3b
* Fri Feb 22 2013 Mark Wielaard <mjw@redhat.com> - 0.155-4
e4fc3b
- Replace elfutils-0.155-binutils-pr-ld-13621.patch with upstream fix.
e4fc3b
e4fc3b
* Thu Jan 24 2013 Mark Wielaard <mjw@redhat.com> - 0.155-3
e4fc3b
- Backport sizeof-pointer-memaccess upstream fixes.
e4fc3b
e4fc3b
* Thu Jan 10 2013 Mark Wielaard <mjw@redhat.com> - 0.155-2
e4fc3b
- #891553 - unaligned memory access issues.
e4fc3b
e4fc3b
* Mon Aug 27 2012 Mark Wielaard <mjw@redhat.com> - 0.155-1
e4fc3b
- Update to 0.155.
e4fc3b
  - #844270 - eu-nm invalid %%N$ use detected.
e4fc3b
  - #847454 - Ukrainian translation update.
e4fc3b
  - Removed local ar 64-bit symbol patch, dwz support patch and xlatetom fix.
e4fc3b
e4fc3b
* Tue Aug 14 2012 Petr Machata <pmachata@redhat.com> - 0.154-4
e4fc3b
- Add support for archives with 64-bit symbol tables (#843019)
e4fc3b
e4fc3b
* Wed Aug 01 2012 Mark Wielaard <mjw@redhat.com> 0.154-3
e4fc3b
- Add dwz support
e4fc3b
e4fc3b
* Wed Jul 18 2012 Mark Wielaard <mjw@redhat.com> 0.154-2
e4fc3b
- Add upstream xlatetom fix (#835877)
e4fc3b
e4fc3b
* Mon Jul 02 2012 Karsten Hopp <karsten@redhat.com> 0.154-1.1
e4fc3b
- disable unstrip-n check for now (835877)
e4fc3b
e4fc3b
* Fri Jun 22 2012 Mark Wielaard <mjw@redhat.com> - 0.154-1
e4fc3b
- Update to 0.154
e4fc3b
  - elflint doesn't recognize SHF_INFO_LINK on relocation sections (#807823)
e4fc3b
  - Update license to GPLv3+ and (GPLv2+ or LGPLv3+)
e4fc3b
  - Remove elfutils-0.153-dwfl_segment_report_module.patch
e4fc3b
- Add elfutils-0.154-binutils-pr-ld-13621.patch
e4fc3b
e4fc3b
* Mon Apr 02 2012 Mark Wielaard <mark@klomp.org> - 0.153-2
e4fc3b
- Fix for eu-unstrip emits garbage for librt.so.1 (#805447)
e4fc3b
e4fc3b
* Thu Feb 23 2012 Mark Wielaard <mjw@redhat.com> - 0.153-1
e4fc3b
- Update to 0.153
e4fc3b
  - New --disable-werror for portability.
e4fc3b
  - Support for .zdebug sections (#679777)
e4fc3b
  - type_units and DW_AT_GNU_odr_signature support (#679815)
e4fc3b
  - low level support DW_OP_GNU_entry_value and DW_TAG_GNU_call_site (#688090)
e4fc3b
  - FTBFS on rawhide with gcc 4.7 (#783506)
e4fc3b
    - Remove gcc-4.7 patch
e4fc3b
e4fc3b
* Fri Jan 20 2012 Mark Wielaard <mjw@redhat.com> - 0.152-3
e4fc3b
- Fixes for gcc-4.7 based on upstream commit 32899a (#783506).
e4fc3b
e4fc3b
* Fri Jan 13 2012 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 0.152-2
e4fc3b
- Rebuilt for https://fedoraproject.org/wiki/Fedora_17_Mass_Rebuild
e4fc3b
e4fc3b
* Tue Feb 15 2011 Roland McGrath <roland@redhat.com> - 0.152-1
e4fc3b
- Update to 0.152
e4fc3b
  - Various build and warning nits fixed for newest GCC and Autoconf.
e4fc3b
  - libdwfl: Yet another prelink-related fix for another regression. (#674465)
e4fc3b
  - eu-elfcmp: New flag --ignore-build-id to ignore differing build ID bits.
e4fc3b
  - eu-elfcmp: New flag -l/--verbose to print all differences.
e4fc3b
e4fc3b
* Tue Feb 08 2011 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 0.151-2
e4fc3b
- Rebuilt for https://fedoraproject.org/wiki/Fedora_15_Mass_Rebuild
e4fc3b
e4fc3b
* Wed Jan 12 2011 Roland McGrath <roland@redhat.com> - 0.151-1
e4fc3b
- Update to 0.151
e4fc3b
  - libdwfl: Fix for more prelink cases with separate debug file.
e4fc3b
  - eu-strip: New flag --strip-sections to remove section headers entirely.
e4fc3b
e4fc3b
* Thu Dec  2 2010 Roland McGrath <roland@redhat.com> - 0.150-2
e4fc3b
- libdwfl: Remove bogus assert. (#658268)
e4fc3b
e4fc3b
* Tue Nov 23 2010 Roland McGrath <roland@redhat.com> - 0.150-1
e4fc3b
- Update to 0.150
e4fc3b
  - libdw: Fix for handling huge .debug_aranges section. (#638432)
e4fc3b
  - libdwfl: Fix for handling prelinked DSO with separate debug file. (#652857)
e4fc3b
  - findtextrel: Fix diagnostics to work with usual section ordering.
e4fc3b
e4fc3b
* Wed Sep 29 2010 jkeating - 0.149-2
e4fc3b
- Rebuilt for gcc bug 634757
e4fc3b
e4fc3b
* Mon Sep 13 2010 Roland McGrath <roland@redhat.com> - 0.149-1
e4fc3b
- Update to 0.149
e4fc3b
  - libdw: Decode new DW_OP_GNU_implicit_pointer operation;
e4fc3b
           new function dwarf_getlocation_implicit_pointer.
e4fc3b
  - libdwfl: New function dwfl_dwarf_line.
e4fc3b
  - eu-addr2line: New flag -F/--flags to print more DWARF line info details.
e4fc3b
  - eu-readelf: better .debug_loc processing (#627729)
e4fc3b
  - eu-strings: Fix non-mmap file reading. (#609468)
e4fc3b
  - eu-strip: -g recognizes .gdb_index as a debugging section. (#631997)
e4fc3b
e4fc3b
* Mon Jun 28 2010 Roland McGrath <roland@redhat.com> - 0.148-1
e4fc3b
- Update to 0.148
e4fc3b
  - libdw: Accept DWARF 4 format: new functions dwarf_next_unit,
e4fc3b
           dwarf_offdie_types.
e4fc3b
           New functions dwarf_lineisa, dwarf_linediscriminator,
e4fc3b
           dwarf_lineop_index.
e4fc3b
  - libdwfl: Fixes in core-file handling, support cores from PIEs. (#588818)
e4fc3b
             When working from build IDs, don't open a named file
e4fc3b
             that mismatches.
e4fc3b
  - readelf: Handle DWARF 4 formats.
e4fc3b
e4fc3b
* Mon May  3 2010 Roland McGrath <roland@redhat.com> - 0.147-1
e4fc3b
- Update to 0.147
e4fc3b
e4fc3b
* Wed Apr 21 2010 Roland McGrath <roland@redhat.com> - 0.146-1
e4fc3b
- Update to 0.146
e4fc3b
  - libdwfl: New function dwfl_core_file_report.
e4fc3b
  - libelf: Fix handling of phdrs in truncated file. (#577310)
e4fc3b
  - libdwfl: Fix infinite loop handling clobbered link_map. (#576379)
e4fc3b
- Package translations.
e4fc3b
e4fc3b
* Tue Feb 23 2010 Roland McGrath <roland@redhat.com> - 0.145-1
e4fc3b
- Update to 0.145
e4fc3b
  - Fix build with --disable-dependency-tracking. (#564646)
e4fc3b
  - Fix build with most recent glibc headers.
e4fc3b
  - libdw: Fix CFI decoding. (#563528)
e4fc3b
  - libdwfl: Fix address bias returned by CFI accessors. (#563528)
e4fc3b
             Fix core file module layout identification. (#559836)
e4fc3b
  - readelf: Fix CFI decoding.
e4fc3b
e4fc3b
* Fri Jan 15 2010 Roland McGrath <roland@redhat.com> - 0.144-2
e4fc3b
- Fix sloppy #include's breaking build with F-13 glibc.
e4fc3b
e4fc3b
* Thu Jan 14 2010 Roland McGrath <roland@redhat.com> - 0.144-1
e4fc3b
- Update to 0.144
e4fc3b
  - libdw: New function dwarf_aggregate_size for computing (constant) type
e4fc3b
           sizes, including array_type cases with nontrivial calculation.
e4fc3b
  - readelf: Don't give errors for missing info under -a.
e4fc3b
             Handle Linux "VMCOREINFO" notes under -n.
e4fc3b
- Resolves: RHBZ #527004, RHBZ #530704, RHBZ #550858
e4fc3b
e4fc3b
* Mon Sep 21 2009 Roland McGrath <roland@redhat.com> - 0.143-1
e4fc3b
- Update to 0.143
e4fc3b
  - libdw: Various convenience functions for individual attributes now use
e4fc3b
           dwarf_attr_integrate to look up indirect inherited attributes.
e4fc3b
           Location expression handling now supports DW_OP_implicit_value.
e4fc3b
  - libdwfl: Support automatic decompression of files in XZ format,
e4fc3b
             and of Linux kernel images made with bzip2 or LZMA
e4fc3b
             (as well as gzip).
e4fc3b
e4fc3b
* Tue Jul 28 2009 Roland McGrath <roland@redhat.com> - 0.142-1
e4fc3b
- Update to 0.142
e4fc3b
  - libelf: Bug fix in filling gaps between sections. (#512840)
e4fc3b
  - libelf: Add elf_getshdrnum alias for elf_getshnum and elf_getshdrstrndx
e4fc3b
            alias for elf_getshstrndx and deprecate original names.
e4fc3b
  - libebl, elflint: Add support for STB_GNU_UNIQUE. (#511436)
e4fc3b
  - readelf: Add -N option, speeds up DWARF printing
e4fc3b
             without address->name lookups. (#505347)
e4fc3b
  - libdw: Add support for decoding DWARF CFI into location description form.
e4fc3b
           Handle some new DWARF 3 expression operations previously omitted.
e4fc3b
           Basic handling of some new encodings slated for DWARF 4.
e4fc3b
e4fc3b
* Thu Apr 23 2009 Roland McGrath <roland@redhat.com> - 0.141-1
e4fc3b
- Update to 0.141
e4fc3b
  - libebl: sparc backend fixes (#490585)
e4fc3b
            some more arm backend support
e4fc3b
  - libdwfl: fix dwfl_module_build_id for prelinked DSO case (#489439)
e4fc3b
             fixes in core file support (#494858)
e4fc3b
             dwfl_module_getsym interface improved for non-address symbols
e4fc3b
  - eu-strip: fix infinite loop on strange inputs with -f
e4fc3b
  - eu-addr2line: take -j/--section=NAME option for binutils compatibility
e4fc3b
                  (same effect as '(NAME)0x123' syntax already supported)
e4fc3b
- Resolves: RHBZ #495213, RHBZ #465872, RHBZ #470055, RHBZ #484623
e4fc3b
e4fc3b
* Tue Feb 24 2009 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 0.140-2
e4fc3b
- Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild
e4fc3b
e4fc3b
* Sun Feb 15 2009 Roland McGrath <roland@redhat.com> - 0.140-1
e4fc3b
- Update to 0.140
e4fc3b
  - libelf: Fix regression in creation of section header. (#484946)
e4fc3b
e4fc3b
* Fri Jan 23 2009 Roland McGrath <roland@redhat.com> - 0.139-1
e4fc3b
- Update to 0.139
e4fc3b
  - libcpu: Add Intel SSE4 disassembler support
e4fc3b
  - readelf: Implement call frame information and exception handling dumping.
e4fc3b
             Add -e option.  Enable it implicitly for -a.
e4fc3b
  - elflint: Check PT_GNU_EH_FRAME program header entry.
e4fc3b
  - libdwfl: Support automatic gzip/bzip2 decompression of ELF files. (#472136)
e4fc3b
e4fc3b
* Thu Jan  1 2009 Roland McGrath <roland@redhat.com> - 0.138-2
e4fc3b
- Fix libelf regression.
e4fc3b
e4fc3b
* Wed Dec 31 2008 Roland McGrath <roland@redhat.com> - 0.138-1
e4fc3b
- Update to 0.138
e4fc3b
  - Install <elfutils/version.h> header file for applications to use in
e4fc3b
    source version compatibility checks.
e4fc3b
  - libebl: backend fixes for i386 TLS relocs; backend support for NT_386_IOPERM
e4fc3b
  - libcpu: disassembler fixes (#469739)
e4fc3b
  - libdwfl: bug fixes (#465878)
e4fc3b
  - libelf: bug fixes
e4fc3b
  - eu-nm: bug fixes for handling corrupt input files (#476136)
e4fc3b
e4fc3b
* Wed Oct  1 2008 Roland McGrath <roland@redhat.com> - 0.137-3
e4fc3b
- fix libdwfl regression (#462689)
e4fc3b
e4fc3b
* Thu Aug 28 2008 Roland McGrath <roland@redhat.com> - 0.137-2
e4fc3b
- Update to 0.137
e4fc3b
  - libdwfl: bug fixes; new segment interfaces;
e4fc3b
             all the libdwfl-based tools now support --core=COREFILE option
e4fc3b
- Resolves: RHBZ #325021, RHBZ #447416
e4fc3b
e4fc3b
* Mon Jul  7 2008 Tom "spot" Callaway <tcallawa@redhat.com> - 0.135-2
e4fc3b
- fix conditional comparison
e4fc3b
e4fc3b
* Mon May 12 2008 Roland McGrath <roland@redhat.com> - 0.135-1
e4fc3b
- Update to 0.135
e4fc3b
  - libdwfl: bug fixes
e4fc3b
  - eu-strip: changed handling of ET_REL files wrt symbol tables and relocs
e4fc3b
e4fc3b
* Wed Apr  9 2008 Roland McGrath <roland@redhat.com> - 0.134-1
e4fc3b
- Update to 0.134
e4fc3b
  - elflint: backend improvements for sparc, alpha (#204170)
e4fc3b
  - libdwfl, libelf: bug fixes (#439344, #438867, #438263, #438190)
e4fc3b
- Remove Conflicts: libelf-devel from elfutils-libelf-devel. (#435742)
e4fc3b
e4fc3b
* Sun Mar  2 2008 Roland McGrath <roland@redhat.com> - 0.133-2
e4fc3b
- Update to 0.133
e4fc3b
  - readelf, elflint, libebl: SHT_GNU_ATTRIBUTE section handling (readelf -A)
e4fc3b
  - readelf: core note handling for NT_386_TLS, NT_PPC_SPE, Alpha NT_AUXV
e4fc3b
  - libdwfl: bug fixes and optimization in relocation handling
e4fc3b
  - elfcmp: bug fix for non-allocated section handling
e4fc3b
  - ld: implement newer features of binutils linker.
e4fc3b
- Install eu-objdump and libasm, now has limited disassembler support.
e4fc3b
e4fc3b
* Mon Jan 21 2008 Roland McGrath <roland@redhat.com> - 0.132-3
e4fc3b
- Update to 0.132
e4fc3b
  - libelf: Use loff_t instead of off64_t in libelf.h header. (#377241)
e4fc3b
  - eu-readelf: Fix handling of ET_REL files in archives.
e4fc3b
  - libcpu: Implement x86 and x86-64 disassembler.
e4fc3b
  - libasm: Add interface for disassembler.
e4fc3b
  - all programs: add debugging of branch prediction.
e4fc3b
  - libelf: new function elf_scnshndx.
e4fc3b
e4fc3b
* Sun Nov 11 2007 Roland McGrath <roland@redhat.com> - 0.131-1
e4fc3b
- Update to 0.131
e4fc3b
  - libdw: DW_FORM_ref_addr support; dwarf_formref entry point now deprecated;
e4fc3b
           bug fixes for oddly-formatted DWARF
e4fc3b
  - libdwfl: bug fixes in offline archive support, symbol table handling;
e4fc3b
             apply partial relocations for dwfl_module_address_section on ET_REL
e4fc3b
  - libebl: powerpc backend support for Altivec registers
e4fc3b
e4fc3b
* Wed Oct 17 2007 Roland McGrath <roland@redhat.com> - 0.130-3
e4fc3b
- Fix ET_REL support.
e4fc3b
- Fix odd indentation in eu-readelf -x output.
e4fc3b
e4fc3b
* Tue Oct 16 2007 Roland McGrath <roland@redhat.com> - 0.130-1
e4fc3b
- Update to 0.130
e4fc3b
  - eu-readelf -p option can take an argument like -x for one section
e4fc3b
  - eu-readelf --archive-index (or -c)
e4fc3b
  - eu-readelf -n improved output for core dumps
e4fc3b
  - eu-readelf: handle SHT_NOTE sections without requiring phdrs (#249467)
e4fc3b
  - eu-elflint: ditto
e4fc3b
  - eu-elflint: stricter checks on debug sections
e4fc3b
  - eu-unstrip: new options, --list (or -n), --relocate (or -R)
e4fc3b
  - libelf: new function elf_getdata_rawchunk, replaces gelf_rawchunk;
e4fc3b
            new functions gelf_getnote, gelf_getauxv, gelf_update_auxv
e4fc3b
  - libebl: backend improvements (#324031)
e4fc3b
  - libdwfl: build_id support, new functions for it
e4fc3b
  - libdwfl: dwfl_module_addrsym fixes (#268761, #268981)
e4fc3b
  - libdwfl offline archive support, new script eu-make-debug-archive
e4fc3b
e4fc3b
* Mon Aug 20 2007 Roland McGrath <roland@redhat.com> - 0.129-2
e4fc3b
- Fix false-positive eu-elflint failure on ppc -mbss-plt binaries.
e4fc3b
e4fc3b
* Tue Aug 14 2007 Roland McGrath <roland@redhat.com> - 0.129-1
e4fc3b
- Update to 0.129
e4fc3b
  - readelf: new options --hex-dump (or -x), --strings (or -p) (#250973)
e4fc3b
  - addr2line: new option --symbols (or -S)
e4fc3b
  - libdw: dwarf_getscopes fixes (#230235)
e4fc3b
  - libdwfl: dwfl_module_addrsym fixes (#249490)
e4fc3b
e4fc3b
* Fri Jun  8 2007 Roland McGrath <roland@redhat.com> - 0.128-2
e4fc3b
- Update to 0.128
e4fc3b
  - new program: unstrip
e4fc3b
  - elfcmp: new option --hash-inexact
e4fc3b
- Replace Conflicts: with Provides/Requires using -arch
e4fc3b
e4fc3b
* Wed Apr 18 2007 Roland McGrath <roland@redhat.com> - 0.127-1
e4fc3b
- Update to 0.127
e4fc3b
  - libdw: new function dwarf_getsrcdirs
e4fc3b
  - libdwfl: new functions dwfl_module_addrsym, dwfl_report_begin_add,
e4fc3b
             dwfl_module_address_section
e4fc3b
e4fc3b
* Mon Feb  5 2007 Roland McGrath <roland@redhat.com> - 0.126-1
e4fc3b
- Update to 0.126
e4fc3b
  - New program eu-ar.
e4fc3b
  - libdw: fix missing dwarf_getelf (#227206)
e4fc3b
  - libdwfl: dwfl_module_addrname for st_size=0 symbols (#227167, #227231)
e4fc3b
e4fc3b
* Wed Jan 10 2007 Roland McGrath <roland@redhat.com> - 0.125-3
e4fc3b
- Fix overeager warn_unused_result build failures.
e4fc3b
e4fc3b
* Wed Jan 10 2007 Roland McGrath <roland@redhat.com> - 0.125-1
e4fc3b
- Update to 0.125
e4fc3b
  - elflint: Compare DT_GNU_HASH tests.
e4fc3b
  - move archives into -static RPMs
e4fc3b
  - libelf, elflint: better support for core file handling
e4fc3b
  - Really fix libdwfl sorting of modules with 64-bit addresses (#220817).
e4fc3b
- Resolves: RHBZ #220817, RHBZ #213792
e4fc3b
e4fc3b
* Tue Oct 10 2006 Roland McGrath <roland@redhat.com> - 0.124-1
e4fc3b
- eu-strip -f: copy symtab into debuginfo file when relocs use it (#203000)
e4fc3b
- Update to 0.124
e4fc3b
  - libebl: fix ia64 reloc support (#206981)
e4fc3b
  - libebl: sparc backend support for return value location
e4fc3b
  - libebl, libdwfl: backend register name support extended with more info
e4fc3b
  - libelf, libdw: bug fixes for unaligned accesses on machines that care
e4fc3b
  - readelf, elflint: trivial bugs fixed
e4fc3b
e4fc3b
* Mon Aug 14 2006 Roland McGrath <roland@redhat.com> 0.123-1
e4fc3b
- Update to 0.123
e4fc3b
  - libebl: Backend build fixes, thanks to Stepan Kasal.
e4fc3b
  - libebl: ia64 backend support for register names, return value location
e4fc3b
  - libdwfl: Handle truncated linux kernel module section names.
e4fc3b
  - libdwfl: Look for linux kernel vmlinux files with .debug suffix.
e4fc3b
  - elflint: Fix checks to permit --hash-style=gnu format.
e4fc3b
e4fc3b
* Mon Jul 17 2006 Roland McGrath <roland@redhat.com> - 0.122-4
e4fc3b
- Fix warnings in elflint compilation.
e4fc3b
e4fc3b
* Wed Jul 12 2006 Roland McGrath <roland@redhat.com> - 0.122-3
e4fc3b
- Update to 0.122
e4fc3b
  - Fix libdwfl sorting of modules with 64-bit addresses (#198225).
e4fc3b
  - libebl: add function to test for relative relocation
e4fc3b
  - elflint: fix and extend DT_RELCOUNT/DT_RELACOUNT checks
e4fc3b
  - elflint, readelf: add support for DT_GNU_HASH
e4fc3b
  - libelf: add elf_gnu_hash
e4fc3b
  - elflint, readelf: add support for 64-bit SysV-style hash tables
e4fc3b
  - libdwfl: new functions dwfl_module_getsymtab, dwfl_module_getsym.
e4fc3b
e4fc3b
* Thu Jun 15 2006 Roland McGrath <roland@redhat.com> - 0.121-1
e4fc3b
- Update to 0.121
e4fc3b
  - libelf: bug fixes for rewriting existing files when using mmap (#187618).
e4fc3b
  - make all installed headers usable in C++ code (#193153).
e4fc3b
  - eu-readelf: better output format.
e4fc3b
  - eu-elflint: fix tests of dynamic section content.
e4fc3b
  - libdw, libdwfl: handle files without aranges info.
e4fc3b
e4fc3b
* Thu May 25 2006 Jeremy Katz <katzj@redhat.com> - 0.120-3
e4fc3b
- rebuild to pick up -devel deps
e4fc3b
e4fc3b
* Tue Apr  4 2006 Roland McGrath <roland@redhat.com> - 0.120-2
e4fc3b
- Update to 0.120
e4fc3b
  - License changed to GPL, with some exceptions for using
e4fc3b
    the libelf, libebl, libdw, and libdwfl library interfaces.
e4fc3b
    Red Hat elfutils is an included package of the Open Invention Network.
e4fc3b
  - dwarf.h updated for DWARF 3.0 final specification.
e4fc3b
  - libelf: Fix corruption in ELF_C_RDWR uses (#187618).
e4fc3b
  - libdwfl: New function dwfl_version; fixes for offline.
e4fc3b
e4fc3b
* Fri Feb 10 2006 Jesse Keating <jkeating@redhat.com> - 0.119-1.2.1
e4fc3b
- bump again for double-long bug on ppc(64)
e4fc3b
e4fc3b
* Tue Feb 07 2006 Jesse Keating <jkeating@redhat.com> - 0.119-1.2
e4fc3b
- rebuilt for new gcc4.1 snapshot and glibc changes
e4fc3b
e4fc3b
* Fri Jan 13 2006 Roland McGrath <roland@redhat.com> - 0.119-1
e4fc3b
- update to 0.119
e4fc3b
e4fc3b
* Fri Dec 09 2005 Jesse Keating <jkeating@redhat.com>
e4fc3b
- rebuilt
e4fc3b
e4fc3b
* Sun Nov 27 2005 Roland McGrath <roland@redhat.com> - 0.118-1
e4fc3b
- update to 0.118
e4fc3b
  - elflint: more tests.
e4fc3b
  - libdwfl: New function dwfl_module_register_names.
e4fc3b
  - libebl: New backend hook for register names.
e4fc3b
- Make sure -fexceptions is always in CFLAGS.
e4fc3b
e4fc3b
* Tue Nov 22 2005 Roland McGrath <roland@redhat.com> - 0.117-2
e4fc3b
- update to 0.117
e4fc3b
  - libdwfl: New function dwfl_module_return_value_location (#166118)
e4fc3b
  - libebl: Backend improvements for several CPUs
e4fc3b
e4fc3b
* Mon Oct 31 2005 Roland McGrath <roland@redhat.com> - 0.116-1
e4fc3b
- update to 0.116
e4fc3b
  - libdw fixes, API changes and additions
e4fc3b
  - libdwfl fixes (#169672)
e4fc3b
  - eu-strip/libelf fix to preserve setuid/setgid permission bits (#167745)
e4fc3b
e4fc3b
* Fri Sep  9 2005 Roland McGrath <roland@redhat.com> - 0.115-3
e4fc3b
- Update requires/conflicts for better biarch update behavior.
e4fc3b
e4fc3b
* Mon Sep  5 2005 Roland McGrath <roland@redhat.com> - 0.115-2
e4fc3b
- update to 0.115
e4fc3b
  - New program eu-strings.
e4fc3b
  - libdw: New function dwarf_getscopes_die.
e4fc3b
  - libelf: speed-ups of non-mmap reading.
e4fc3b
  - Implement --enable-gcov option for configure.
e4fc3b
e4fc3b
* Wed Aug 24 2005 Roland McGrath <roland@redhat.com> - 0.114-1
e4fc3b
- update to 0.114
e4fc3b
  - new program eu-ranlib
e4fc3b
  - libdw: new calls for inlines
e4fc3b
  - libdwfl: new calls for offline modules
e4fc3b
e4fc3b
* Sat Aug 13 2005 Roland McGrath <roland@redhat.com> - 0.113-2
e4fc3b
- update to 0.113
e4fc3b
  - elflint: relax a bit.  Allow version definitions for defined symbols
e4fc3b
    against DSO versions also for symbols in nobits sections.
e4fc3b
    Allow .rodata section to have STRINGS and MERGE flag set.
e4fc3b
  - strip: add some more compatibility with binutils.
e4fc3b
  - libdwfl: bug fixes.
e4fc3b
- Separate libdw et al into elfutils-libs subpackage.
e4fc3b
e4fc3b
* Sat Aug  6 2005 Roland McGrath <roland@redhat.com> - 0.112-1
e4fc3b
- update to 0.112
e4fc3b
  - elfcmp: some more relaxation.
e4fc3b
  - elflint: many more tests, especially regarding to symbol versioning.
e4fc3b
  - libelf: Add elfXX_offscn and gelf_offscn.
e4fc3b
  - libasm: asm_begin interface changes.
e4fc3b
  - libebl: Add three new interfaces to directly access machine, class,
e4fc3b
    and data encoding information.
e4fc3b
e4fc3b
* Fri Jul 29 2005 Roland McGrath <roland@redhat.com> - 0.111-2
e4fc3b
- update portability patch
e4fc3b
e4fc3b
* Thu Jul 28 2005 Roland McGrath <roland@redhat.com> - 0.111-1
e4fc3b
- update to 0.111
e4fc3b
  - libdwfl library now merged into libdw
e4fc3b
e4fc3b
* Sun Jul 24 2005 Roland McGrath <roland@redhat.com> - 0.110-1
e4fc3b
- update to 0.110
e4fc3b
e4fc3b
* Fri Jul 22 2005 Roland McGrath <roland@redhat.com> - 0.109-2
e4fc3b
- update to 0.109
e4fc3b
  - verify that libebl modules are from the same build
e4fc3b
  - new eu-elflint checks on copy relocations
e4fc3b
  - new program eu-elfcmp
e4fc3b
  - new experimental libdwfl library
e4fc3b
e4fc3b
* Thu Jun  9 2005 Roland McGrath <roland@redhat.com> - 0.108-5
e4fc3b
- robustification of eu-strip and eu-readelf
e4fc3b
e4fc3b
* Wed May 25 2005 Roland McGrath <roland@redhat.com> - 0.108-3
e4fc3b
- more robustification
e4fc3b
e4fc3b
* Mon May 16 2005 Roland McGrath <roland@redhat.com> - 0.108-2
e4fc3b
- robustification
e4fc3b
e4fc3b
* Mon May  9 2005 Roland McGrath <roland@redhat.com> - 0.108-1
e4fc3b
- update to 0.108
e4fc3b
  - merge strip fixes
e4fc3b
  - sort records in dwarf_getsrclines, fix dwarf_getsrc_die searching
e4fc3b
  - update elf.h from glibc
e4fc3b
e4fc3b
* Sun May  8 2005 Roland McGrath <roland@redhat.com> - 0.107-2
e4fc3b
- fix strip -f byte-swapping bug
e4fc3b
e4fc3b
* Sun May  8 2005 Roland McGrath <roland@redhat.com> - 0.107-1
e4fc3b
- update to 0.107
e4fc3b
  - readelf: improve DWARF output format
e4fc3b
  - elflint: -d option to support checking separate debuginfo files
e4fc3b
  - strip: fix ET_REL debuginfo files (#156341)
e4fc3b
e4fc3b
* Mon Apr  4 2005 Roland McGrath <roland@redhat.com> - 0.106-3
e4fc3b
- fix some bugs in new code, reenable make check
e4fc3b
e4fc3b
* Mon Apr  4 2005 Roland McGrath <roland@redhat.com> - 0.106-2
e4fc3b
- disable make check for most arches, for now
e4fc3b
e4fc3b
* Mon Apr  4 2005 Roland McGrath <roland@redhat.com> - 0.106-1
e4fc3b
- update to 0.106
e4fc3b
e4fc3b
* Mon Mar 28 2005 Roland McGrath <roland@redhat.com> - 0.104-2
e4fc3b
- update to 0.104
e4fc3b
e4fc3b
* Wed Mar 23 2005 Jakub Jelinek <jakub@redhat.com> 0.103-2
e4fc3b
- update to 0.103
e4fc3b
e4fc3b
* Wed Feb 16 2005 Jakub Jelinek <jakub@redhat.com> 0.101-2
e4fc3b
- update to 0.101.
e4fc3b
- use %%configure macro to get CFLAGS etc. right
e4fc3b
e4fc3b
* Sat Feb  5 2005 Jeff Johnson <jbj@redhat.com> 0.99-2
e4fc3b
- upgrade to 0.99.
e4fc3b
e4fc3b
* Sun Sep 26 2004 Jeff Johnson <jbj@redhat.com> 0.97-3
e4fc3b
- upgrade to 0.97.
e4fc3b
e4fc3b
* Tue Aug 17 2004 Jakub Jelinek <jakub@redhat.com> 0.95-5
e4fc3b
- upgrade to 0.96.
e4fc3b
e4fc3b
* Mon Jul  5 2004 Jakub Jelinek <jakub@redhat.com> 0.95-4
e4fc3b
- rebuilt with GCC 3.4.x, workaround VLA + alloca mixing
e4fc3b
  warning
e4fc3b
e4fc3b
* Tue Jun 15 2004 Elliot Lee <sopwith@redhat.com>
e4fc3b
- rebuilt
e4fc3b
e4fc3b
* Fri Apr  2 2004 Jeff Johnson <jbj@redhat.com> 0.95-2
e4fc3b
- upgrade to 0.95.
e4fc3b
e4fc3b
* Tue Mar 02 2004 Elliot Lee <sopwith@redhat.com>
e4fc3b
- rebuilt
e4fc3b
e4fc3b
* Fri Feb 13 2004 Elliot Lee <sopwith@redhat.com>
e4fc3b
- rebuilt
e4fc3b
e4fc3b
* Fri Jan 16 2004 Jakub Jelinek <jakub@redhat.com> 0.94-1
e4fc3b
- upgrade to 0.94
e4fc3b
e4fc3b
* Fri Jan 16 2004 Jakub Jelinek <jakub@redhat.com> 0.93-1
e4fc3b
- upgrade to 0.93
e4fc3b
e4fc3b
* Thu Jan  8 2004 Jakub Jelinek <jakub@redhat.com> 0.92-1
e4fc3b
- full version
e4fc3b
- macroized spec file for GPL or OSL builds
e4fc3b
- include only libelf under GPL plus wrapper scripts
e4fc3b
e4fc3b
* Wed Jan  7 2004 Jakub Jelinek <jakub@redhat.com> 0.91-2
e4fc3b
- macroized spec file for GPL or OSL builds
e4fc3b
e4fc3b
* Wed Jan  7 2004 Ulrich Drepper <drepper@redhat.com>
e4fc3b
- split elfutils-devel into two packages.
e4fc3b
e4fc3b
* Wed Jan  7 2004 Jakub Jelinek <jakub@redhat.com> 0.91-1
e4fc3b
- include only libelf under GPL plus wrapper scripts
e4fc3b
e4fc3b
* Tue Dec 23 2003 Jeff Johnson <jbj@redhat.com> 0.89-3
e4fc3b
- readelf, not readline, in %%description (#111214).
e4fc3b
e4fc3b
* Fri Sep 26 2003 Bill Nottingham <notting@redhat.com> 0.89-1
e4fc3b
- update to 0.89 (fix eu-strip)
e4fc3b
e4fc3b
* Tue Sep 23 2003 Jakub Jelinek <jakub@redhat.com> 0.86-3
e4fc3b
- update to 0.86 (fix eu-strip on s390x/alpha)
e4fc3b
- libebl is an archive now; remove references to DSO
e4fc3b
e4fc3b
* Mon Jul 14 2003 Jeff Johnson <jbj@redhat.com> 0.84-3
e4fc3b
- upgrade to 0.84 (readelf/elflint improvements, rawhide bugs fixed).
e4fc3b
e4fc3b
* Fri Jul 11 2003 Jeff Johnson <jbj@redhat.com> 0.83-3
e4fc3b
- upgrade to 0.83 (fix invalid ELf handle on *.so strip, more).
e4fc3b
e4fc3b
* Wed Jul  9 2003 Jeff Johnson <jbj@redhat.com> 0.82-3
e4fc3b
- upgrade to 0.82 (strip tests fixed on big-endian).
e4fc3b
e4fc3b
* Tue Jul  8 2003 Jeff Johnson <jbj@redhat.com> 0.81-3
e4fc3b
- upgrade to 0.81 (strip excludes unused symtable entries, test borked).
e4fc3b
e4fc3b
* Thu Jun 26 2003 Jeff Johnson <jbj@redhat.com> 0.80-3
e4fc3b
- upgrade to 0.80 (debugedit changes for kernel in progress).
e4fc3b
e4fc3b
* Wed Jun 04 2003 Elliot Lee <sopwith@redhat.com>
e4fc3b
- rebuilt
e4fc3b
e4fc3b
* Wed May 21 2003 Jeff Johnson <jbj@redhat.com> 0.79-2
e4fc3b
- upgrade to 0.79 (correct formats for size_t, more of libdw "works").
e4fc3b
e4fc3b
* Mon May 19 2003 Jeff Johnson <jbj@redhat.com> 0.78-2
e4fc3b
- upgrade to 0.78 (libdwarf bugfix, libdw additions).
e4fc3b
e4fc3b
* Mon Feb 24 2003 Elliot Lee <sopwith@redhat.com>
e4fc3b
- debuginfo rebuild
e4fc3b
e4fc3b
* Thu Feb 20 2003 Jeff Johnson <jbj@redhat.com> 0.76-2
e4fc3b
- use the correct way of identifying the section via the sh_info link.
e4fc3b
e4fc3b
* Sat Feb 15 2003 Jakub Jelinek <jakub@redhat.com> 0.75-2
e4fc3b
- update to 0.75 (eu-strip -g fix)
e4fc3b
e4fc3b
* Tue Feb 11 2003 Jakub Jelinek <jakub@redhat.com> 0.74-2
e4fc3b
- update to 0.74 (fix for writing with some non-dirty sections)
e4fc3b
e4fc3b
* Thu Feb  6 2003 Jeff Johnson <jbj@redhat.com> 0.73-3
e4fc3b
- another -0.73 update (with sparc fixes).
e4fc3b
- do "make check" in %%check, not %%install, section.
e4fc3b
e4fc3b
* Mon Jan 27 2003 Jeff Johnson <jbj@redhat.com> 0.73-2
e4fc3b
- update to 0.73 (with s390 fixes).
e4fc3b
e4fc3b
* Wed Jan 22 2003 Tim Powers <timp@redhat.com>
e4fc3b
- rebuilt
e4fc3b
e4fc3b
* Wed Jan 22 2003 Jakub Jelinek <jakub@redhat.com> 0.72-4
e4fc3b
- fix arguments to gelf_getsymshndx and elf_getshstrndx
e4fc3b
- fix other warnings
e4fc3b
- reenable checks on s390x
e4fc3b
e4fc3b
* Sat Jan 11 2003 Karsten Hopp <karsten@redhat.de> 0.72-3
e4fc3b
- temporarily disable checks on s390x, until someone has
e4fc3b
  time to look at it
e4fc3b
e4fc3b
* Thu Dec 12 2002 Jakub Jelinek <jakub@redhat.com> 0.72-2
e4fc3b
- update to 0.72
e4fc3b
e4fc3b
* Wed Dec 11 2002 Jakub Jelinek <jakub@redhat.com> 0.71-2
e4fc3b
- update to 0.71
e4fc3b
e4fc3b
* Wed Dec 11 2002 Jeff Johnson <jbj@redhat.com> 0.69-4
e4fc3b
- update to 0.69.
e4fc3b
- add "make check" and segfault avoidance patch.
e4fc3b
- elfutils-libelf needs to run ldconfig.
e4fc3b
e4fc3b
* Tue Dec 10 2002 Jeff Johnson <jbj@redhat.com> 0.68-2
e4fc3b
- update to 0.68.
e4fc3b
e4fc3b
* Fri Dec  6 2002 Jeff Johnson <jbj@redhat.com> 0.67-2
e4fc3b
- update to 0.67.
e4fc3b
e4fc3b
* Tue Dec  3 2002 Jeff Johnson <jbj@redhat.com> 0.65-2
e4fc3b
- update to 0.65.
e4fc3b
e4fc3b
* Mon Dec  2 2002 Jeff Johnson <jbj@redhat.com> 0.64-2
e4fc3b
- update to 0.64.
e4fc3b
e4fc3b
* Sun Dec 1 2002 Ulrich Drepper <drepper@redhat.com> 0.64
e4fc3b
- split packages further into elfutils-libelf
e4fc3b
e4fc3b
* Sat Nov 30 2002 Jeff Johnson <jbj@redhat.com> 0.63-2
e4fc3b
- update to 0.63.
e4fc3b
e4fc3b
* Fri Nov 29 2002 Ulrich Drepper <drepper@redhat.com> 0.62
e4fc3b
- Adjust for dropping libtool
e4fc3b
e4fc3b
* Sun Nov 24 2002 Jeff Johnson <jbj@redhat.com> 0.59-2
e4fc3b
- update to 0.59
e4fc3b
e4fc3b
* Thu Nov 14 2002 Jeff Johnson <jbj@redhat.com> 0.56-2
e4fc3b
- update to 0.56
e4fc3b
e4fc3b
* Thu Nov  7 2002 Jeff Johnson <jbj@redhat.com> 0.54-2
e4fc3b
- update to 0.54
e4fc3b
e4fc3b
* Sun Oct 27 2002 Jeff Johnson <jbj@redhat.com> 0.53-2
e4fc3b
- update to 0.53
e4fc3b
- drop x86_64 hack, ICE fixed in gcc-3.2-11.
e4fc3b
e4fc3b
* Sat Oct 26 2002 Jeff Johnson <jbj@redhat.com> 0.52-3
e4fc3b
- get beehive to punch a rhpkg generated package.
e4fc3b
e4fc3b
* Wed Oct 23 2002 Jeff Johnson <jbj@redhat.com> 0.52-2
e4fc3b
- build in 8.0.1.
e4fc3b
- x86_64: avoid gcc-3.2 ICE on x86_64 for now.
e4fc3b
e4fc3b
* Tue Oct 22 2002 Ulrich Drepper <drepper@redhat.com> 0.52
e4fc3b
- Add libelf-devel to conflicts for elfutils-devel
e4fc3b
e4fc3b
* Mon Oct 21 2002 Ulrich Drepper <drepper@redhat.com> 0.50
e4fc3b
- Split into runtime and devel package
e4fc3b
e4fc3b
* Fri Oct 18 2002 Ulrich Drepper <drepper@redhat.com> 0.49
e4fc3b
- integrate into official sources
e4fc3b
e4fc3b
* Wed Oct 16 2002 Jeff Johnson <jbj@redhat.com> 0.46-1
e4fc3b
- Swaddle.