Blame SPECS/dyninst.spec

e4b5cb
Summary: An API for Run-time Code Generation
e4b5cb
License: LGPLv2+
e4b5cb
Name: dyninst
e4b5cb
Group: Development/Libraries
c1e8ed
Release: 2%{?dist}
e4b5cb
URL: http://www.dyninst.org
c1e8ed
Version: 10.2.1
597a67
ExclusiveArch: %{ix86} x86_64 ppc64le aarch64
e4b5cb
c1e8ed
%define __testsuite_version 10.1.0
e4b5cb
Source0: https://github.com/dyninst/dyninst/archive/v%{version}/dyninst-%{version}.tar.gz
c1e8ed
Source1: https://github.com/dyninst/testsuite/archive/v10.1.0/testsuite-%{__testsuite_version}.tar.gz
e4b5cb
c1e8ed
Patch1: %{name}-gcc11.patch
c1e8ed
Patch2: %{name}-10.2.1-dbid.patch
c1e8ed
Patch3: testsuite-10.1.0-gettid.patch
c1e8ed
Patch4: testsuite-10.1.0-386.patch
c1e8ed
Patch5: testsuite-10.1.0-throw.patch
c1e8ed
Patch6: %{name}-10.2.1-tbb.patch
e4b5cb
e4b5cb
%global dyninst_base dyninst-%{version}
c1e8ed
%global testsuite_base testsuite-%{__testsuite_version}
e4b5cb
e4b5cb
BuildRequires: gcc-c++
597a67
BuildRequires: elfutils-devel
e4b5cb
BuildRequires: elfutils-libelf-devel
c1e8ed
BuildRequires: elfutils-debuginfod-client-devel
e4b5cb
BuildRequires: boost-devel
e4b5cb
BuildRequires: binutils-devel
e4b5cb
BuildRequires: cmake
e4b5cb
BuildRequires: libtirpc-devel
597a67
BuildRequires: tbb tbb-devel
e4b5cb
e4b5cb
# Extra requires just for the testsuite
c1e8ed
BuildRequires: gcc-gfortran glibc-static libstdc++-static libxml2-devel
e4b5cb
e4b5cb
# Testsuite files should not provide/require anything
e4b5cb
%{?filter_setup:
e4b5cb
%filter_provides_in %{_libdir}/dyninst/testsuite/
e4b5cb
%filter_requires_in %{_libdir}/dyninst/testsuite/
e4b5cb
%filter_setup
e4b5cb
}
e4b5cb
e4b5cb
%description
e4b5cb
e4b5cb
Dyninst is an Application Program Interface (API) to permit the insertion of
e4b5cb
code into a running program. The API also permits changing or removing
e4b5cb
subroutine calls from the application program. Run-time code changes are
e4b5cb
useful to support a variety of applications including debugging, performance
e4b5cb
monitoring, and to support composing applications out of existing packages.
e4b5cb
The goal of this API is to provide a machine independent interface to permit
e4b5cb
the creation of tools and applications that use run-time code patching.
e4b5cb
e4b5cb
%package doc
e4b5cb
Summary: Documentation for using the Dyninst API
e4b5cb
Group: Documentation
e4b5cb
%description doc
e4b5cb
dyninst-doc contains API documentation for the Dyninst libraries.
e4b5cb
e4b5cb
%package devel
597a67
Summary: Header files for compiling programs with Dyninst
e4b5cb
Group: Development/System
e4b5cb
Requires: dyninst = %{version}-%{release}
e4b5cb
Requires: boost-devel
597a67
Requires: tbb-devel
e4b5cb
e4b5cb
%description devel
e4b5cb
dyninst-devel includes the C header files that specify the Dyninst user-space
e4b5cb
libraries and interfaces. This is required for rebuilding any program
e4b5cb
that uses Dyninst.
e4b5cb
e4b5cb
%package static
e4b5cb
Summary: Static libraries for the compiling programs with Dyninst
e4b5cb
Group: Development/System
e4b5cb
Requires: dyninst-devel = %{version}-%{release}
e4b5cb
%description static
e4b5cb
dyninst-static includes the static versions of the library files for
e4b5cb
the dyninst user-space libraries and interfaces.
e4b5cb
e4b5cb
%package testsuite
e4b5cb
Summary: Programs for testing Dyninst
e4b5cb
Group: Development/System
e4b5cb
Requires: dyninst = %{version}-%{release}
e4b5cb
Requires: dyninst-devel = %{version}-%{release}
e4b5cb
Requires: dyninst-static = %{version}-%{release}
e4b5cb
%description testsuite
e4b5cb
dyninst-testsuite includes the test harness and target programs for
e4b5cb
making sure that dyninst works properly.
e4b5cb
e4b5cb
%prep
e4b5cb
%setup -q -n %{name}-%{version} -c
e4b5cb
%setup -q -T -D -a 1
e4b5cb
c1e8ed
%patch1 -p1 -b .gcc11
c1e8ed
%patch2 -p1 -b .dbid
c1e8ed
%patch3 -p1 -b .gettid
c1e8ed
%patch4 -p1 -b .386
c1e8ed
%patch5 -p1 -b .throw
c1e8ed
%patch6 -p1 -b .tbb
e4b5cb
e4b5cb
# cotire seems to cause non-deterministic gcc errors
e4b5cb
# https://bugzilla.redhat.com/show_bug.cgi?id=1420551
e4b5cb
sed -i.cotire -e 's/USE_COTIRE true/USE_COTIRE false/' \
e4b5cb
  %{dyninst_base}/cmake/shared.cmake
e4b5cb
e4b5cb
%build
e4b5cb
e4b5cb
cd %{dyninst_base}
e4b5cb
c1e8ed
CFLAGS="$CFLAGS $RPM_OPT_FLAGS"
c1e8ed
LDFLAGS="$LDFLAGS $RPM_LD_FLAGS"
c1e8ed
%ifarch %{ix86}
c1e8ed
    CFLAGS="$CFLAGS -fno-lto -march=i686"
c1e8ed
    LDFLAGS="$LDFLAGS -fno-lto"
c1e8ed
%endif    
c1e8ed
CXXFLAGS="$CFLAGS"
c1e8ed
export CFLAGS CXXFLAGS LDFLAGS
c1e8ed
e4b5cb
%cmake \
e4b5cb
 -DENABLE_STATIC_LIBS=1 \
c1e8ed
 -DENABLE_DEBUGINFOD=1 \
e4b5cb
 -DINSTALL_LIB_DIR:PATH=%{_libdir}/dyninst \
e4b5cb
 -DINSTALL_INCLUDE_DIR:PATH=%{_includedir}/dyninst \
e4b5cb
 -DINSTALL_CMAKE_DIR:PATH=%{_libdir}/cmake/Dyninst \
e4b5cb
 -DCMAKE_BUILD_TYPE=None \
597a67
 -DCMAKE_SKIP_RPATH:BOOL=YES \
597a67
 .
e4b5cb
%make_build
e4b5cb
e4b5cb
# Hack to install dyninst nearby, so the testsuite can use it
e4b5cb
make DESTDIR=../install install
e4b5cb
find ../install -name '*.cmake' -execdir \
e4b5cb
  sed -i -e 's!%{_prefix}!../install&!' '{}' '+'
597a67
# cmake mistakenly looks for libtbb.so in the dyninst install dir
597a67
sed -i '/libtbb.so/ s/".*usr/"\/usr/' $PWD/../install%{_libdir}/cmake/Dyninst/commonTargets.cmake
e4b5cb
e4b5cb
cd ../%{testsuite_base}
e4b5cb
%cmake \
e4b5cb
 -DDyninst_DIR:PATH=$PWD/../install%{_libdir}/cmake/Dyninst \
e4b5cb
 -DINSTALL_DIR:PATH=%{_libdir}/dyninst/testsuite \
e4b5cb
 -DCMAKE_BUILD_TYPE:STRING=Debug \
597a67
 -DCMAKE_SKIP_RPATH:BOOL=YES \
597a67
 .
e4b5cb
%make_build
e4b5cb
e4b5cb
%install
e4b5cb
e4b5cb
cd %{dyninst_base}
e4b5cb
%make_install
e4b5cb
e4b5cb
# It doesn't install docs the way we want, so remove them.
e4b5cb
# We'll just grab the pdfs later, directly from the build dir.
e4b5cb
rm -v %{buildroot}%{_docdir}/*-%{version}.pdf
e4b5cb
e4b5cb
cd ../%{testsuite_base}
e4b5cb
%make_install
e4b5cb
e4b5cb
mkdir -p %{buildroot}/etc/ld.so.conf.d
e4b5cb
echo "%{_libdir}/dyninst" > %{buildroot}/etc/ld.so.conf.d/%{name}-%{_arch}.conf
e4b5cb
c1e8ed
# Ugly hack to mask testsuite files from debuginfo extraction.  Running the
c1e8ed
# testsuite requires debuginfo, so extraction is useless.  However, debuginfo
c1e8ed
# extraction is still nice for the main libraries, so we don't want to disable
c1e8ed
# it package-wide.  The permissions are restored by attr(755,-,-) in files.
c1e8ed
find %{buildroot}%{_libdir}/dyninst/testsuite/ \
c1e8ed
  -type f '!' -name '*.a' -execdir chmod 644 '{}' '+'
c1e8ed
e4b5cb
%post -p /sbin/ldconfig
e4b5cb
%postun -p /sbin/ldconfig
e4b5cb
e4b5cb
%files
e4b5cb
%dir %{_libdir}/dyninst
e4b5cb
%{_libdir}/dyninst/*.so.*
597a67
# dyninst mutators dlopen the runtime library
597a67
%{_libdir}/dyninst/libdyninstAPI_RT.so
e4b5cb
e4b5cb
%doc %{dyninst_base}/COPYRIGHT
597a67
%doc %{dyninst_base}/LICENSE.md
e4b5cb
e4b5cb
%config(noreplace) /etc/ld.so.conf.d/*
e4b5cb
e4b5cb
%files doc
e4b5cb
%doc %{dyninst_base}/dataflowAPI/doc/dataflowAPI.pdf
e4b5cb
%doc %{dyninst_base}/dynC_API/doc/dynC_API.pdf
e4b5cb
%doc %{dyninst_base}/dyninstAPI/doc/dyninstAPI.pdf
e4b5cb
%doc %{dyninst_base}/instructionAPI/doc/instructionAPI.pdf
e4b5cb
%doc %{dyninst_base}/parseAPI/doc/parseAPI.pdf
e4b5cb
%doc %{dyninst_base}/patchAPI/doc/patchAPI.pdf
e4b5cb
%doc %{dyninst_base}/proccontrol/doc/proccontrol.pdf
e4b5cb
%doc %{dyninst_base}/stackwalk/doc/stackwalk.pdf
e4b5cb
%doc %{dyninst_base}/symtabAPI/doc/symtabAPI.pdf
e4b5cb
e4b5cb
%files devel
e4b5cb
%{_includedir}/dyninst
e4b5cb
%{_libdir}/dyninst/*.so
e4b5cb
%{_libdir}/cmake/Dyninst
e4b5cb
e4b5cb
%files static
e4b5cb
%{_libdir}/dyninst/*.a
e4b5cb
e4b5cb
%files testsuite
e4b5cb
%{_bindir}/parseThat
e4b5cb
%dir %{_libdir}/dyninst/testsuite/
e4b5cb
%attr(755,root,root) %{_libdir}/dyninst/testsuite/*[!a]
e4b5cb
%attr(644,root,root) %{_libdir}/dyninst/testsuite/*.a
e4b5cb
e4b5cb
%changelog
c1e8ed
* Fri Nov 06 2020 Stan Cox <scox@redhat.com> - 10.2.1-2
c1e8ed
- Enable debuginfod
c1e8ed
c1e8ed
* Wed Oct 28 2020 Stan Cox <scox@redhat.com> - 10.2.1-1
c1e8ed
- Update to 10.2.1
c1e8ed
5a2922
* Tue Nov 19 2019 Stan Cox <scox@redhat.com> - 10.1.0-4
5a2922
- Resolves: rhbz#963475 dyninst must be ported to aarch64
5a2922
  Remove Requires: glibc-static from %package testsuite
5a2922
5a2922
* Fri Nov 15 2019 Stan Cox <scox@redhat.com> - 10.1.0-3
5a2922
- Fix rhbz963475 dyninst must be ported to aarch64 
5a2922
597a67
* Tue Jun 04 2019 Stan Cox <scox@redhat.com> - 10.1.0-2
597a67
- Use PRIx64 to fix i386 build
597a67
597a67
* Wed May 29 2019 Stan Cox <scox@redhat.com> - 10.1.0-1
597a67
- Update to 10.1.0
597a67
e4b5cb
* Wed May 16 2018 Frank Ch. Eigler <fche@redhat.com> - 9.3.2-12
e4b5cb
- Rebuild with newer boost.
e4b5cb
e4b5cb
* Wed Mar 07 2018 Adam Williamson <awilliam@redhat.com> - 9.3.2-11
e4b5cb
- Rebuild to fix GCC 8 mis-compilation
e4b5cb
  See https://da.gd/YJVwk ("GCC 8 ABI change on x86_64")
e4b5cb
e4b5cb
* Wed Feb 07 2018 Than Ngo <than@redhat.com> - - 9.3.2-10
e4b5cb
- fix FTBS with gcc8
e4b5cb
- fix for using libtirpc, Sun RPC Interfaces is removed in latest glibc
e4b5cb
e4b5cb
* Wed Feb 07 2018 Fedora Release Engineering <releng@fedoraproject.org> - 9.3.2-9
e4b5cb
- Rebuilt for https://fedoraproject.org/wiki/Fedora_28_Mass_Rebuild
e4b5cb
e4b5cb
* Mon Feb 05 2018 Stan Cox <scox@redhat.com> - 9.3.2-8
e4b5cb
- Rebuild for Boost 1.64
e4b5cb
e4b5cb
* Wed Oct 04 2017 Stan Cox <scox@redhat.com> - 9.3.2-7
e4b5cb
- Fix swbz22248, handle R_*_IRELATIV, swbz22004, ignore linux-vdso64.so.1
e4b5cb
e4b5cb
* Sun Aug 06 2017 Björn Esser <besser82@fedoraproject.org> - 9.3.2-6
e4b5cb
- Rebuilt for AutoReq cmake-filesystem
e4b5cb
e4b5cb
* Wed Aug 02 2017 Fedora Release Engineering <releng@fedoraproject.org> - 9.3.2-5
e4b5cb
- Rebuilt for https://fedoraproject.org/wiki/Fedora_27_Binutils_Mass_Rebuild
e4b5cb
e4b5cb
* Wed Jul 26 2017 Fedora Release Engineering <releng@fedoraproject.org> - 9.3.2-4
e4b5cb
- Rebuilt for https://fedoraproject.org/wiki/Fedora_27_Mass_Rebuild
e4b5cb
e4b5cb
* Thu Jul 20 2017 Kalev Lember <klember@redhat.com> - 9.3.2-3
e4b5cb
- Rebuilt for Boost 1.64
e4b5cb
e4b5cb
* Fri Jul 07 2017 Igor Gnatenko <ignatenko@redhat.com> - 9.3.2-2
e4b5cb
- Rebuild due to bug in RPM (RHBZ #1468476)
e4b5cb
e4b5cb
* Wed Jul 05 2017 Stan Cox <scox@redhat.com> - 9.3.2-1
e4b5cb
- Update to 9.3.2
e4b5cb
e4b5cb
* Mon Mar 06 2017 Stan Cox <scox@redhat.com> - 9.3.1-1
e4b5cb
- Update to 9.3.1
e4b5cb
e4b5cb
* Wed Feb 8 2017 William Cohen <wcohen@redhat.com> - 9.3.0-2
e4b5cb
- Rebuild for boost 1.63
e4b5cb
e4b5cb
* Mon Jan 09 2017 Josh Stone <jistone@redhat.com> - 9.3.0-1
e4b5cb
- Update to 9.3.0
e4b5cb
e4b5cb
* Tue Nov 22 2016 Josh Stone <jistone@redhat.com> - 9.2.0-5
e4b5cb
- Backport fixes for rhbz1373197, attach thread races.
e4b5cb
e4b5cb
* Wed Sep 14 2016 Josh Stone <jistone@redhat.com> - 9.2.0-4
e4b5cb
- Fix rhbz1373239, process attach without exe specified.
e4b5cb
e4b5cb
* Mon Aug 15 2016 Josh Stone <jistone@redhat.com> - 9.2.0-3
e4b5cb
- Revert aarch64 and ppc64le support until they're more complete.
e4b5cb
e4b5cb
* Fri Aug 12 2016 Peter Robinson <pbrobinson@fedoraproject.org> 9.2.0-2
e4b5cb
- aarch64 and ppc64le are now supported
e4b5cb
e4b5cb
* Thu Jun 30 2016 Josh Stone <jistone@redhat.com> - 9.2.0-1
e4b5cb
- Update to 9.2.0
e4b5cb
e4b5cb
* Tue Jun 21 2016 Josh Stone <jistone@redhat.com> - 9.1.0-5
e4b5cb
- Use static TLS for libdyninstAPI_RT.so
e4b5cb
e4b5cb
* Thu Mar 10 2016 William Cohen <wcohen@redhat.com> - 9.1.0-4
e4b5cb
- Export libdyninstAPI_RT_init_maxthreads (ref rhbz1315841)
e4b5cb
e4b5cb
* Wed Feb 03 2016 Fedora Release Engineering <releng@fedoraproject.org> - 9.1.0-3
e4b5cb
- Rebuilt for https://fedoraproject.org/wiki/Fedora_24_Mass_Rebuild
e4b5cb
e4b5cb
* Sat Jan 23 2016 Orion Poplawski <orion@cora.nwra.com> - 9.1.0-2
e4b5cb
- Rebuild for boost 1.60
e4b5cb
e4b5cb
* Fri Dec 18 2015 Josh Stone <jistone@redhat.com> - 9.1.0-1
e4b5cb
- Update to 9.1.0
e4b5cb
e4b5cb
* Fri Sep 04 2015 Josh Stone <jistone@redhat.com> - 9.0.3-1
e4b5cb
- Update to 9.0.3
e4b5cb
e4b5cb
* Thu Aug 27 2015 Jonathan Wakely <jwakely@redhat.com> - 8.2.1-9
e4b5cb
- Rebuilt for Boost 1.59
e4b5cb
e4b5cb
* Wed Jul 29 2015 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 8.2.1-8
e4b5cb
- Rebuilt for https://fedoraproject.org/wiki/Changes/F23Boost159
e4b5cb
e4b5cb
* Thu Jul 23 2015 Josh Stone <jistone@redhat.com> - 8.2.1-7
e4b5cb
- Patch use of boost::bind for boost 1.58.
e4b5cb
e4b5cb
* Wed Jul 22 2015 David Tardon <dtardon@redhat.com> - 8.2.1-6
e4b5cb
- rebuild for Boost 1.58
e4b5cb
e4b5cb
* Wed Jun 17 2015 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 8.2.1-5
e4b5cb
- Rebuilt for https://fedoraproject.org/wiki/Fedora_23_Mass_Rebuild
e4b5cb
e4b5cb
* Fri Apr 17 2015 Frank Ch. Eigler <fche@redhat.com> - 8.2.1-4
e4b5cb
- Rebuild with gcc 5.0.1 for abitag-equipped cxx11 symbols.
e4b5cb
e4b5cb
* Sat Feb 14 2015 Frank Ch. Eigler <fche@redhat.com> - 8.2.1-3
e4b5cb
- Rebuild with gcc 5 for std::__cxx11::basic_string etc. ABI
e4b5cb
e4b5cb
* Tue Jan 27 2015 Petr Machata <pmachata@redhat.com> - 8.2.1-2
e4b5cb
- Rebuild for boost 1.57.0
e4b5cb
e4b5cb
* Fri Oct 31 2014 Josh Stone <jistone@redhat.com> - 8.2.1-1
e4b5cb
- Update to point release 8.2.1.
e4b5cb
e4b5cb
* Wed Aug 20 2014 Josh Stone <jistone@redhat.com> - 8.2.0-1
e4b5cb
- rebase to 8.2.0, using upstream tag "v8.2.0.1"
e4b5cb
e4b5cb
* Sat Aug 16 2014 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 8.1.2-11
e4b5cb
- Rebuilt for https://fedoraproject.org/wiki/Fedora_21_22_Mass_Rebuild
e4b5cb
e4b5cb
* Mon Jul 07 2014 Josh Stone <jistone@redhat.com> - 8.1.2-10
e4b5cb
- Flip from ExcludeArch to ExclusiveArch (ref rhbz1113991)
e4b5cb
e4b5cb
* Sat Jun 07 2014 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 8.1.2-9
e4b5cb
- Rebuilt for https://fedoraproject.org/wiki/Fedora_21_Mass_Rebuild
e4b5cb
e4b5cb
* Fri May 23 2014 Petr Machata <pmachata@redhat.com> - 8.1.2-8
e4b5cb
- Rebuild for boost 1.55.0
e4b5cb
e4b5cb
* Thu May 22 2014 Josh Stone <jistone@redhat.com> - 8.1.2-7
e4b5cb
- Rebuild for libdwarf.so.1
e4b5cb
e4b5cb
* Wed Dec 11 2013 Josh Stone <jistone@redhat.com> 8.1.2-6
e4b5cb
- Fix rhbz1040715 (testsuite g++ optimization)
e4b5cb
e4b5cb
* Tue Dec 03 2013 Josh Stone <jistone@redhat.com> 8.1.2-5
e4b5cb
- Fix rhbz1037048 (-Werror=format-security FTBFS)
e4b5cb
e4b5cb
* Mon Aug 05 2013 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 8.1.2-4
e4b5cb
- Fix rhbz991889 (FTBFS).
e4b5cb
e4b5cb
* Sat Aug 03 2013 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 8.1.2-3
e4b5cb
- Rebuilt for https://fedoraproject.org/wiki/Fedora_20_Mass_Rebuild
e4b5cb
e4b5cb
* Tue Jul 30 2013 Petr Machata <pmachata@redhat.com> - 8.1.2-2
e4b5cb
- Rebuild for boost 1.54.0
e4b5cb
e4b5cb
* Tue Jun 18 2013 Josh Stone <jistone@redhat.com> 8.1.2-1
e4b5cb
- Update to release 8.1.2.
e4b5cb
e4b5cb
* Fri Mar 15 2013 Josh Stone <jistone@redhat.com> 8.1.1-1
e4b5cb
- Update to release 8.1.1.
e4b5cb
- Drop the backported dyninst-test2_4-kill-init.patch.
e4b5cb
- Drop the now-upstreamed dyninst-unused_vars.patch.
e4b5cb
- Update other patches for context.
e4b5cb
- Patch the installed symlinks to be relative, not $(DEST) filled.
e4b5cb
e4b5cb
* Tue Feb 26 2013 Josh Stone <jistone@redhat.com> 8.0-7
e4b5cb
- testsuite: Require dyninst-devel for the libdyninstAPI_RT.so symlink
e4b5cb
e4b5cb
* Tue Feb 26 2013 Josh Stone <jistone@redhat.com> 8.0-6
e4b5cb
- Fix the testsuite path to include libtestlaunch.so
e4b5cb
e4b5cb
* Mon Feb 25 2013 Josh Stone <jistone@redhat.com> 8.0-5
e4b5cb
- Add a dyninst-testsuite package.
e4b5cb
- Patch test2_4 to protect against running as root.
e4b5cb
- Make dyninst-static require dyninst-devel.
e4b5cb
e4b5cb
* Thu Feb 14 2013 Josh Stone <jistone@redhat.com> 8.0-4
e4b5cb
- Patch make.config to ensure rpm build flags are not discarded.
e4b5cb
e4b5cb
* Sun Feb 10 2013 Denis Arnaud <denis.arnaud_fedora@m4x.org> - 8.0-3
e4b5cb
- Rebuild for Boost-1.53.0
e4b5cb
e4b5cb
* Sat Feb 09 2013 Denis Arnaud <denis.arnaud_fedora@m4x.org> - 8.0-2
e4b5cb
- Rebuild for Boost-1.53.0
e4b5cb
e4b5cb
* Tue Nov 20 2012 Josh Stone <jistone@redhat.com>
e4b5cb
- Tweak the configure/make commands
e4b5cb
- Disable the testsuite via configure.
e4b5cb
- Set the private includedir and libdir via configure.
e4b5cb
- Set VERBOSE_COMPILATION for make.
e4b5cb
- Use DESTDIR for make install.
e4b5cb
e4b5cb
* Mon Nov 19 2012 Josh Stone <jistone@redhat.com> 8.0-1
e4b5cb
- Update to release 8.0.
e4b5cb
- Updated "files doc" to reflect renames.
e4b5cb
- Drop the unused BuildRequires libxml2-devel.
e4b5cb
- Drop the 7.99.x version-munging patch.
e4b5cb
e4b5cb
* Fri Nov 09 2012 Josh Stone <jistone@redhat.com> 7.99.2-0.29
e4b5cb
- Rebase to git e99d7070bbc39c76d6d528db530046c22681c17e
e4b5cb
e4b5cb
* Mon Oct 29 2012 Josh Stone <jistone@redhat.com> 7.99.2-0.28
e4b5cb
- Bump to 7.99.2 per abi-compliance-checker results
e4b5cb
e4b5cb
* Fri Oct 26 2012 Josh Stone <jistone@redhat.com> 7.99.1-0.27
e4b5cb
- Rebase to git dd8f40b7b4742ad97098613876efeef46d3d9e65
e4b5cb
- Use _smp_mflags to enable building in parallel.
e4b5cb
e4b5cb
* Wed Oct 03 2012 Josh Stone <jistone@redhat.com> 7.99.1-0.26
e4b5cb
- Rebase to git 557599ad7417610f179720ad88366c32a0557127
e4b5cb
e4b5cb
* Thu Sep 20 2012 Josh Stone <jistone@redhat.com> 7.99.1-0.25
e4b5cb
- Rebase on newer git tree.
e4b5cb
- Bump the fake version to 7.99.1 to account for ABI differences.
e4b5cb
- Enforce the minimum libdwarf version.
e4b5cb
- Drop the upstreamed R_PPC_NUM patch.
e4b5cb
e4b5cb
* Wed Aug 15 2012 Karsten Hopp <karsten@redhat.com> 7.99-0.24
e4b5cb
- check if R_PPC_NUM is defined before using it, similar to R_PPC64_NUM
e4b5cb
e4b5cb
* Mon Jul 30 2012 Josh Stone <jistone@redhat.com> 7.99-0.23
e4b5cb
- Rebase on newer git tree.
e4b5cb
- Update license files with upstream additions.
e4b5cb
- Split documentation into -doc subpackage.
e4b5cb
- Claim ownership of {_libdir}/dyninst.
e4b5cb
e4b5cb
* Fri Jul 27 2012 William Cohen <wcohen@redhat.com> - 7.99-0.22
e4b5cb
- Correct requires for dyninst-devel.
e4b5cb
e4b5cb
* Wed Jul 25 2012 Josh Stone <jistone@redhat.com> - 7.99-0.21
e4b5cb
- Rebase on newer git tree
e4b5cb
- Update context in dyninst-git.patch
e4b5cb
- Drop dyninst-delete_array.patch
e4b5cb
- Drop dyninst-common-makefile.patch
e4b5cb
e4b5cb
* Wed Jul 18 2012 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 7.99-0.20
e4b5cb
- Rebuilt for https://fedoraproject.org/wiki/Fedora_18_Mass_Rebuild
e4b5cb
e4b5cb
* Mon Jul 16 2012 William Cohen <wcohen@redhat.com> - 7.99-0.19
e4b5cb
- Patch common/i386-unknown-linux2.4/Makefile to build.
e4b5cb
e4b5cb
* Fri Jul 13 2012 William Cohen <wcohen@redhat.com> - 7.99-0.18
e4b5cb
- Rebase on newer git tree the has a number of merges into it.
e4b5cb
- Adjust spec file to allow direct use of git patches
e4b5cb
- Fix to eliminate unused varables.
e4b5cb
- Proper delete for array.
e4b5cb
e4b5cb
* Thu Jun 28 2012 William Cohen <wcohen@redhat.com> - 7.99-0.17
e4b5cb
- Rebase on newer git repo.
e4b5cb
e4b5cb
* Thu Jun 28 2012 William Cohen <wcohen@redhat.com> - 7.99-0.16
e4b5cb
- Eliminate dynptr.h file use with rebase on newer git repo.
e4b5cb
e4b5cb
* Mon Jun 25 2012 William Cohen <wcohen@redhat.com> - 7.99-0.14
e4b5cb
- Rebase on newer git repo.
e4b5cb
e4b5cb
* Tue Jun 19 2012 William Cohen <wcohen@redhat.com> - 7.99-0.12
e4b5cb
- Fix static library and header file permissions.
e4b5cb
- Use sources from the dyninst git repositories.
e4b5cb
- Fix 32-bit library versioning for libdyninstAPI_RT_m32.so.
e4b5cb
e4b5cb
* Wed Jun 13 2012 William Cohen <wcohen@redhat.com> - 7.99-0.11
e4b5cb
- Fix library versioning.
e4b5cb
- Move .so links to dyninst-devel.
e4b5cb
- Remove unneded clean section.
e4b5cb
e4b5cb
* Fri May 11 2012 William Cohen <wcohen@redhat.com> - 7.0.1-0.9
e4b5cb
- Clean up Makefile rules.
e4b5cb
e4b5cb
* Sat May 5 2012 William Cohen <wcohen@redhat.com> - 7.0.1-0.8
e4b5cb
- Clean up spec file.
e4b5cb
e4b5cb
* Wed May 2 2012 William Cohen <wcohen@redhat.com> - 7.0.1-0.7
e4b5cb
- Use "make install" and do staged build.
e4b5cb
- Use rpm configure macro.
e4b5cb
e4b5cb
* Thu Mar 15 2012 William Cohen <wcohen@redhat.com> - 7.0.1-0.5
e4b5cb
- Nuke the bundled boost files and use the boost-devel rpm instead.
e4b5cb
e4b5cb
* Mon Mar 12 2012 William Cohen <wcohen@redhat.com> - 7.0.1-0.4
e4b5cb
- Initial submission of dyninst spec file.