Blame SPECS/dyninst.spec

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