Blame SPECS/dyninst.spec

9ef3c2
%{?scl:%scl_package dyninst}
9ef3c2
9ef3c2
Summary: An API for Run-time Code Generation
9ef3c2
License: LGPLv2+
9ef3c2
Name: %{?scl_prefix}dyninst
9ef3c2
Group: Development/Libraries
9ef3c2
Release: 1%{?dist}
9ef3c2
URL: http://www.dyninst.org
9ef3c2
Version: 12.1.0
9ef3c2
Exclusiveos: linux
9ef3c2
ExclusiveArch: %{ix86} x86_64
9ef3c2
9ef3c2
Source0: https://github.com/dyninst/dyninst/archive/v%{version}/dyninst-%{version}.tar.gz
9ef3c2
Source1: https://github.com/dyninst/testsuite/archive/%{version}/testsuite-%{version}.tar.gz
9ef3c2
Source2: https://sourceforge.net/projects/boost/files/boost/1.66.0/boost_1_66_0.tar.bz2
9ef3c2
Source3: https://github.com/01org/tbb/archive/2018_U6.tar.gz
9ef3c2
9ef3c2
Patch1: dyninst-12.1.0-amdgpu.patch
9ef3c2
Patch2: dyninst-12.1.0-cmake.patch
9ef3c2
Patch3: dyninst-12.1.0-dwarf.patch
9ef3c2
Patch4: dyninst-12.1.0-elfstatic.patch
9ef3c2
Patch5: dyninst-12.1.0-loaded_elf.patch
9ef3c2
Patch6: dyninst-12.1.0-recursive_mutex.patch
9ef3c2
%if 0%{?rhel} <= 7
9ef3c2
Patch7: testsuite-12.1.0-mutateecompiler.patch
9ef3c2
%endif
9ef3c2
9ef3c2
%global dyninst_base dyninst-%{version}
9ef3c2
%global testsuite_base testsuite-%{version}
9ef3c2
9ef3c2
BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root-%(%{__id_u} -n)
9ef3c2
BuildRequires: boost-devel
9ef3c2
BuildRequires: binutils-devel
9ef3c2
BuildRequires: cmake
9ef3c2
BuildRequires: libtirpc-devel
9ef3c2
BuildRequires: tbb tbb-devel
9ef3c2
9ef3c2
%{?scl:Requires: %scl_runtime}
9ef3c2
9ef3c2
# Extra requires just for the testsuite
9ef3c2
# NB, there's no separate libstdc++-static for <=el6
9ef3c2
%if 0%{?rhel} >= 7
9ef3c2
BuildRequires: libstdc++-static
9ef3c2
%endif
9ef3c2
BuildRequires: gcc-gfortran glibc-static libxml2-devel
9ef3c2
9ef3c2
%if 0%{?rhel} <= 7
9ef3c2
# C++11 requires devtoolset gcc.
9ef3c2
BuildRequires: %{?scl_prefix}gcc-c++
9ef3c2
BuildRequires: %{?scl_prefix}elfutils
9ef3c2
BuildRequires: %{?scl_prefix}elfutils-devel
9ef3c2
BuildRequires: %{?scl_prefix}elfutils-libelf-devel
9ef3c2
%else
9ef3c2
BuildRequires: gcc-c++
9ef3c2
BuildRequires: elfutils-devel
9ef3c2
BuildRequires: elfutils-libelf-devel
9ef3c2
%endif
9ef3c2
Requires: %{?scl_prefix}elfutils
9ef3c2
9ef3c2
# Testsuite files should not provide/require anything
9ef3c2
%{?filter_setup:
9ef3c2
%filter_provides_in %{_libdir}/dyninst/testsuite/
9ef3c2
%filter_requires_in %{_libdir}/dyninst/testsuite/
9ef3c2
%filter_setup
9ef3c2
}
9ef3c2
9ef3c2
%description
9ef3c2
9ef3c2
Dyninst is an Application Program Interface (API) to permit the insertion of
9ef3c2
code into a running program. The API also permits changing or removing
9ef3c2
subroutine calls from the application program. Run-time code changes are
9ef3c2
useful to support a variety of applications including debugging, performance
9ef3c2
monitoring, and to support composing applications out of existing packages.
9ef3c2
The goal of this API is to provide a machine independent interface to permit
9ef3c2
the creation of tools and applications that use run-time code patching.
9ef3c2
9ef3c2
%package doc
9ef3c2
Summary: Documentation for using the Dyninst API
9ef3c2
Group: Documentation
9ef3c2
%description doc
9ef3c2
dyninst-doc contains API documentation for the Dyninst libraries.
9ef3c2
9ef3c2
%package devel
9ef3c2
Summary: Header files for compiling programs with Dyninst
9ef3c2
Group: Development/System
9ef3c2
Requires: %{?scl_prefix}dyninst = %{version}-%{release}
9ef3c2
Requires: boost-devel
9ef3c2
Requires: tbb-devel
9ef3c2
%description devel
9ef3c2
dyninst-devel includes the C header files that specify the Dyninst user-space
9ef3c2
libraries and interfaces. This is required for rebuilding any program
9ef3c2
that uses Dyninst.
9ef3c2
9ef3c2
%package static
9ef3c2
Summary: Static libraries for the compiling programs with Dyninst
9ef3c2
Group: Development/System
9ef3c2
Requires: %{?scl_prefix}dyninst-devel = %{version}-%{release}
9ef3c2
%description static
9ef3c2
dyninst-static includes the static versions of the library files for
9ef3c2
the dyninst user-space libraries and interfaces.
9ef3c2
9ef3c2
%package testsuite
9ef3c2
Summary: Programs for testing Dyninst
9ef3c2
Group: Development/System
9ef3c2
Requires: %{?scl_prefix}dyninst = %{version}-%{release}
9ef3c2
Requires: %{?scl_prefix}dyninst-devel = %{version}-%{release}
9ef3c2
Requires: %{?scl_prefix}dyninst-static = %{version}-%{release}
9ef3c2
Requires: glibc-static
9ef3c2
%description testsuite
9ef3c2
dyninst-testsuite includes the test harness and target programs for
9ef3c2
making sure that dyninst works properly.
9ef3c2
9ef3c2
%prep
9ef3c2
%setup -q -n %{name}-%{version} -c
9ef3c2
%setup -q -T -D -a 1
9ef3c2
# setup source3 boost by copying where cmake can find it to build its own copy
9ef3c2
cp %{_topdir}/SOURCES/boost_1_66_0.tar.bz2 /tmp
9ef3c2
# setup source4 tbb by copying where cmake can find it to build its own copy
9ef3c2
cp %{_topdir}/SOURCES/2018_U6.tar.gz /tmp
9ef3c2
9ef3c2
pushd %{dyninst_base}
9ef3c2
%patch1 -p1 -b.amdgpu
9ef3c2
%patch2 -p1 -b.cmake
9ef3c2
%patch3 -p1 -b.dwarf
9ef3c2
%patch4 -p1 -b.elfstatic
9ef3c2
%patch5 -p1 -b.loaded_elf
9ef3c2
%patch6 -p1 -b.mutex
9ef3c2
popd
9ef3c2
9ef3c2
pushd %{testsuite_base}
9ef3c2
%if 0%{?rhel} <= 7
9ef3c2
%patch7 -p1 -b.mutateecompiler
9ef3c2
%endif
9ef3c2
popd
9ef3c2
9ef3c2
# cotire seems to cause non-deterministic gcc errors
9ef3c2
# https://bugzilla.redhat.com/show_bug.cgi?id=1420551
9ef3c2
sed -i.cotire -e 's/USE_COTIRE true/USE_COTIRE false/' \
9ef3c2
  %{dyninst_base}/cmake/shared.cmake
9ef3c2
9ef3c2
%build
9ef3c2
9ef3c2
cd %{dyninst_base}
9ef3c2
9ef3c2
%if 0%{?rhel} <= 7
9ef3c2
# C++11 requires devtoolset gcc.
9ef3c2
%{?scl:PATH=%{_bindir}${PATH:+:${PATH}}}
9ef3c2
%endif
9ef3c2
9ef3c2
CFLAGS="$CFLAGS $RPM_OPT_FLAGS"
9ef3c2
LDFLAGS="$LDFLAGS $RPM_LD_FLAGS"
9ef3c2
%if 0%{?scl:1}
9ef3c2
    CPPFLAGS="-I%{_includedir}"
9ef3c2
    LDFLAGS="-L%{_libdir} -L%{_libdir}/elfutils"
9ef3c2
%endif
9ef3c2
%ifarch %{ix86}
9ef3c2
    CFLAGS="$CFLAGS -fno-lto -march=i686"
9ef3c2
    LDFLAGS="$LDFLAGS -fno-lto"
9ef3c2
%endif
9ef3c2
CXXFLAGS="$CFLAGS -std=c++11"
9ef3c2
export CPPFLAGS CFLAGS CXXFLAGS LDFLAGS
9ef3c2
9ef3c2
%cmake \
9ef3c2
 -DENABLE_STATIC_LIBS=1 \
9ef3c2
 -DINSTALL_LIB_DIR:PATH=%{_libdir}/dyninst \
9ef3c2
 -DINSTALL_INCLUDE_DIR:PATH=%{_includedir}/dyninst \
9ef3c2
 -DINSTALL_CMAKE_DIR:PATH=%{_libdir}/cmake/Dyninst \
9ef3c2
 -DBoost_NO_BOOST_CMAKE=ON \
9ef3c2
 -DCMAKE_BUILD_TYPE:STRING=None \
9ef3c2
 -DCMAKE_SKIP_RPATH:BOOL=YES \
9ef3c2
 .
9ef3c2
# Dependencies building tbb, boost before dyninst are not correct
9ef3c2
LD_RUN_PATH="%{_libdir}"
9ef3c2
export LD_RUN_PATH
9ef3c2
# cmake_build not available on rhel7
9ef3c2
# Dependencies do not take into account build of local tbb and local boost
9ef3c2
make -j1
9ef3c2
9ef3c2
# Hack to install dyninst nearby, so the testsuite can use it
9ef3c2
# Hack to install dyninst nearby, so the testsuite can use it
9ef3c2
make DESTDIR=../install install
9ef3c2
find ../install -name '*.cmake' -execdir \
9ef3c2
  sed -i -e 's!%{_prefix}!../install&!' '{}' '+'
9ef3c2
# cmake mistakenly looks for libtbb.so in the dyninst install dir
9ef3c2
sed -i '/libtbb.so/ s/".*usr/"\/usr/' $PWD/../install%{_libdir}/cmake/Dyninst/commonTargets.cmake
9ef3c2
9ef3c2
cd ../%{testsuite_base}
9ef3c2
%cmake \
9ef3c2
 -DDyninst_DIR:PATH=$PWD/../install%{_libdir}/cmake/Dyninst \
9ef3c2
 -DINSTALL_DIR:PATH=%{_libdir}/dyninst/testsuite \
9ef3c2
 -DCMAKE_BUILD_TYPE:STRING=Debug \
9ef3c2
 -DBoost_NO_BOOST_CMAKE=ON \
9ef3c2
 -DCMAKE_SKIP_RPATH:BOOL=YES \
9ef3c2
 .
9ef3c2
# cmake_build not available on rhel7
9ef3c2
%make_build
9ef3c2
9ef3c2
%install
9ef3c2
9ef3c2
cd %{dyninst_base}
9ef3c2
%make_install
9ef3c2
9ef3c2
# It doesn't install docs the way we want, so remove them.
9ef3c2
# We'll just grab the pdfs later, directly from the build dir.
9ef3c2
rm -v %{buildroot}%{_docdir}/*-%{version}.pdf
9ef3c2
9ef3c2
cd ../%{testsuite_base}
9ef3c2
%make_install
9ef3c2
9ef3c2
# Ugly hack to mask testsuite files from debuginfo extraction.  Running the
9ef3c2
# testsuite requires debuginfo, so extraction is useless.  However, debuginfo
9ef3c2
# extraction is still nice for the main libraries, so we don't want to disable
9ef3c2
# it package-wide.  The permissions are restored by attr(755,-,-) in files.
9ef3c2
find %{buildroot}%{_libdir}/dyninst/testsuite/ \
9ef3c2
  -type f '!' -name '*.a' -execdir chmod 644 '{}' '+'
9ef3c2
9ef3c2
%files
9ef3c2
%defattr(-,root,root,-)
9ef3c2
9ef3c2
%dir %{_libdir}/dyninst
9ef3c2
%{_libdir}/dyninst/*.so.*
9ef3c2
# dyninst mutators dlopen the runtime library
9ef3c2
%{_libdir}/dyninst/libdyninstAPI_RT.so
9ef3c2
9ef3c2
%doc %{dyninst_base}/COPYRIGHT
9ef3c2
%doc %{dyninst_base}/LICENSE.md
9ef3c2
9ef3c2
# %config(noreplace) /etc/ld.so.conf.d/*
9ef3c2
9ef3c2
%files doc
9ef3c2
%defattr(-,root,root,-)
9ef3c2
%doc %{dyninst_base}/dataflowAPI/doc/dataflowAPI.pdf
9ef3c2
%doc %{dyninst_base}/dynC_API/doc/dynC_API.pdf
9ef3c2
%doc %{dyninst_base}/dyninstAPI/doc/dyninstAPI.pdf
9ef3c2
%doc %{dyninst_base}/instructionAPI/doc/instructionAPI.pdf
9ef3c2
%doc %{dyninst_base}/parseAPI/doc/parseAPI.pdf
9ef3c2
%doc %{dyninst_base}/patchAPI/doc/patchAPI.pdf
9ef3c2
%doc %{dyninst_base}/proccontrol/doc/proccontrol.pdf
9ef3c2
%doc %{dyninst_base}/stackwalk/doc/stackwalk.pdf
9ef3c2
%doc %{dyninst_base}/symtabAPI/doc/symtabAPI.pdf
9ef3c2
9ef3c2
%files devel
9ef3c2
%defattr(-,root,root,-)
9ef3c2
%{_includedir}/dyninst
9ef3c2
%{_includedir}/tbb
9ef3c2
%{_includedir}/boost
9ef3c2
%{_libdir}/dyninst/*.so
9ef3c2
%{_libdir}/cmake/Dyninst
9ef3c2
9ef3c2
%files static
9ef3c2
%defattr(-,root,root,-)
9ef3c2
%{_libdir}/dyninst/*.a
9ef3c2
9ef3c2
%files testsuite
9ef3c2
%defattr(-,root,root,-)
9ef3c2
%{_bindir}/parseThat
9ef3c2
9ef3c2
%dir %{_libdir}/dyninst/testsuite/
9ef3c2
%attr(755,root,root) %{_libdir}/dyninst/testsuite/*[!a]
9ef3c2
%attr(644,root,root) %{_libdir}/dyninst/testsuite/*.a
9ef3c2
9ef3c2
%changelog
9ef3c2
* Fri May 06 2022 Stan Cox <scox@redhat.com> - 12.1.0-1
9ef3c2
- Update to 12.1.0
9ef3c2
9ef3c2
* Wed May 19 2021 Stan Cox <scox@redhat.com> - 11.0.0
9ef3c2
- Update to 11.0.0
9ef3c2
9ef3c2
* Fri Jan 22 2021 Stan Cox <scox@redhat.com> - 10.2.1-1
9ef3c2
- Update to 10.2.1
9ef3c2
9ef3c2
* Wed Jul 22 2020 Stan Cox <scox@redhat.com> - 10.1.0-5
9ef3c2
- Patch checkMutateeCompiler.cmake to force use of %{?scl_prefix}gcc-c++
9ef3c2
9ef3c2
* Wed Oct 23 2019 Stan Cox <scox@redhat.com> - 10.1.0-4
9ef3c2
- Remove ppc, ppc64, ppc64le, aarch64 for rhel-7
9ef3c2
- rhbz1763156 devtoolset-9-dyninst-10.1.0-3.el7.aarch64 broken 
9ef3c2
- rhbz1763157 devtoolset-9-dyninst-10.1.0-3.el7.ppc64 (big endian) broken 
9ef3c2
9ef3c2
* Mon Oct 07 2019 Stan Cox <scox@redhat.com> - 10.1.0-3
9ef3c2
- Install tbb/include
9ef3c2
9ef3c2
* Mon Sep 02 2019 Stan Cox <scox@redhat.com> - 10.1.0-2
9ef3c2
- Do not add libtbb*so libboost*so links to dyninst-devel.
9ef3c2
9ef3c2
* Thu Jul 25 2019 Stan Cox <scox@redhat.com> - 10.1.0-1
9ef3c2
- Update to 10.1.0
9ef3c2
9ef3c2
* Tue Jan 8 2019 Stan Cox <scox@redhat.com> - 9.3.2-6
9ef3c2
- rhbz1498558 Needs dyninst-devtoolset installed
9ef3c2
- rhbz1470149 Use separate debuginfo for dyninst-testsuite
9ef3c2
- rhbz1647471 so name clashes
9ef3c2
9ef3c2
* Tue Jul 17 2018 William Cohen <wcohen@redhat.com> - 9.3.2-5
9ef3c2
- Avoid conditional patching of source files.
9ef3c2
9ef3c2
* Thu Jul 05 2018 Stan Cox <scox@redhat.com> - 9.3.2-4
9ef3c2
- Make specfile rhel agnostic
9ef3c2
9ef3c2
* Thu Jan 04 2018 Stan Cox <scox@redhat.com> - 9.3.2-3
9ef3c2
- rhbz1503116 possible soname clashes between base rhel- and devtoolset- dyninst
9ef3c2
- rhbz1538757 segfault with a glibc built with binutils-2.27: handle R_*_IRELATIVE
9ef3c2
9ef3c2
* Thu Jan 04 2018 Stan Cox <scox@redhat.com> - 9.3.2-2
9ef3c2
- rhbz1503116 possible soname clashes between base rhel- and devtoolset- dyninst
9ef3c2
9ef3c2
* Fri Jun 16 2017 Stan Cox <scox@redhat.com> - 9.3.2-1
9ef3c2
- Remove ppc/ppc64 for rhel-6
9ef3c2
9ef3c2
* Fri Jun 09 2017 Stan Cox <scox@redhat.com> - 9.3.2-1
9ef3c2
- Rebase to 9.3.2
9ef3c2
9ef3c2
* Thu Sep 15 2016 Josh Stone <jistone@redhat.com> - 9.2.0-4
9ef3c2
- rhbz1366656: fix ppc64 relocation rewriting
9ef3c2
- rhbz1366726: check mmap constrains for locality
9ef3c2
- rhbz1367225: fix x86 codegen for 64-bit offsets
9ef3c2
9ef3c2
* Tue Aug 09 2016 Josh Stone <jistone@redhat.com> - 9.2.0-3
9ef3c2
- rhbz1363794: fix proccontrol attach without an exe.
9ef3c2
9ef3c2
* Tue Jul 26 2016 Josh Stone <jistone@redhat.com> - 9.2.0-2
9ef3c2
- Patch a template '>>' in stackanalysis.h for pre-C++11 users.
9ef3c2
9ef3c2
* Thu Jul 21 2016 Josh Stone <jistone@redhat.com> - 9.2.0-1
9ef3c2
- Update to 9.2.0
9ef3c2
9ef3c2
* Fri Mar 11 2016 Frank Ch. Eigler <fche@redhat.com> - 9.1.0-3
9ef3c2
- Export libdyninstAPI_RT_init_maxthreads (ref rhbz1315841/1316956)
9ef3c2
9ef3c2
* Thu Feb 25 2016 Frank Ch. Eigler <fche@redhat.com> - 9.1.0-2
9ef3c2
- buildroot bump respin
9ef3c2
9ef3c2
* Wed Jan 13 2016 Josh Stone <jistone@redhat.com> - 9.1.0-1
9ef3c2
- Update to 9.1.0
9ef3c2
9ef3c2
* Mon Sep 21 2015 Josh Stone <jistone@redhat.com> - 8.2.1-5
9ef3c2
- Rebuild for x86_64 only.
9ef3c2
9ef3c2
* Mon Sep 21 2015 Josh Stone <jistone@redhat.com> - 8.2.1-4
9ef3c2
- rhbz1261061: Make sure the system's Boost.cmake is not used.
9ef3c2
9ef3c2
* Wed Jan 07 2015 Josh Stone <jistone@redhat.com> - 8.2.1-3
9ef3c2
- Rebuild for x86_64 only.
9ef3c2
9ef3c2
* Wed Jan 07 2015 Josh Stone <jistone@redhat.com> - 8.2.1-2
9ef3c2
- Rebuild for releng updates.
9ef3c2
9ef3c2
* Wed Dec 17 2014 Josh Stone <jistone@redhat.com> - 8.2.1-1
9ef3c2
- Update to point release 8.2.1.
9ef3c2
9ef3c2
* Tue Aug 19 2014 Josh Stone <jistone@redhat.com> - 8.2.0-1
9ef3c2
- final rebase to 8.2.0, using upstream tag "v8.2.0.1"
9ef3c2
9ef3c2
* Thu Jul 24 2014 Josh Stone <jistone@redhat.com> - 8.2.0-0.440.gde280f74f40e
9ef3c2
- update to a newer pre-8.2.0 snapshot
9ef3c2
9ef3c2
* Wed May 21 2014 Josh Stone <jistone@redhat.com> - 8.2.0-0.374.g593fb2773a48
9ef3c2
- more libdyninstAPI_RT symbols, and add testsuite requires
9ef3c2
9ef3c2
* Wed May 21 2014 Josh Stone <jistone@redhat.com> - 8.2.0-0.373.geaba204a72a3
9ef3c2
- fix libdyninstAPI_RT.so symbol visibility
9ef3c2
9ef3c2
* Tue May 20 2014 Josh Stone <jistone@redhat.com> - 8.2.0-0.372.gdfd4a8842f4c
9ef3c2
- prerelease build of dyninst 8.2.0
9ef3c2
9ef3c2
* Tue Nov 26 2013 Josh Stone <jistone@redhat.com> 8.0-6dw
9ef3c2
- rhbz987096: backported upstream patches for mid-syscall PTRACE_EVENTs
9ef3c2
9ef3c2
* Wed Apr 17 2013 Josh Stone <jistone@redhat.com> 8.0-5dw
9ef3c2
- rhbz855981: backported upstream patch to remove missing-dwarf asserts
9ef3c2
9ef3c2
* Tue Feb 26 2013 Frank Ch. Eigler <fche@redhat.com> 8.0-4dw
9ef3c2
- fix %attr() of testsuite files
9ef3c2
9ef3c2
* Tue Feb 26 2013 Josh Stone <jistone@redhat.com> 8.0-3dw
9ef3c2
- rhbz915820: Add a dyninst-testsuite package.
9ef3c2
9ef3c2
* Thu Jan 31 2013 Frank Ch. Eigler <fche@redhat.com> - 8.0-2dw
9ef3c2
- convert to scl
9ef3c2
- bundle libdwarf temporarily
9ef3c2
9ef3c2
* Tue Nov 20 2012 Josh Stone <jistone@redhat.com>
9ef3c2
- Tweak the configure/make commands
9ef3c2
- Disable the testsuite via configure.
9ef3c2
- Set the private includedir and libdir via configure.
9ef3c2
- Set VERBOSE_COMPILATION for make.
9ef3c2
- Use DESTDIR for make install.
9ef3c2
9ef3c2
* Mon Nov 19 2012 Josh Stone <jistone@redhat.com> 8.0-1
9ef3c2
- Update to release 8.0.
9ef3c2
- Updated "%files doc" to reflect renames.
9ef3c2
- Drop the unused BuildRequires libxml2-devel.
9ef3c2
- Drop the 7.99.x version-munging patch.
9ef3c2
9ef3c2
* Fri Nov 09 2012 Josh Stone <jistone@redhat.com> 7.99.2-0.29
9ef3c2
- Rebase to git e99d7070bbc39c76d6d528db530046c22681c17e
9ef3c2
9ef3c2
* Mon Oct 29 2012 Josh Stone <jistone@redhat.com> 7.99.2-0.28
9ef3c2
- Bump to 7.99.2 per abi-compliance-checker results
9ef3c2
9ef3c2
* Fri Oct 26 2012 Josh Stone <jistone@redhat.com> 7.99.1-0.27
9ef3c2
- Rebase to git dd8f40b7b4742ad97098613876efeef46d3d9e65
9ef3c2
- Use _smp_mflags to enable building in parallel.
9ef3c2
9ef3c2
* Wed Oct 03 2012 Josh Stone <jistone@redhat.com> 7.99.1-0.26
9ef3c2
- Rebase to git 557599ad7417610f179720ad88366c32a0557127
9ef3c2
9ef3c2
* Thu Sep 20 2012 Josh Stone <jistone@redhat.com> 7.99.1-0.25
9ef3c2
- Rebase on newer git tree.
9ef3c2
- Bump the fake version to 7.99.1 to account for ABI differences.
9ef3c2
- Enforce the minimum libdwarf version.
9ef3c2
- Drop the upstreamed R_PPC_NUM patch.
9ef3c2
9ef3c2
* Wed Aug 15 2012 Karsten Hopp <karsten@redhat.com> 7.99-0.24
9ef3c2
- check if R_PPC_NUM is defined before using it, similar to R_PPC64_NUM
9ef3c2
9ef3c2
* Mon Jul 30 2012 Josh Stone <jistone@redhat.com> 7.99-0.23
9ef3c2
- Rebase on newer git tree.
9ef3c2
- Update license files with upstream additions.
9ef3c2
- Split documentation into -doc subpackage.
9ef3c2
- Claim ownership of %{_libdir}/dyninst.
9ef3c2
9ef3c2
* Fri Jul 27 2012 William Cohen <wcohen@redhat.com> - 7.99-0.22
9ef3c2
- Correct requires for dyninst-devel.
9ef3c2
9ef3c2
* Wed Jul 25 2012 Josh Stone <jistone@redhat.com> - 7.99-0.21
9ef3c2
- Rebase on newer git tree
9ef3c2
- Update context in dyninst-git.patch
9ef3c2
- Drop dyninst-delete_array.patch
9ef3c2
- Drop dyninst-common-makefile.patch
9ef3c2
9ef3c2
* Wed Jul 18 2012 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 7.99-0.20
9ef3c2
- Rebuilt for https://fedoraproject.org/wiki/Fedora_18_Mass_Rebuild
9ef3c2
9ef3c2
* Mon Jul 16 2012 William Cohen <wcohen@redhat.com> - 7.99-0.19
9ef3c2
- Patch common/i386-unknown-linux2.4/Makefile to build.
9ef3c2
9ef3c2
* Fri Jul 13 2012 William Cohen <wcohen@redhat.com> - 7.99-0.18
9ef3c2
- Rebase on newer git tree the has a number of merges into it.
9ef3c2
- Adjust spec file to allow direct use of git patches
9ef3c2
- Fix to eliminate unused varables.
9ef3c2
- Proper delete for array.
9ef3c2
9ef3c2
* Thu Jun 28 2012 William Cohen <wcohen@redhat.com> - 7.99-0.17
9ef3c2
- Rebase on newer git repo.
9ef3c2
9ef3c2
* Thu Jun 28 2012 William Cohen <wcohen@redhat.com> - 7.99-0.16
9ef3c2
- Eliminate dynptr.h file use with rebase on newer git repo.
9ef3c2
9ef3c2
* Mon Jun 25 2012 William Cohen <wcohen@redhat.com> - 7.99-0.14
9ef3c2
- Rebase on newer git repo.
9ef3c2
9ef3c2
* Tue Jun 19 2012 William Cohen <wcohen@redhat.com> - 7.99-0.12
9ef3c2
- Fix static library and header file permissions.
9ef3c2
- Use sources from the dyninst git repositories.
9ef3c2
- Fix 32-bit library versioning for libdyninstAPI_RT_m32.so.
9ef3c2
9ef3c2
* Wed Jun 13 2012 William Cohen <wcohen@redhat.com> - 7.99-0.11
9ef3c2
- Fix library versioning.
9ef3c2
- Move .so links to dyninst-devel.
9ef3c2
- Remove unneded clean section.
9ef3c2
9ef3c2
* Fri May 11 2012 William Cohen <wcohen@redhat.com> - 7.0.1-0.9
9ef3c2
- Clean up Makefile rules.
9ef3c2
9ef3c2
* Sat May 5 2012 William Cohen <wcohen@redhat.com> - 7.0.1-0.8
9ef3c2
- Clean up spec file.
9ef3c2
9ef3c2
* Wed May 2 2012 William Cohen <wcohen@redhat.com> - 7.0.1-0.7
9ef3c2
- Use "make install" and do staged build.
9ef3c2
- Use rpm configure macro.
9ef3c2
9ef3c2
* Thu Mar 15 2012 William Cohen <wcohen@redhat.com> - 7.0.1-0.5
9ef3c2
- Nuke the bundled boost files and use the boost-devel rpm instead.
9ef3c2
9ef3c2
* Mon Mar 12 2012 William Cohen <wcohen@redhat.com> - 7.0.1-0.4
9ef3c2
- Initial submission of dyninst spec file.