Blame SPECS/dyninst.spec

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