Blame SPECS/elfutils.spec

5b3f45
%{?scl:%{?scl_package:%scl_package elfutils}}
5b3f45
5b3f45
Name: %{?scl_prefix}elfutils
c27d6c
Summary: A collection of utilities and DSOs to handle ELF files and DWARF data
c27d6c
Version: 0.168
c27d6c
%global baserelease 3
c27d6c
URL: http://elfutils.org/
c27d6c
%global source_url ftp://sourceware.org/pub/elfutils/%{version}/
5b3f45
License: GPLv3+ and (GPLv2+ or LGPLv3+)
5b3f45
Group: Development/Tools
5b3f45
5b3f45
Release: %{baserelease}%{?dist}
5b3f45
5b3f45
%global provide_yama_scope	0
5b3f45
5b3f45
%if 0%{?fedora}
5b3f45
%global provide_yama_scope	(%fedora >= 22)
5b3f45
%endif
5b3f45
5b3f45
%global depsuffix %{?_isa}%{!?_isa:-%{_arch}}
5b3f45
5b3f45
Source: %{?source_url}elfutils-%{version}.tar.bz2
5b3f45
5b3f45
# Libraries in Developer Toolset are linked in statically to allow
5b3f45
# compiled binaries to run even when DTS is not installed.
5b3f45
# So we provide linker scripts for all libraries.
5b3f45
Source2: libelf.so
5b3f45
Source3: libdw.so
5b3f45
Source4: libasm.so
5b3f45
Source5: libelf.a
5b3f45
Source6: libdw.a
5b3f45
Source7: libasm.a
5b3f45
5b3f45
# Patches
5b3f45
5b3f45
# DTS specific patches.
c27d6c
Patch100: elfutils-0.168-dts.patch
c27d6c
Patch101: elfutils-dts-libs-version.patch
5b3f45
5b3f45
Requires: %{?scl_prefix}elfutils-libelf%{depsuffix} = %{version}-%{release}
5b3f45
Requires: %{?scl_prefix}elfutils-libs%{depsuffix} = %{version}-%{release}
5b3f45
5b3f45
BuildRequires: autoconf automake
5b3f45
BuildRequires: gettext
5b3f45
BuildRequires: bison >= 1.875
5b3f45
BuildRequires: flex >= 2.5.4a
5b3f45
BuildRequires: bzip2
5b3f45
BuildRequires: gcc >= 4.4
5b3f45
5b3f45
BuildRequires: zlib-devel >= 1.2.2.3
5b3f45
BuildRequires: bzip2-devel
5b3f45
BuildRequires: xz-devel
5b3f45
5b3f45
%{?scl:Requires:%scl_runtime}
5b3f45
5b3f45
%global _gnu %{nil}
5b3f45
%global _program_prefix eu-
5b3f45
c27d6c
# The lib[64]/elfutils directory contains the private ebl backend
c27d6c
# libraries. They must not be exposed as global provides. We don't
c27d6c
# need to filter the requires since they are only loaded with dlopen.
c27d6c
%if 0%{?fedora} >= 15 || 0%{?rhel} >= 7
c27d6c
%global __provides_exclude ^libebl_.*\\.so.*$
c27d6c
%endif
c27d6c
5b3f45
%description
5b3f45
Elfutils is a collection of utilities, including stack (to show
5b3f45
backtraces), nm (for listing symbols from object files), size
5b3f45
(for listing the section sizes of an object or archive file),
5b3f45
strip (for discarding symbols), readelf (to see the raw ELF file
5b3f45
structures), elflint (to check for well-formed ELF files) and
5b3f45
elfcompress (to compress or decompress ELF sections).
5b3f45
5b3f45
5b3f45
%package libs
5b3f45
Summary: Libraries to handle compiled objects
5b3f45
Group: Development/Tools
5b3f45
License: GPLv2+ or LGPLv3+
5b3f45
%if 0%{!?_isa:1}
5b3f45
Provides: %{?scl_prefix}elfutils-libs%{depsuffix} = %{version}-%{release}
5b3f45
%endif
5b3f45
Requires: %{?scl_prefix}elfutils-libelf%{depsuffix} = %{version}-%{release}
5b3f45
%if %{provide_yama_scope}
5b3f45
Requires: default-yama-scope
5b3f45
%endif
5b3f45
5b3f45
%description libs
5b3f45
The elfutils-libs package contains libraries which implement DWARF, ELF,
5b3f45
and machine-specific ELF handling.  These libraries are used by the programs
5b3f45
in the elfutils package.  The elfutils-devel package enables building
5b3f45
other programs using these libraries.
5b3f45
5b3f45
%package devel
5b3f45
Summary: Development libraries to handle compiled objects
5b3f45
Group: Development/Tools
5b3f45
License: GPLv2+ or LGPLv3+
5b3f45
%if 0%{!?_isa:1}
5b3f45
Provides: %{?scl_prefix}elfutils-devel%{depsuffix} = %{version}-%{release}
5b3f45
%endif
5b3f45
Requires: %{?scl_prefix}elfutils-libelf-devel%{depsuffix} = %{version}-%{release}
5b3f45
Requires: zlib-devel >= 1.2.2.3
5b3f45
Requires: bzip2-devel
5b3f45
Requires: xz-devel
5b3f45
5b3f45
%description devel
5b3f45
The elfutils-devel package contains the libraries to create
5b3f45
applications for handling compiled objects.  libebl provides some
5b3f45
higher-level ELF access functionality.  libdw provides access to
5b3f45
the DWARF debugging information.  libasm provides a programmable
5b3f45
assembler interface.
5b3f45
5b3f45
%package libelf
5b3f45
Summary: Library to read and write ELF files
5b3f45
Group: Development/Tools
5b3f45
License: GPLv2+ or LGPLv3+
5b3f45
%if 0%{!?_isa:1}
5b3f45
Provides: %{?scl_prefix}elfutils-libelf%{depsuffix} = %{version}-%{release}
5b3f45
%endif
5b3f45
5b3f45
%description libelf
5b3f45
The elfutils-libelf package provides a DSO which allows reading and
5b3f45
writing ELF files on a high level.  Third party programs depend on
5b3f45
this package to read internals of ELF files.  The programs of the
5b3f45
elfutils package use it also to generate new ELF files.
5b3f45
5b3f45
%package libelf-devel
5b3f45
Summary: Development support for libelf
5b3f45
Group: Development/Tools
5b3f45
License: GPLv2+ or LGPLv3+
5b3f45
%if 0%{!?_isa:1}
5b3f45
Provides: %{?scl_prefix}elfutils-libelf-devel%{depsuffix} = %{version}-%{release}
5b3f45
%endif
5b3f45
5b3f45
%description libelf-devel
5b3f45
The elfutils-libelf-devel package contains the libraries to create
5b3f45
applications for handling compiled objects.  libelf allows you to
5b3f45
access the internals of the ELF object file format, so you can see the
5b3f45
different sections of an ELF file.
5b3f45
5b3f45
%if %{provide_yama_scope}
5b3f45
%package default-yama-scope
5b3f45
Summary: Default yama attach scope sysctl setting
5b3f45
Group: Development/Tools
5b3f45
License: GPLv2+ or LGPLv3+
5b3f45
Provides: default-yama-scope
5b3f45
BuildArch: noarch
5b3f45
# For the sysctl_apply macro
5b3f45
BuildRequires: systemd >= 215
5b3f45
5b3f45
%description default-yama-scope
5b3f45
Yama sysctl setting to enable default attach scope settings
5b3f45
enabling programs to use ptrace attach, access to
5b3f45
/proc/PID/{mem,personality,stack,syscall}, and the syscalls
5b3f45
process_vm_readv and process_vm_writev which are used for
5b3f45
interprocess services, communication and introspection
5b3f45
(like synchronisation, signaling, debugging, tracing and
5b3f45
profiling) of processes.
5b3f45
%endif
5b3f45
5b3f45
%prep
5b3f45
%setup -q -n elfutils-%{version}
5b3f45
5b3f45
# Apply patches
5b3f45
5b3f45
# DTS specific patches
5b3f45
%patch100 -p1 -b .dts
c27d6c
%patch101 -p1 -b .versions
5b3f45
5b3f45
autoreconf
5b3f45
5b3f45
find . -name \*.sh ! -perm -0100 -print | xargs chmod +x
5b3f45
5b3f45
%build
5b3f45
# Remove -Wall from default flags.  The makefiles enable enough warnings
5b3f45
# themselves, and they use -Werror.  Appending -Wall defeats the cases where
5b3f45
# the makefiles disable some specific warnings for specific code.
5b3f45
# But add -Wformat explicitly for use with -Werror=format-security which
5b3f45
# doesn't work without -Wformat (enabled by -Wall).
5b3f45
RPM_OPT_FLAGS="${RPM_OPT_FLAGS/-Wall/}"
5b3f45
RPM_OPT_FLAGS="${RPM_OPT_FLAGS} -Wformat"
5b3f45
5b3f45
trap 'cat config.log' EXIT
5b3f45
%configure CFLAGS="$RPM_OPT_FLAGS -fexceptions"
5b3f45
trap '' EXIT
5b3f45
5b3f45
# Due to static bits, our dependencies are more complex than in plain
5b3f45
# elfutils.  We need to build things in parts.
5b3f45
make %{?_smp_mflags} -C lib V=1
5b3f45
make %{?_smp_mflags} -C libdwfl V=1
5b3f45
make %{?_smp_mflags} -C libdwelf V=1
5b3f45
make %{?_smp_mflags} -C libdw libdw_pic.a libdw.a V=1
5b3f45
make %{?_smp_mflags} -C libcpu V=1
5b3f45
make %{?_smp_mflags} -C libebl V=1
5b3f45
make %{?_smp_mflags} -C backends libebl_static_pic.a V=1
5b3f45
make %{?_smp_mflags} -C libelf V=1
5b3f45
make %{?_smp_mflags} -C libdw V=1
5b3f45
make %{?_smp_mflags} V=1
5b3f45
5b3f45
%install
5b3f45
rm -rf ${RPM_BUILD_ROOT}
5b3f45
make -s install DESTDIR=${RPM_BUILD_ROOT}
5b3f45
5b3f45
chmod +x ${RPM_BUILD_ROOT}%{_prefix}/%{_lib}/lib*.so*
5b3f45
chmod +x ${RPM_BUILD_ROOT}%{_prefix}/%{_lib}/elfutils/lib*.so*
5b3f45
5b3f45
ls -ls $RPM_BUILD_ROOT%{_libdir}/lib{elf,dw,asm}.so
5b3f45
rm -f $RPM_BUILD_ROOT%{_libdir}/lib{elf,dw,asm}.so
5b3f45
5b3f45
# Rename static archives to *.ar, so that brp-strip-static-archive
5b3f45
# doesn't find them.  We still want debuginfo for other files, so we
5b3f45
# can't simply %%define __strip /bin/true.  We do want -lelf -static
5b3f45
# to find libelf.a though, so we provide a linker script that brings
5b3f45
# in the .ar files.
5b3f45
find $RPM_BUILD_ROOT%{_libdir}/ -name '*.a' -exec mv -v {} {}r \;
5b3f45
5b3f45
install -p -m 644 %{SOURCE2} %{SOURCE3} %{SOURCE4} \
5b3f45
	%{SOURCE5} %{SOURCE6} %{SOURCE7} $RPM_BUILD_ROOT%{_libdir}/
5b3f45
5b3f45
# XXX Nuke unpackaged files
5b3f45
(cd ${RPM_BUILD_ROOT}
5b3f45
 rm -f .%{_bindir}/eu-ld
5b3f45
)
5b3f45
5b3f45
%find_lang elfutils
5b3f45
5b3f45
%if %{provide_yama_scope}
5b3f45
install -Dm0644 config/10-default-yama-scope.conf ${RPM_BUILD_ROOT}%{_sysctldir}/10-default-yama-scope.conf
5b3f45
%endif
5b3f45
5b3f45
%check
5b3f45
make -s %{?_smp_mflags} check || (cat tests/test-suite.log; false)
5b3f45
5b3f45
%clean
5b3f45
rm -rf ${RPM_BUILD_ROOT}
5b3f45
5b3f45
%post libs -p /sbin/ldconfig
5b3f45
5b3f45
%postun libs -p /sbin/ldconfig
5b3f45
5b3f45
%post libelf -p /sbin/ldconfig
5b3f45
5b3f45
%postun libelf -p /sbin/ldconfig
5b3f45
5b3f45
%if %{provide_yama_scope}
5b3f45
%post default-yama-scope
5b3f45
%sysctl_apply 10-default-yama-scope.conf
5b3f45
%endif
5b3f45
5b3f45
%files
5b3f45
%defattr(-,root,root)
5b3f45
%{!?_licensedir:%global license %%doc}
5b3f45
%license COPYING COPYING-GPLV2 COPYING-LGPLV3
5b3f45
%doc README TODO CONTRIBUTING
5b3f45
%{_bindir}/eu-addr2line
5b3f45
%{_bindir}/eu-ar
5b3f45
%{_bindir}/eu-elfcmp
5b3f45
%{_bindir}/eu-elflint
5b3f45
%{_bindir}/eu-findtextrel
5b3f45
%{_bindir}/eu-nm
5b3f45
%{_bindir}/eu-objdump
5b3f45
%{_bindir}/eu-ranlib
5b3f45
%{_bindir}/eu-readelf
5b3f45
%{_bindir}/eu-size
5b3f45
%{_bindir}/eu-stack
5b3f45
%{_bindir}/eu-strings
5b3f45
%{_bindir}/eu-strip
5b3f45
%{_bindir}/eu-unstrip
5b3f45
%{_bindir}/eu-make-debug-archive
5b3f45
%{_bindir}/eu-elfcompress
5b3f45
5b3f45
%files libs
5b3f45
%defattr(-,root,root)
5b3f45
%{!?_licensedir:%global license %%doc}
5b3f45
%license COPYING-GPLV2 COPYING-LGPLV3
5b3f45
%{_libdir}/libasm-%{version}.so
5b3f45
%{_libdir}/libasm.so.*
5b3f45
%{_libdir}/libdw-%{version}.so
5b3f45
%{_libdir}/libdw.so.*
5b3f45
%dir %{_libdir}/elfutils
5b3f45
%{_libdir}/elfutils/lib*.so
5b3f45
5b3f45
%files devel
5b3f45
%defattr(-,root,root)
5b3f45
%{_includedir}/dwarf.h
5b3f45
%dir %{_includedir}/elfutils
5b3f45
%{_includedir}/elfutils/elf-knowledge.h
5b3f45
%{_includedir}/elfutils/known-dwarf.h
5b3f45
%{_includedir}/elfutils/libasm.h
5b3f45
%{_includedir}/elfutils/libebl.h
5b3f45
%{_includedir}/elfutils/libdw.h
5b3f45
%{_includedir}/elfutils/libdwfl.h
5b3f45
%{_includedir}/elfutils/libdwelf.h
5b3f45
%{_includedir}/elfutils/version.h
5b3f45
%{_libdir}/libebl.ar
5b3f45
%{_libdir}/libasm.so
5b3f45
%{_libdir}/libasm.a
5b3f45
%{_libdir}/libasm.ar
5b3f45
%{_libdir}/libdw.so
5b3f45
%{_libdir}/libdw.a
5b3f45
%{_libdir}/libdw.ar
5b3f45
%{_libdir}/libebl_static_pic.ar
5b3f45
%{_libdir}/libcpu_static_pic.ar
5b3f45
%{_libdir}/pkgconfig/libdw.pc
5b3f45
5b3f45
%files -f elfutils.lang libelf
5b3f45
%defattr(-,root,root)
5b3f45
%{!?_licensedir:%global license %%doc}
5b3f45
%license COPYING-GPLV2 COPYING-LGPLV3
5b3f45
%{_libdir}/libelf-%{version}.so
5b3f45
%{_libdir}/libelf.so.*
5b3f45
5b3f45
%files libelf-devel
5b3f45
%defattr(-,root,root)
5b3f45
%{_includedir}/libelf.h
5b3f45
%{_includedir}/gelf.h
5b3f45
%{_includedir}/nlist.h
5b3f45
%{_libdir}/libelf.so
5b3f45
%{_libdir}/libelf.a
5b3f45
%{_libdir}/libelf.ar
5b3f45
%{_libdir}/pkgconfig/libelf.pc
5b3f45
5b3f45
%if %{provide_yama_scope}
5b3f45
%files default-yama-scope
5b3f45
%defattr(-,root,root)
5b3f45
%config(noreplace) %{_sysctldir}/10-default-yama-scope.conf
5b3f45
%endif
5b3f45
5b3f45
%changelog
c27d6c
* Mon Jan 16 2017 Mark Wielaard <mark@klomp.org> - 0.168-3
c27d6c
- Adjust internal library so names (#1412305).
c27d6c
- Never use old, deprecated, filter_provides_in, it really is too broken.
c27d6c
c27d6c
* Fri Jan 13 2017 Mark Wielaard <mark@klomp.org> - 0.168-2
c27d6c
- Filter out libraries from provides (#1412305).
c27d6c
c27d6c
* Wed Jan 11 2017 Mark Wielaard <mjw@redhat.com> - 0.168-1
c27d6c
- New upstream release from new project home https://sourceware.org/elfutils/
c27d6c
  Resolves: Rebase elfutils to 0.168 bugfix release (#1412299)
c27d6c
5b3f45
* Fri Sep 16 2016 Mark Wielaard <mjw@redhat.com> - 0.167-2
5b3f45
- Make sure everything is compiled -fPIC.
5b3f45
5b3f45
* Thu Sep 15 2016 Mark Wielaard <mjw@redhat.com> - 0.167-1
5b3f45
- Update to elfutils 0.167 (#1366182,#1356263)
5b3f45
  Drop upstreamed patch: elfutils-0.166-elfcmp-comp-gcc6.patch
5b3f45
5b3f45
* Thu Apr 14 2016 Mark Wielaard <mjw@redhat.com> - 0.166-2
5b3f45
- Add elfutils-0.166-elfcmp-comp-gcc6.patch
5b3f45
5b3f45
* Thu Mar 31 2016 Mark Wielaard <mjw@redhat.com> - 0.166-1
5b3f45
- Update to elfutils 0.166 (#1322412)
5b3f45
  Drop upstreamed patches:
5b3f45
  - elfutils-0.165-elf-libelf.patch
5b3f45
  - elfutils-0.165-nobitsalign-strip.patch
5b3f45
5b3f45
* Wed Feb 24 2016 Mark Wielaard <mjw@redhat.com> - 0.165-7
5b3f45
- Rebuilt against new buildroot.
5b3f45
5b3f45
* Thu Feb 04 2016 Mark Wielaard <mjw@redhat.com> - 0.165-4
5b3f45
- Add elfutils-0.165-nobitsalign-strip.patch (#1304870)
5b3f45
5b3f45
* Fri Jan 29 2016 Mark Wielaard <mjw@redhat.com> - 0.165-3
5b3f45
- Add INPUT(-lz) to libelf.so linker script.
5b3f45
5b3f45
* Fri Jan 15 2016 Mark Wielaard <mjw@redhat.com> - 0.165-2
5b3f45
- Update to 0.165.
5b3f45
5b3f45
* Mon Aug 03 2015 Mark Wielaard <mjw@redhat.com> - 0.163-2
5b3f45
- Add elfutils-0.163-unstrip-shf_info_link.patch (#1246390)
5b3f45
5b3f45
* Mon Jul 06 2015 Mark Wielaard <mjw@redhat.com> - 0.163-1
5b3f45
- Update to 0.163.
5b3f45
5b3f45
* Fri Dec 19 2014 Mark Wielaard <mjw@redhat.com> - 0.161-1
5b3f45
- Update to 0.161.
5b3f45
- Merge no-dlopen and visibility into one dts patch.
5b3f45
5b3f45
* Wed May 21 2014 Mark Wielaard <mjw@redhat.com> - 0.159-2
5b3f45
- Update elfutils-0.159-visibility.patch to include -fpic for libdwelf.
5b3f45
5b3f45
* Tue May 20 2014 Mark Wielaard <mjw@redhat.com> - 0.159-1
5b3f45
- Update to 0.159.
5b3f45
5b3f45
* Wed Nov  6 2013 Petr Machata <pmachata@redhat.com> - 0.157-2
5b3f45
- Fix parsing of process maps that contain certain non-file entries.
5b3f45
5b3f45
* Thu Oct 17 2013 Petr Machata <pmachata@redhat.com> - 0.157-1
5b3f45
- Update to 0.157 from Fedora 20
5b3f45
5b3f45
* Thu Jul 11 2013 Mark Wielaard <mjw@redhat.com> - 0.155-7
5b3f45
- Don't blow up stack in dwarf_getsrclines with lots of lines.
5b3f45
  (elfutils-0.155-dwarf_getsrclines.patch)
5b3f45
5b3f45
* Fri May  3 2013 Petr Machata <pmachata@redhat.com> - 0.155-6
5b3f45
- Avoid buffer underrun in elfutils-0.155-dwarf_line.patch
5b3f45
5b3f45
* Tue Apr  2 2013 Petr Machata <pmachata@redhat.com> - 0.155-4
5b3f45
- Bump for rebuild.
5b3f45
5b3f45
* Mon Mar 25 2013 Petr Machata <pmachata@redhat.com> - 0.155-3
5b3f45
- Make sure the highest address for the CU is marked as end_sequence.
5b3f45
  (elfutils-0.155-dwarf_line.patch)
5b3f45
5b3f45
* Mon Mar 25 2013 Petr Machata <pmachata@redhat.com> - 0.155-2
5b3f45
- The bzip2-devel, zlib-devel and xz-devel dependencies should be
5b3f45
  unconditional.  These are all shipped in all currently supported
5b3f45
  OS's.
5b3f45
5b3f45
* Wed Jan 23 2013 Petr Machata <pmachata@redhat.com> - 0.155-1
5b3f45
- Update to 0.155-2 from Fedora 19
5b3f45
5b3f45
* Mon Oct 15 2012 Petr Machata <pmachata@redhat.com> - 0.154-6
5b3f45
- Add dependence of elfutils-devel on bzip2-devel, zlib-devel and
5b3f45
  xz-devel
5b3f45
5b3f45
* Sun Oct 14 2012 Petr Machata <pmachata@redhat.com> - 0.154-5
5b3f45
- Drop dependence between elfutils-devel, elfutils-libelf-devel and
5b3f45
  elfutils-libs.
5b3f45
- Ship static archives as *.ar, so that the debuginfo is preserved.
5b3f45
  Adjust linker scripts.
5b3f45
5b3f45
* Fri Aug 17 2012 Petr Machata <pmachata@redhat.com> - 0.154-4
5b3f45
- Avoid using dlopen in EBL
5b3f45
- Drop elfutils-libelf-devel-static, elfutils-devel-static
5b3f45
- Static archives are now packaged directly in devel packages
5b3f45
- Convert DSO symlinks into linker scripts that bring in static
5b3f45
  archives
5b3f45
- Build installed static archives with -fpic and -fvisibility=hidden
5b3f45
5b3f45
* Tue Aug 14 2012 Petr Machata <pmachata@redhat.com> - 0.154-3
5b3f45
- Fill in missning spec changelog entries
5b3f45
- Add missing SCL macros in Provides and Requires entries
5b3f45
5b3f45
* Fri Jul 06 2012 Matt Newsome <mnewsome@redhat.com> - 0.154-2
5b3f45
- Rebuild
5b3f45
5b3f45
* Tue Jul 03 2012 Petr Machata <pmachata@redhat.com> - 0.154-1.1
5b3f45
- Package for SCL
5b3f45
5b3f45
* Mon Jul 02 2012 Karsten Hopp <karsten@redhat.com> 0.154-1.1
5b3f45
- disable unstrip-n check for now (835877)
5b3f45
5b3f45
* Fri Jun 22 2012 Mark Wielaard <mjw@redhat.com> - 0.154-1
5b3f45
- Update to 0.154
5b3f45
  - elflint doesn't recognize SHF_INFO_LINK on relocation sections (#807823)
5b3f45
  - Update license to GPLv3+ and (GPLv2+ or LGPLv3+)
5b3f45
  - Remove elfutils-0.153-dwfl_segment_report_module.patch
5b3f45
- Add elfutils-0.154-binutils-pr-ld-13621.patch
5b3f45
5b3f45
* Mon Apr 02 2012 Mark Wielaard <mark@klomp.org> - 0.153-2
5b3f45
- Fix for eu-unstrip emits garbage for librt.so.1 (#805447)
5b3f45
5b3f45
* Thu Feb 23 2012 Mark Wielaard <mjw@redhat.com> - 0.153-1
5b3f45
- Update to 0.153
5b3f45
  - New --disable-werror for portability.
5b3f45
  - Support for .zdebug sections (#679777)
5b3f45
  - type_units and DW_AT_GNU_odr_signature support (#679815)
5b3f45
  - low level support DW_OP_GNU_entry_value and DW_TAG_GNU_call_site (#688090)
5b3f45
  - FTBFS on rawhide with gcc 4.7 (#783506)
5b3f45
    - Remove gcc-4.7 patch
5b3f45
5b3f45
* Fri Jan 20 2012 Mark Wielaard <mjw@redhat.com> - 0.152-3
5b3f45
- Fixes for gcc-4.7 based on upstream commit 32899a (#783506).
5b3f45
5b3f45
* Tue Feb 15 2011 Roland McGrath <roland@redhat.com> - 0.152-1
5b3f45
- Update to 0.152
5b3f45
  - Various build and warning nits fixed for newest GCC and Autoconf.
5b3f45
  - libdwfl: Yet another prelink-related fix for another regression. (#674465)
5b3f45
  - eu-elfcmp: New flag --ignore-build-id to ignore differing build ID bits.
5b3f45
  - eu-elfcmp: New flag -l/--verbose to print all differences.
5b3f45
5b3f45
* Tue Feb 08 2011 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 0.151-2
5b3f45
- Rebuilt for https://fedoraproject.org/wiki/Fedora_15_Mass_Rebuild
5b3f45
5b3f45
* Wed Jan 12 2011 Roland McGrath <roland@redhat.com> - 0.151-1
5b3f45
- Update to 0.151
5b3f45
  - libdwfl: Fix for more prelink cases with separate debug file.
5b3f45
  - eu-strip: New flag --strip-sections to remove section headers entirely.
5b3f45
5b3f45
* Thu Dec  2 2010 Roland McGrath <roland@redhat.com> - 0.150-2
5b3f45
- libdwfl: Remove bogus assert. (#658268)
5b3f45
5b3f45
* Tue Nov 23 2010 Roland McGrath <roland@redhat.com> - 0.150-1
5b3f45
- Update to 0.150
5b3f45
  - libdw: Fix for handling huge .debug_aranges section. (#638432)
5b3f45
  - libdwfl: Fix for handling prelinked DSO with separate debug file. (#652857)
5b3f45
  - findtextrel: Fix diagnostics to work with usual section ordering.
5b3f45
5b3f45
* Wed Sep 29 2010 jkeating - 0.149-2
5b3f45
- Rebuilt for gcc bug 634757
5b3f45
5b3f45
* Mon Sep 13 2010 Roland McGrath <roland@redhat.com> - 0.149-1
5b3f45
- Update to 0.149
5b3f45
  - libdw: Decode new DW_OP_GNU_implicit_pointer operation;
5b3f45
           new function dwarf_getlocation_implicit_pointer.
5b3f45
  - libdwfl: New function dwfl_dwarf_line.
5b3f45
  - eu-addr2line: New flag -F/--flags to print more DWARF line info details.
5b3f45
  - eu-readelf: better .debug_loc processing (#627729)
5b3f45
  - eu-strings: Fix non-mmap file reading. (#609468)
5b3f45
  - eu-strip: -g recognizes .gdb_index as a debugging section. (#631997)
5b3f45
5b3f45
* Mon Jun 28 2010 Roland McGrath <roland@redhat.com> - 0.148-1
5b3f45
- Update to 0.148
5b3f45
  - libdw: Accept DWARF 4 format: new functions dwarf_next_unit,
5b3f45
           dwarf_offdie_types.
5b3f45
           New functions dwarf_lineisa, dwarf_linediscriminator,
5b3f45
           dwarf_lineop_index.
5b3f45
  - libdwfl: Fixes in core-file handling, support cores from PIEs. (#588818)
5b3f45
             When working from build IDs, don't open a named file
5b3f45
             that mismatches.
5b3f45
  - readelf: Handle DWARF 4 formats.
5b3f45
5b3f45
* Mon May  3 2010 Roland McGrath <roland@redhat.com> - 0.147-1
5b3f45
- Update to 0.147
5b3f45
5b3f45
* Wed Apr 21 2010 Roland McGrath <roland@redhat.com> - 0.146-1
5b3f45
- Update to 0.146
5b3f45
  - libdwfl: New function dwfl_core_file_report.
5b3f45
  - libelf: Fix handling of phdrs in truncated file. (#577310)
5b3f45
  - libdwfl: Fix infinite loop handling clobbered link_map. (#576379)
5b3f45
- Package translations.
5b3f45
5b3f45
* Tue Feb 23 2010 Roland McGrath <roland@redhat.com> - 0.145-1
5b3f45
- Update to 0.145
5b3f45
  - Fix build with --disable-dependency-tracking. (#564646)
5b3f45
  - Fix build with most recent glibc headers.
5b3f45
  - libdw: Fix CFI decoding. (#563528)
5b3f45
  - libdwfl: Fix address bias returned by CFI accessors. (#563528)
5b3f45
             Fix core file module layout identification. (#559836)
5b3f45
  - readelf: Fix CFI decoding.
5b3f45
5b3f45
* Fri Jan 15 2010 Roland McGrath <roland@redhat.com> - 0.144-2
5b3f45
- Fix sloppy #include's breaking build with F-13 glibc.
5b3f45
5b3f45
* Thu Jan 14 2010 Roland McGrath <roland@redhat.com> - 0.144-1
5b3f45
- Update to 0.144
5b3f45
  - libdw: New function dwarf_aggregate_size for computing (constant) type
5b3f45
           sizes, including array_type cases with nontrivial calculation.
5b3f45
  - readelf: Don't give errors for missing info under -a.
5b3f45
             Handle Linux "VMCOREINFO" notes under -n.
5b3f45
- Resolves: RHBZ #527004, RHBZ #530704, RHBZ #550858
5b3f45
5b3f45
* Mon Sep 21 2009 Roland McGrath <roland@redhat.com> - 0.143-1
5b3f45
- Update to 0.143
5b3f45
  - libdw: Various convenience functions for individual attributes now use
5b3f45
           dwarf_attr_integrate to look up indirect inherited attributes.
5b3f45
           Location expression handling now supports DW_OP_implicit_value.
5b3f45
  - libdwfl: Support automatic decompression of files in XZ format,
5b3f45
             and of Linux kernel images made with bzip2 or LZMA
5b3f45
             (as well as gzip).
5b3f45
5b3f45
* Tue Jul 28 2009 Roland McGrath <roland@redhat.com> - 0.142-1
5b3f45
- Update to 0.142
5b3f45
  - libelf: Bug fix in filling gaps between sections. (#512840)
5b3f45
  - libelf: Add elf_getshdrnum alias for elf_getshnum and elf_getshdrstrndx
5b3f45
            alias for elf_getshstrndx and deprecate original names.
5b3f45
  - libebl, elflint: Add support for STB_GNU_UNIQUE. (#511436)
5b3f45
  - readelf: Add -N option, speeds up DWARF printing
5b3f45
             without address->name lookups. (#505347)
5b3f45
  - libdw: Add support for decoding DWARF CFI into location description form.
5b3f45
           Handle some new DWARF 3 expression operations previously omitted.
5b3f45
           Basic handling of some new encodings slated for DWARF 4.
5b3f45
5b3f45
* Thu Apr 23 2009 Roland McGrath <roland@redhat.com> - 0.141-1
5b3f45
- Update to 0.141
5b3f45
  - libebl: sparc backend fixes (#490585)
5b3f45
            some more arm backend support
5b3f45
  - libdwfl: fix dwfl_module_build_id for prelinked DSO case (#489439)
5b3f45
             fixes in core file support (#494858)
5b3f45
             dwfl_module_getsym interface improved for non-address symbols
5b3f45
  - eu-strip: fix infinite loop on strange inputs with -f
5b3f45
  - eu-addr2line: take -j/--section=NAME option for binutils compatibility
5b3f45
                  (same effect as '(NAME)0x123' syntax already supported)
5b3f45
- Resolves: RHBZ #495213, RHBZ #465872, RHBZ #470055, RHBZ #484623
5b3f45
5b3f45
* Tue Feb 24 2009 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 0.140-2
5b3f45
- Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild
5b3f45
5b3f45
* Sun Feb 15 2009 Roland McGrath <roland@redhat.com> - 0.140-1
5b3f45
- Update to 0.140
5b3f45
  - libelf: Fix regression in creation of section header. (#484946)
5b3f45
5b3f45
* Fri Jan 23 2009 Roland McGrath <roland@redhat.com> - 0.139-1
5b3f45
- Update to 0.139
5b3f45
  - libcpu: Add Intel SSE4 disassembler support
5b3f45
  - readelf: Implement call frame information and exception handling dumping.
5b3f45
             Add -e option.  Enable it implicitly for -a.
5b3f45
  - elflint: Check PT_GNU_EH_FRAME program header entry.
5b3f45
  - libdwfl: Support automatic gzip/bzip2 decompression of ELF files. (#472136)
5b3f45
5b3f45
* Thu Jan  1 2009 Roland McGrath <roland@redhat.com> - 0.138-2
5b3f45
- Fix libelf regression.
5b3f45
5b3f45
* Wed Dec 31 2008 Roland McGrath <roland@redhat.com> - 0.138-1
5b3f45
- Update to 0.138
5b3f45
  - Install <elfutils/version.h> header file for applications to use in
5b3f45
    source version compatibility checks.
5b3f45
  - libebl: backend fixes for i386 TLS relocs; backend support for NT_386_IOPERM
5b3f45
  - libcpu: disassembler fixes (#469739)
5b3f45
  - libdwfl: bug fixes (#465878)
5b3f45
  - libelf: bug fixes
5b3f45
  - eu-nm: bug fixes for handling corrupt input files (#476136)
5b3f45
5b3f45
* Wed Oct  1 2008 Roland McGrath <roland@redhat.com> - 0.137-3
5b3f45
- fix libdwfl regression (#462689)
5b3f45
5b3f45
* Thu Aug 28 2008 Roland McGrath <roland@redhat.com> - 0.137-2
5b3f45
- Update to 0.137
5b3f45
  - libdwfl: bug fixes; new segment interfaces;
5b3f45
             all the libdwfl-based tools now support --core=COREFILE option
5b3f45
- Resolves: RHBZ #325021, RHBZ #447416
5b3f45
5b3f45
* Mon Jul  7 2008 Tom "spot" Callaway <tcallawa@redhat.com> - 0.135-2
5b3f45
- fix conditional comparison
5b3f45
5b3f45
* Mon May 12 2008 Roland McGrath <roland@redhat.com> - 0.135-1
5b3f45
- Update to 0.135
5b3f45
  - libdwfl: bug fixes
5b3f45
  - eu-strip: changed handling of ET_REL files wrt symbol tables and relocs
5b3f45
5b3f45
* Wed Apr  9 2008 Roland McGrath <roland@redhat.com> - 0.134-1
5b3f45
- Update to 0.134
5b3f45
  - elflint: backend improvements for sparc, alpha (#204170)
5b3f45
  - libdwfl, libelf: bug fixes (#439344, #438867, #438263, #438190)
5b3f45
- Remove Conflicts: libelf-devel from elfutils-libelf-devel. (#435742)
5b3f45
5b3f45
* Sun Mar  2 2008 Roland McGrath <roland@redhat.com> - 0.133-2
5b3f45
- Update to 0.133
5b3f45
  - readelf, elflint, libebl: SHT_GNU_ATTRIBUTE section handling (readelf -A)
5b3f45
  - readelf: core note handling for NT_386_TLS, NT_PPC_SPE, Alpha NT_AUXV
5b3f45
  - libdwfl: bug fixes and optimization in relocation handling
5b3f45
  - elfcmp: bug fix for non-allocated section handling
5b3f45
  - ld: implement newer features of binutils linker.
5b3f45
- Install eu-objdump and libasm, now has limited disassembler support.
5b3f45
5b3f45
* Mon Jan 21 2008 Roland McGrath <roland@redhat.com> - 0.132-3
5b3f45
- Update to 0.132
5b3f45
  - libelf: Use loff_t instead of off64_t in libelf.h header. (#377241)
5b3f45
  - eu-readelf: Fix handling of ET_REL files in archives.
5b3f45
  - libcpu: Implement x86 and x86-64 disassembler.
5b3f45
  - libasm: Add interface for disassembler.
5b3f45
  - all programs: add debugging of branch prediction.
5b3f45
  - libelf: new function elf_scnshndx.
5b3f45
5b3f45
* Sun Nov 11 2007 Roland McGrath <roland@redhat.com> - 0.131-1
5b3f45
- Update to 0.131
5b3f45
  - libdw: DW_FORM_ref_addr support; dwarf_formref entry point now deprecated;
5b3f45
           bug fixes for oddly-formatted DWARF
5b3f45
  - libdwfl: bug fixes in offline archive support, symbol table handling;
5b3f45
             apply partial relocations for dwfl_module_address_section on ET_REL
5b3f45
  - libebl: powerpc backend support for Altivec registers
5b3f45
5b3f45
* Wed Oct 17 2007 Roland McGrath <roland@redhat.com> - 0.130-3
5b3f45
- Fix ET_REL support.
5b3f45
- Fix odd indentation in eu-readelf -x output.
5b3f45
5b3f45
* Tue Oct 16 2007 Roland McGrath <roland@redhat.com> - 0.130-1
5b3f45
- Update to 0.130
5b3f45
  - eu-readelf -p option can take an argument like -x for one section
5b3f45
  - eu-readelf --archive-index (or -c)
5b3f45
  - eu-readelf -n improved output for core dumps
5b3f45
  - eu-readelf: handle SHT_NOTE sections without requiring phdrs (#249467)
5b3f45
  - eu-elflint: ditto
5b3f45
  - eu-elflint: stricter checks on debug sections
5b3f45
  - eu-unstrip: new options, --list (or -n), --relocate (or -R)
5b3f45
  - libelf: new function elf_getdata_rawchunk, replaces gelf_rawchunk;
5b3f45
            new functions gelf_getnote, gelf_getauxv, gelf_update_auxv
5b3f45
  - libebl: backend improvements (#324031)
5b3f45
  - libdwfl: build_id support, new functions for it
5b3f45
  - libdwfl: dwfl_module_addrsym fixes (#268761, #268981)
5b3f45
  - libdwfl offline archive support, new script eu-make-debug-archive
5b3f45
5b3f45
* Mon Aug 20 2007 Roland McGrath <roland@redhat.com> - 0.129-2
5b3f45
- Fix false-positive eu-elflint failure on ppc -mbss-plt binaries.
5b3f45
5b3f45
* Tue Aug 14 2007 Roland McGrath <roland@redhat.com> - 0.129-1
5b3f45
- Update to 0.129
5b3f45
  - readelf: new options --hex-dump (or -x), --strings (or -p) (#250973)
5b3f45
  - addr2line: new option --symbols (or -S)
5b3f45
  - libdw: dwarf_getscopes fixes (#230235)
5b3f45
  - libdwfl: dwfl_module_addrsym fixes (#249490)
5b3f45
5b3f45
* Fri Jun  8 2007 Roland McGrath <roland@redhat.com> - 0.128-2
5b3f45
- Update to 0.128
5b3f45
  - new program: unstrip
5b3f45
  - elfcmp: new option --hash-inexact
5b3f45
- Replace Conflicts: with Provides/Requires using -arch
5b3f45
5b3f45
* Wed Apr 18 2007 Roland McGrath <roland@redhat.com> - 0.127-1
5b3f45
- Update to 0.127
5b3f45
  - libdw: new function dwarf_getsrcdirs
5b3f45
  - libdwfl: new functions dwfl_module_addrsym, dwfl_report_begin_add,
5b3f45
             dwfl_module_address_section
5b3f45
5b3f45
* Mon Feb  5 2007 Roland McGrath <roland@redhat.com> - 0.126-1
5b3f45
- Update to 0.126
5b3f45
  - New program eu-ar.
5b3f45
  - libdw: fix missing dwarf_getelf (#227206)
5b3f45
  - libdwfl: dwfl_module_addrname for st_size=0 symbols (#227167, #227231)
5b3f45
5b3f45
* Wed Jan 10 2007 Roland McGrath <roland@redhat.com> - 0.125-3
5b3f45
- Fix overeager warn_unused_result build failures.
5b3f45
5b3f45
* Wed Jan 10 2007 Roland McGrath <roland@redhat.com> - 0.125-1
5b3f45
- Update to 0.125
5b3f45
  - elflint: Compare DT_GNU_HASH tests.
5b3f45
  - move archives into -static RPMs
5b3f45
  - libelf, elflint: better support for core file handling
5b3f45
  - Really fix libdwfl sorting of modules with 64-bit addresses (#220817).
5b3f45
- Resolves: RHBZ #220817, RHBZ #213792
5b3f45
5b3f45
* Tue Oct 10 2006 Roland McGrath <roland@redhat.com> - 0.124-1
5b3f45
- eu-strip -f: copy symtab into debuginfo file when relocs use it (#203000)
5b3f45
- Update to 0.124
5b3f45
  - libebl: fix ia64 reloc support (#206981)
5b3f45
  - libebl: sparc backend support for return value location
5b3f45
  - libebl, libdwfl: backend register name support extended with more info
5b3f45
  - libelf, libdw: bug fixes for unaligned accesses on machines that care
5b3f45
  - readelf, elflint: trivial bugs fixed
5b3f45
5b3f45
* Mon Aug 14 2006 Roland McGrath <roland@redhat.com> 0.123-1
5b3f45
- Update to 0.123
5b3f45
  - libebl: Backend build fixes, thanks to Stepan Kasal.
5b3f45
  - libebl: ia64 backend support for register names, return value location
5b3f45
  - libdwfl: Handle truncated linux kernel module section names.
5b3f45
  - libdwfl: Look for linux kernel vmlinux files with .debug suffix.
5b3f45
  - elflint: Fix checks to permit --hash-style=gnu format.
5b3f45
5b3f45
* Mon Jul 17 2006 Roland McGrath <roland@redhat.com> - 0.122-4
5b3f45
- Fix warnings in elflint compilation.
5b3f45
5b3f45
* Wed Jul 12 2006 Roland McGrath <roland@redhat.com> - 0.122-3
5b3f45
- Update to 0.122
5b3f45
  - Fix libdwfl sorting of modules with 64-bit addresses (#198225).
5b3f45
  - libebl: add function to test for relative relocation
5b3f45
  - elflint: fix and extend DT_RELCOUNT/DT_RELACOUNT checks
5b3f45
  - elflint, readelf: add support for DT_GNU_HASH
5b3f45
  - libelf: add elf_gnu_hash
5b3f45
  - elflint, readelf: add support for 64-bit SysV-style hash tables
5b3f45
  - libdwfl: new functions dwfl_module_getsymtab, dwfl_module_getsym.
5b3f45
5b3f45
* Thu Jun 15 2006 Roland McGrath <roland@redhat.com> - 0.121-1
5b3f45
- Update to 0.121
5b3f45
  - libelf: bug fixes for rewriting existing files when using mmap (#187618).
5b3f45
  - make all installed headers usable in C++ code (#193153).
5b3f45
  - eu-readelf: better output format.
5b3f45
  - eu-elflint: fix tests of dynamic section content.
5b3f45
  - libdw, libdwfl: handle files without aranges info.
5b3f45
5b3f45
* Thu May 25 2006 Jeremy Katz <katzj@redhat.com> - 0.120-3
5b3f45
- rebuild to pick up -devel deps
5b3f45
5b3f45
* Tue Apr  4 2006 Roland McGrath <roland@redhat.com> - 0.120-2
5b3f45
- Update to 0.120
5b3f45
  - License changed to GPL, with some exceptions for using
5b3f45
    the libelf, libebl, libdw, and libdwfl library interfaces.
5b3f45
    Red Hat elfutils is an included package of the Open Invention Network.
5b3f45
  - dwarf.h updated for DWARF 3.0 final specification.
5b3f45
  - libelf: Fix corruption in ELF_C_RDWR uses (#187618).
5b3f45
  - libdwfl: New function dwfl_version; fixes for offline.
5b3f45
5b3f45
* Fri Feb 10 2006 Jesse Keating <jkeating@redhat.com> - 0.119-1.2.1
5b3f45
- bump again for double-long bug on ppc(64)
5b3f45
5b3f45
* Tue Feb 07 2006 Jesse Keating <jkeating@redhat.com> - 0.119-1.2
5b3f45
- rebuilt for new gcc4.1 snapshot and glibc changes
5b3f45
5b3f45
* Fri Jan 13 2006 Roland McGrath <roland@redhat.com> - 0.119-1
5b3f45
- update to 0.119
5b3f45
5b3f45
* Fri Dec 09 2005 Jesse Keating <jkeating@redhat.com>
5b3f45
- rebuilt
5b3f45
5b3f45
* Sun Nov 27 2005 Roland McGrath <roland@redhat.com> - 0.118-1
5b3f45
- update to 0.118
5b3f45
  - elflint: more tests.
5b3f45
  - libdwfl: New function dwfl_module_register_names.
5b3f45
  - libebl: New backend hook for register names.
5b3f45
- Make sure -fexceptions is always in CFLAGS.
5b3f45
5b3f45
* Tue Nov 22 2005 Roland McGrath <roland@redhat.com> - 0.117-2
5b3f45
- update to 0.117
5b3f45
  - libdwfl: New function dwfl_module_return_value_location (#166118)
5b3f45
  - libebl: Backend improvements for several CPUs
5b3f45
5b3f45
* Mon Oct 31 2005 Roland McGrath <roland@redhat.com> - 0.116-1
5b3f45
- update to 0.116
5b3f45
  - libdw fixes, API changes and additions
5b3f45
  - libdwfl fixes (#169672)
5b3f45
  - eu-strip/libelf fix to preserve setuid/setgid permission bits (#167745)
5b3f45
5b3f45
* Fri Sep  9 2005 Roland McGrath <roland@redhat.com> - 0.115-3
5b3f45
- Update requires/conflicts for better biarch update behavior.
5b3f45
5b3f45
* Mon Sep  5 2005 Roland McGrath <roland@redhat.com> - 0.115-2
5b3f45
- update to 0.115
5b3f45
  - New program eu-strings.
5b3f45
  - libdw: New function dwarf_getscopes_die.
5b3f45
  - libelf: speed-ups of non-mmap reading.
5b3f45
  - Implement --enable-gcov option for configure.
5b3f45
5b3f45
* Wed Aug 24 2005 Roland McGrath <roland@redhat.com> - 0.114-1
5b3f45
- update to 0.114
5b3f45
  - new program eu-ranlib
5b3f45
  - libdw: new calls for inlines
5b3f45
  - libdwfl: new calls for offline modules
5b3f45
5b3f45
* Sat Aug 13 2005 Roland McGrath <roland@redhat.com> - 0.113-2
5b3f45
- update to 0.113
5b3f45
  - elflint: relax a bit.  Allow version definitions for defined symbols
5b3f45
    against DSO versions also for symbols in nobits sections.
5b3f45
    Allow .rodata section to have STRINGS and MERGE flag set.
5b3f45
  - strip: add some more compatibility with binutils.
5b3f45
  - libdwfl: bug fixes.
5b3f45
- Separate libdw et al into elfutils-libs subpackage.
5b3f45
5b3f45
* Sat Aug  6 2005 Roland McGrath <roland@redhat.com> - 0.112-1
5b3f45
- update to 0.112
5b3f45
  - elfcmp: some more relaxation.
5b3f45
  - elflint: many more tests, especially regarding to symbol versioning.
5b3f45
  - libelf: Add elfXX_offscn and gelf_offscn.
5b3f45
  - libasm: asm_begin interface changes.
5b3f45
  - libebl: Add three new interfaces to directly access machine, class,
5b3f45
    and data encoding information.
5b3f45
5b3f45
* Fri Jul 29 2005 Roland McGrath <roland@redhat.com> - 0.111-2
5b3f45
- update portability patch
5b3f45
5b3f45
* Thu Jul 28 2005 Roland McGrath <roland@redhat.com> - 0.111-1
5b3f45
- update to 0.111
5b3f45
  - libdwfl library now merged into libdw
5b3f45
5b3f45
* Sun Jul 24 2005 Roland McGrath <roland@redhat.com> - 0.110-1
5b3f45
- update to 0.110
5b3f45
5b3f45
* Fri Jul 22 2005 Roland McGrath <roland@redhat.com> - 0.109-2
5b3f45
- update to 0.109
5b3f45
  - verify that libebl modules are from the same build
5b3f45
  - new eu-elflint checks on copy relocations
5b3f45
  - new program eu-elfcmp
5b3f45
  - new experimental libdwfl library
5b3f45
5b3f45
* Thu Jun  9 2005 Roland McGrath <roland@redhat.com> - 0.108-5
5b3f45
- robustification of eu-strip and eu-readelf
5b3f45
5b3f45
* Wed May 25 2005 Roland McGrath <roland@redhat.com> - 0.108-3
5b3f45
- more robustification
5b3f45
5b3f45
* Mon May 16 2005 Roland McGrath <roland@redhat.com> - 0.108-2
5b3f45
- robustification
5b3f45
5b3f45
* Mon May  9 2005 Roland McGrath <roland@redhat.com> - 0.108-1
5b3f45
- update to 0.108
5b3f45
  - merge strip fixes
5b3f45
  - sort records in dwarf_getsrclines, fix dwarf_getsrc_die searching
5b3f45
  - update elf.h from glibc
5b3f45
5b3f45
* Sun May  8 2005 Roland McGrath <roland@redhat.com> - 0.107-2
5b3f45
- fix strip -f byte-swapping bug
5b3f45
5b3f45
* Sun May  8 2005 Roland McGrath <roland@redhat.com> - 0.107-1
5b3f45
- update to 0.107
5b3f45
  - readelf: improve DWARF output format
5b3f45
  - elflint: -d option to support checking separate debuginfo files
5b3f45
  - strip: fix ET_REL debuginfo files (#156341)
5b3f45
5b3f45
* Mon Apr  4 2005 Roland McGrath <roland@redhat.com> - 0.106-3
5b3f45
- fix some bugs in new code, reenable make check
5b3f45
5b3f45
* Mon Apr  4 2005 Roland McGrath <roland@redhat.com> - 0.106-2
5b3f45
- disable make check for most arches, for now
5b3f45
5b3f45
* Mon Apr  4 2005 Roland McGrath <roland@redhat.com> - 0.106-1
5b3f45
- update to 0.106
5b3f45
5b3f45
* Mon Mar 28 2005 Roland McGrath <roland@redhat.com> - 0.104-2
5b3f45
- update to 0.104
5b3f45
5b3f45
* Wed Mar 23 2005 Jakub Jelinek <jakub@redhat.com> 0.103-2
5b3f45
- update to 0.103
5b3f45
5b3f45
* Wed Feb 16 2005 Jakub Jelinek <jakub@redhat.com> 0.101-2
5b3f45
- update to 0.101.
5b3f45
- use %%configure macro to get CFLAGS etc. right
5b3f45
5b3f45
* Sat Feb  5 2005 Jeff Johnson <jbj@redhat.com> 0.99-2
5b3f45
- upgrade to 0.99.
5b3f45
5b3f45
* Sun Sep 26 2004 Jeff Johnson <jbj@redhat.com> 0.97-3
5b3f45
- upgrade to 0.97.
5b3f45
5b3f45
* Tue Aug 17 2004 Jakub Jelinek <jakub@redhat.com> 0.95-5
5b3f45
- upgrade to 0.96.
5b3f45
5b3f45
* Mon Jul  5 2004 Jakub Jelinek <jakub@redhat.com> 0.95-4
5b3f45
- rebuilt with GCC 3.4.x, workaround VLA + alloca mixing
5b3f45
  warning
5b3f45
5b3f45
* Tue Jun 15 2004 Elliot Lee <sopwith@redhat.com>
5b3f45
- rebuilt
5b3f45
5b3f45
* Fri Apr  2 2004 Jeff Johnson <jbj@redhat.com> 0.95-2
5b3f45
- upgrade to 0.95.
5b3f45
5b3f45
* Tue Mar 02 2004 Elliot Lee <sopwith@redhat.com>
5b3f45
- rebuilt
5b3f45
5b3f45
* Fri Feb 13 2004 Elliot Lee <sopwith@redhat.com>
5b3f45
- rebuilt
5b3f45
5b3f45
* Fri Jan 16 2004 Jakub Jelinek <jakub@redhat.com> 0.94-1
5b3f45
- upgrade to 0.94
5b3f45
5b3f45
* Fri Jan 16 2004 Jakub Jelinek <jakub@redhat.com> 0.93-1
5b3f45
- upgrade to 0.93
5b3f45
5b3f45
* Thu Jan  8 2004 Jakub Jelinek <jakub@redhat.com> 0.92-1
5b3f45
- full version
5b3f45
- macroized spec file for GPL or OSL builds
5b3f45
- include only libelf under GPL plus wrapper scripts
5b3f45
5b3f45
* Wed Jan  7 2004 Jakub Jelinek <jakub@redhat.com> 0.91-2
5b3f45
- macroized spec file for GPL or OSL builds
5b3f45
5b3f45
* Wed Jan  7 2004 Ulrich Drepper <drepper@redhat.com>
5b3f45
- split elfutils-devel into two packages.
5b3f45
5b3f45
* Wed Jan  7 2004 Jakub Jelinek <jakub@redhat.com> 0.91-1
5b3f45
- include only libelf under GPL plus wrapper scripts
5b3f45
5b3f45
* Tue Dec 23 2003 Jeff Johnson <jbj@redhat.com> 0.89-3
5b3f45
- readelf, not readline, in %%description (#111214).
5b3f45
5b3f45
* Fri Sep 26 2003 Bill Nottingham <notting@redhat.com> 0.89-1
5b3f45
- update to 0.89 (fix eu-strip)
5b3f45
5b3f45
* Tue Sep 23 2003 Jakub Jelinek <jakub@redhat.com> 0.86-3
5b3f45
- update to 0.86 (fix eu-strip on s390x/alpha)
5b3f45
- libebl is an archive now; remove references to DSO
5b3f45
5b3f45
* Mon Jul 14 2003 Jeff Johnson <jbj@redhat.com> 0.84-3
5b3f45
- upgrade to 0.84 (readelf/elflint improvements, rawhide bugs fixed).
5b3f45
5b3f45
* Fri Jul 11 2003 Jeff Johnson <jbj@redhat.com> 0.83-3
5b3f45
- upgrade to 0.83 (fix invalid ELf handle on *.so strip, more).
5b3f45
5b3f45
* Wed Jul  9 2003 Jeff Johnson <jbj@redhat.com> 0.82-3
5b3f45
- upgrade to 0.82 (strip tests fixed on big-endian).
5b3f45
5b3f45
* Tue Jul  8 2003 Jeff Johnson <jbj@redhat.com> 0.81-3
5b3f45
- upgrade to 0.81 (strip excludes unused symtable entries, test borked).
5b3f45
5b3f45
* Thu Jun 26 2003 Jeff Johnson <jbj@redhat.com> 0.80-3
5b3f45
- upgrade to 0.80 (debugedit changes for kernel in progress).
5b3f45
5b3f45
* Wed Jun 04 2003 Elliot Lee <sopwith@redhat.com>
5b3f45
- rebuilt
5b3f45
5b3f45
* Wed May 21 2003 Jeff Johnson <jbj@redhat.com> 0.79-2
5b3f45
- upgrade to 0.79 (correct formats for size_t, more of libdw "works").
5b3f45
5b3f45
* Mon May 19 2003 Jeff Johnson <jbj@redhat.com> 0.78-2
5b3f45
- upgrade to 0.78 (libdwarf bugfix, libdw additions).
5b3f45
5b3f45
* Mon Feb 24 2003 Elliot Lee <sopwith@redhat.com>
5b3f45
- debuginfo rebuild
5b3f45
5b3f45
* Thu Feb 20 2003 Jeff Johnson <jbj@redhat.com> 0.76-2
5b3f45
- use the correct way of identifying the section via the sh_info link.
5b3f45
5b3f45
* Sat Feb 15 2003 Jakub Jelinek <jakub@redhat.com> 0.75-2
5b3f45
- update to 0.75 (eu-strip -g fix)
5b3f45
5b3f45
* Tue Feb 11 2003 Jakub Jelinek <jakub@redhat.com> 0.74-2
5b3f45
- update to 0.74 (fix for writing with some non-dirty sections)
5b3f45
5b3f45
* Thu Feb  6 2003 Jeff Johnson <jbj@redhat.com> 0.73-3
5b3f45
- another -0.73 update (with sparc fixes).
5b3f45
- do "make check" in %%check, not %%install, section.
5b3f45
5b3f45
* Mon Jan 27 2003 Jeff Johnson <jbj@redhat.com> 0.73-2
5b3f45
- update to 0.73 (with s390 fixes).
5b3f45
5b3f45
* Wed Jan 22 2003 Tim Powers <timp@redhat.com>
5b3f45
- rebuilt
5b3f45
5b3f45
* Wed Jan 22 2003 Jakub Jelinek <jakub@redhat.com> 0.72-4
5b3f45
- fix arguments to gelf_getsymshndx and elf_getshstrndx
5b3f45
- fix other warnings
5b3f45
- reenable checks on s390x
5b3f45
5b3f45
* Sat Jan 11 2003 Karsten Hopp <karsten@redhat.de> 0.72-3
5b3f45
- temporarily disable checks on s390x, until someone has
5b3f45
  time to look at it
5b3f45
5b3f45
* Thu Dec 12 2002 Jakub Jelinek <jakub@redhat.com> 0.72-2
5b3f45
- update to 0.72
5b3f45
5b3f45
* Wed Dec 11 2002 Jakub Jelinek <jakub@redhat.com> 0.71-2
5b3f45
- update to 0.71
5b3f45
5b3f45
* Wed Dec 11 2002 Jeff Johnson <jbj@redhat.com> 0.69-4
5b3f45
- update to 0.69.
5b3f45
- add "make check" and segfault avoidance patch.
5b3f45
- elfutils-libelf needs to run ldconfig.
5b3f45
5b3f45
* Tue Dec 10 2002 Jeff Johnson <jbj@redhat.com> 0.68-2
5b3f45
- update to 0.68.
5b3f45
5b3f45
* Fri Dec  6 2002 Jeff Johnson <jbj@redhat.com> 0.67-2
5b3f45
- update to 0.67.
5b3f45
5b3f45
* Tue Dec  3 2002 Jeff Johnson <jbj@redhat.com> 0.65-2
5b3f45
- update to 0.65.
5b3f45
5b3f45
* Mon Dec  2 2002 Jeff Johnson <jbj@redhat.com> 0.64-2
5b3f45
- update to 0.64.
5b3f45
5b3f45
* Sun Dec 1 2002 Ulrich Drepper <drepper@redhat.com> 0.64
5b3f45
- split packages further into elfutils-libelf
5b3f45
5b3f45
* Sat Nov 30 2002 Jeff Johnson <jbj@redhat.com> 0.63-2
5b3f45
- update to 0.63.
5b3f45
5b3f45
* Fri Nov 29 2002 Ulrich Drepper <drepper@redhat.com> 0.62
5b3f45
- Adjust for dropping libtool
5b3f45
5b3f45
* Sun Nov 24 2002 Jeff Johnson <jbj@redhat.com> 0.59-2
5b3f45
- update to 0.59
5b3f45
5b3f45
* Thu Nov 14 2002 Jeff Johnson <jbj@redhat.com> 0.56-2
5b3f45
- update to 0.56
5b3f45
5b3f45
* Thu Nov  7 2002 Jeff Johnson <jbj@redhat.com> 0.54-2
5b3f45
- update to 0.54
5b3f45
5b3f45
* Sun Oct 27 2002 Jeff Johnson <jbj@redhat.com> 0.53-2
5b3f45
- update to 0.53
5b3f45
- drop x86_64 hack, ICE fixed in gcc-3.2-11.
5b3f45
5b3f45
* Sat Oct 26 2002 Jeff Johnson <jbj@redhat.com> 0.52-3
5b3f45
- get beehive to punch a rhpkg generated package.
5b3f45
5b3f45
* Wed Oct 23 2002 Jeff Johnson <jbj@redhat.com> 0.52-2
5b3f45
- build in 8.0.1.
5b3f45
- x86_64: avoid gcc-3.2 ICE on x86_64 for now.
5b3f45
5b3f45
* Tue Oct 22 2002 Ulrich Drepper <drepper@redhat.com> 0.52
5b3f45
- Add libelf-devel to conflicts for elfutils-devel
5b3f45
5b3f45
* Mon Oct 21 2002 Ulrich Drepper <drepper@redhat.com> 0.50
5b3f45
- Split into runtime and devel package
5b3f45
5b3f45
* Fri Oct 18 2002 Ulrich Drepper <drepper@redhat.com> 0.49
5b3f45
- integrate into official sources
5b3f45
5b3f45
* Wed Oct 16 2002 Jeff Johnson <jbj@redhat.com> 0.46-1
5b3f45
- Swaddle.