Blame SPECS/elfutils.spec

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