Blame SPECS/dyninst.spec

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