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