2007-01-12 01:32:05 +01:00
|
|
|
|
#
|
2007-07-04 23:42:58 +02:00
|
|
|
|
# spec file for package oprofile (Version 0.9.3_rc2)
|
2007-01-12 01:32:05 +01:00
|
|
|
|
#
|
|
|
|
|
# Copyright (c) 2007 SUSE LINUX Products GmbH, Nuernberg, Germany.
|
|
|
|
|
# This file and all modifications and additions to the pristine
|
|
|
|
|
# package are under the same license as the package itself.
|
|
|
|
|
#
|
|
|
|
|
# Please submit bugfixes or comments via http://bugs.opensuse.org/
|
|
|
|
|
#
|
|
|
|
|
|
|
|
|
|
# norootforbuild
|
|
|
|
|
|
|
|
|
|
Name: oprofile
|
|
|
|
|
BuildRequires: binutils-devel libxslt popt-devel qt3-devel update-desktop-files
|
|
|
|
|
URL: http://oprofile.sourceforge.net/
|
2007-07-04 23:42:58 +02:00
|
|
|
|
License: GPL v2 or later
|
2007-01-12 01:32:05 +01:00
|
|
|
|
Group: Development/Tools/Other
|
|
|
|
|
Autoreqprov: on
|
2007-07-04 23:42:58 +02:00
|
|
|
|
Version: 0.9.3_rc2
|
2007-06-18 18:27:23 +02:00
|
|
|
|
Release: 1
|
|
|
|
|
%define oversion %(echo %version | sed s/_/-/)
|
2007-01-12 01:32:05 +01:00
|
|
|
|
Summary: System-Wide Profiler for Linux Systems
|
|
|
|
|
BuildRoot: %{_tmppath}/%{name}-%{version}-build
|
2007-06-18 18:27:23 +02:00
|
|
|
|
Source: %{name}-%{oversion}.tar.gz
|
2007-01-12 01:32:05 +01:00
|
|
|
|
Source1: %{name}.desktop
|
2007-06-18 18:27:23 +02:00
|
|
|
|
Patch: %{name}-%{oversion}.diff
|
2007-01-12 01:32:05 +01:00
|
|
|
|
Summary: System-Wide Profiler for Linux Systems
|
|
|
|
|
Group: Development/Tools/Other
|
|
|
|
|
|
|
|
|
|
%description
|
|
|
|
|
OProfile is a system-wide profiler for Linux systems, capable of
|
|
|
|
|
profiling all running code at low overhead. OProfile is released under
|
|
|
|
|
the GNU GPL.
|
|
|
|
|
|
|
|
|
|
It consists of a kernel module and a daemon for collecting sample data,
|
|
|
|
|
and several post-profiling tools for turning data into information.
|
|
|
|
|
|
|
|
|
|
OProfile leverages the CPU hardware performance counters to enable
|
|
|
|
|
profiling of a wide variety of interesting statistics, which can also
|
|
|
|
|
be used for basic time-spent profiling. All code is profiled: hardware
|
|
|
|
|
and software interrupt handlers, kernel modules, the kernel, shared
|
|
|
|
|
libraries, and applications (the only exception being the oprofile
|
|
|
|
|
interrupt handler itself).
|
|
|
|
|
|
|
|
|
|
OProfile is currently in alpha status; however it has proven stable
|
|
|
|
|
over a large number of differing configurations. As always, there is no
|
|
|
|
|
warranty.
|
|
|
|
|
|
|
|
|
|
This is the package containing the userspace tools.
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
Authors:
|
|
|
|
|
--------
|
|
|
|
|
John Levon <moz@compsoc.man.ac.uk>
|
|
|
|
|
Philippe Elie <phil_e@clubinternet.fr>
|
|
|
|
|
Dave Jones <davej@suse.de>
|
|
|
|
|
Bob Montgomery <bobm@fc.hp.com>
|
|
|
|
|
|
|
|
|
|
%prep
|
2007-06-18 18:27:23 +02:00
|
|
|
|
%setup -q -n %{name}-%{oversion}
|
2007-01-12 01:32:05 +01:00
|
|
|
|
%patch
|
|
|
|
|
|
|
|
|
|
%build
|
|
|
|
|
./configure CFLAGS="$RPM_OPT_FLAGS" CXXFLAGS="$RPM_OPT_FLAGS" \
|
|
|
|
|
--prefix=/usr --mandir=%{_mandir} \
|
2007-06-18 18:27:23 +02:00
|
|
|
|
--with-kernel-support \
|
2007-01-12 01:32:05 +01:00
|
|
|
|
--with-qt-libraries=%_libdir/qt3/%_lib
|
|
|
|
|
make %{?jobs:-j%jobs}
|
|
|
|
|
|
|
|
|
|
%install
|
2007-06-18 18:27:23 +02:00
|
|
|
|
make DESTDIR=$RPM_BUILD_ROOT htmldir=%{_docdir}/oprofile install
|
2007-01-12 01:32:05 +01:00
|
|
|
|
%suse_update_desktop_file -i %name Development Profiling
|
|
|
|
|
|
|
|
|
|
%clean
|
|
|
|
|
rm -rf $RPM_BUILD_ROOT
|
|
|
|
|
|
|
|
|
|
%files
|
|
|
|
|
%defattr(-,root,root)
|
|
|
|
|
/usr/bin/*
|
|
|
|
|
/usr/share/applications/*.desktop
|
|
|
|
|
/usr/share/oprofile
|
2007-06-18 18:27:23 +02:00
|
|
|
|
%{_mandir}/man1/*
|
|
|
|
|
%doc doc/oprofile.html doc/internals.html doc/opreport.xsd
|
|
|
|
|
%doc COPYING README TODO ChangeLog
|
2007-01-12 01:32:05 +01:00
|
|
|
|
|
2007-06-18 18:27:23 +02:00
|
|
|
|
%changelog
|
2007-07-04 23:42:58 +02:00
|
|
|
|
* Wed Jul 04 2007 - schwab@suse.de
|
|
|
|
|
- Update to oprofile 0.9.3-rc2.
|
2007-06-18 18:27:23 +02:00
|
|
|
|
* Mon Jun 18 2007 - schwab@suse.de
|
|
|
|
|
- Update to oprofile 0.9.3-rc1.
|
2007-01-12 01:32:05 +01:00
|
|
|
|
* Thu Jan 11 2007 - schwab@suse.de
|
|
|
|
|
- Add binutils-devel to BuildRequires.
|
|
|
|
|
* Mon Sep 18 2006 - schwab@suse.de
|
|
|
|
|
- Update to oprofile 0.9.2 (no summary available).
|
|
|
|
|
* Fri Aug 18 2006 - schwab@suse.de
|
|
|
|
|
- Avoid crash in find_nearest_line [#193622].
|
|
|
|
|
* Wed May 31 2006 - schwab@suse.de
|
|
|
|
|
- Fix invalid string operation.
|
|
|
|
|
* Thu May 04 2006 - schwab@suse.de
|
|
|
|
|
- Fix last change.
|
|
|
|
|
* Mon Feb 27 2006 - schwab@suse.de
|
|
|
|
|
- Add events for power5+ [#152494].
|
|
|
|
|
* Fri Jan 27 2006 - mls@suse.de
|
|
|
|
|
- converted neededforbuild to BuildRequires
|
|
|
|
|
* Wed Jan 25 2006 - schwab@suse.de
|
|
|
|
|
- Integrate fixes for ppc64 events and groups [#130910, #137665].
|
|
|
|
|
* Mon Dec 12 2005 - schwab@suse.de
|
|
|
|
|
- Update to oprofile 0.9.1.
|
|
|
|
|
* Tue Nov 08 2005 - dmueller@suse.de
|
|
|
|
|
- don't build as root
|
|
|
|
|
* Wed Sep 28 2005 - schwab@suse.de
|
|
|
|
|
- Fix invalid C++.
|
|
|
|
|
* Wed Jul 06 2005 - schwab@suse.de
|
|
|
|
|
- Unpack compressed vmlinux [#52767].
|
|
|
|
|
- Use RPM_OPT_FLAGS.
|
|
|
|
|
* Tue Jun 07 2005 - schwab@suse.de
|
|
|
|
|
- Update to oprofile 0.9.
|
|
|
|
|
* Thu Mar 24 2005 - schwab@suse.de
|
|
|
|
|
- Update to oprofile 0.8.2.
|
|
|
|
|
* Thu Nov 04 2004 - schwab@suse.de
|
|
|
|
|
- Update to oprofile 0.8.1.
|
|
|
|
|
* Fri Sep 03 2004 - schwab@suse.de
|
|
|
|
|
- Update to oprofile 0.8.
|
|
|
|
|
* Mon Jun 28 2004 - skh@suse.de
|
|
|
|
|
- more fixes for #40468
|
|
|
|
|
- fixed print statement in op_help.c
|
|
|
|
|
- more power 4 events
|
|
|
|
|
- fixed incorrect event counter settings for power 4
|
|
|
|
|
* Tue Jun 08 2004 - skh@suse.de
|
|
|
|
|
- Update to fix for #40468: use correct event numbers for power5
|
|
|
|
|
events.
|
|
|
|
|
* Wed May 26 2004 - skh@suse.de
|
|
|
|
|
- Added default CYCLES event to the Power 4 and Power 5 event
|
|
|
|
|
files. (#40468)
|
|
|
|
|
* Tue May 25 2004 - skh@suse.de
|
|
|
|
|
- add user space support for ppc64 (#40468)
|
|
|
|
|
* Sun May 09 2004 - ak@suse.de
|
|
|
|
|
- Increase minimum count on P4 to 5000 for all events
|
|
|
|
|
- Automatically add the module path of the current kernel to oprofpp
|
|
|
|
|
(#36825)
|
|
|
|
|
- Fix 64bit uncleanness in symbol resolution (#36825)
|
|
|
|
|
* Sat Apr 10 2004 - aj@suse.de
|
|
|
|
|
- Remove kernel-source requirement.
|
|
|
|
|
* Wed Feb 04 2004 - skh@suse.de
|
|
|
|
|
- Updated to version 0.7.1
|
|
|
|
|
- Removed subpackage km_oprofile (it is part of the main kernel
|
|
|
|
|
distribution as of kernel 2.6)
|
|
|
|
|
- Don't build as root.
|
|
|
|
|
* Mon Oct 06 2003 - ak@suse.de
|
|
|
|
|
- Check if APIC is enabled instead of crashing (#31774)
|
|
|
|
|
Needs updated kernel.
|
|
|
|
|
* Sat Aug 16 2003 - adrian@suse.de
|
|
|
|
|
- add desktop file
|
|
|
|
|
* Thu Jul 31 2003 - skh@suse.de
|
|
|
|
|
- Updated to 0.6
|
|
|
|
|
* Fri Jun 20 2003 - mmj@suse.de
|
|
|
|
|
- Up to 0.5.4
|
|
|
|
|
* Fri Jun 13 2003 - mmj@suse.de
|
|
|
|
|
- Package all dirs
|
|
|
|
|
* Wed Jun 04 2003 - mmj@suse.de
|
|
|
|
|
- Make sure we get the right location for qt.
|
|
|
|
|
* Wed May 28 2003 - mmj@suse.de
|
|
|
|
|
- Update to 0.5.3
|
|
|
|
|
* Tue May 13 2003 - mmj@suse.de
|
|
|
|
|
- Use %%defattr
|
|
|
|
|
- Package forgotten files
|
|
|
|
|
* Mon Mar 31 2003 - mmj@suse.de
|
|
|
|
|
- Update to 0.5.2 including:
|
|
|
|
|
<EFBFBD> Docu overhaul
|
|
|
|
|
<EFBFBD> Feature additions
|
|
|
|
|
- Bzip2'ed sources
|
|
|
|
|
- Folded both automake patches into one patch
|
|
|
|
|
* Tue Mar 11 2003 - kukuk@suse.de
|
|
|
|
|
- Don't call depmod
|
|
|
|
|
* Mon Mar 10 2003 - ro@suse.de
|
|
|
|
|
- remove k_deflt from neededforbuild (cycle)
|
|
|
|
|
* Mon Mar 10 2003 - mmj@suse.de
|
|
|
|
|
- Fix typo
|
|
|
|
|
* Sat Mar 08 2003 - mmj@suse.de
|
|
|
|
|
- A go at fixing km_oprofile
|
|
|
|
|
* Mon Mar 03 2003 - duwe@suse.de
|
|
|
|
|
- split off km_oprofile
|
|
|
|
|
- tiny version update includes patches
|
|
|
|
|
* Mon Feb 24 2003 - mmj@suse.de
|
|
|
|
|
- Add patch from davej to make it not crash the box
|
|
|
|
|
* Sat Feb 15 2003 - adrian@suse.de
|
|
|
|
|
- minor dependency clean up
|
|
|
|
|
* Fri Feb 07 2003 - mmj@suse.de
|
|
|
|
|
- Really fix build on x86_64
|
|
|
|
|
* Tue Feb 04 2003 - mmj@suse.de
|
|
|
|
|
- Fix build on x86_64
|
|
|
|
|
* Tue Feb 04 2003 - mmj@suse.de
|
|
|
|
|
- Update to oprofile 0.5:
|
|
|
|
|
<EFBFBD> Pentium IV support, including support for HyperThreading, is
|
|
|
|
|
supported for 2.5 kernels (currently only in the -mm patchset).
|
|
|
|
|
<EFBFBD> Timer interrupt support for PA-RISC, ppc64, and sparc64 in 2.5
|
|
|
|
|
kernels is available. Userspace Alpha support has been added.
|
|
|
|
|
<EFBFBD> HyperThreading support for Pentium IV on 2.4 kernels is not yet
|
|
|
|
|
available. Note that PA-RISC and Alpha require kernel patches
|
|
|
|
|
not yet available in a released kernel tree.
|
|
|
|
|
<EFBFBD> Support for the IA-64 architecture has been added for 2.4 kernels.
|
|
|
|
|
<EFBFBD> OProfile's userspace now works correctly on all 64-bit platforms.
|
|
|
|
|
<EFBFBD> A new script, opcontrol, has been added to unify control of the
|
|
|
|
|
OProfile daemon and sample files. On 2.5, this allows separate
|
|
|
|
|
daemon startup and starting/stopping profiling.
|
|
|
|
|
<EFBFBD> Fixed upstream to compile with gcc 3.3
|
|
|
|
|
<EFBFBD> Several bugfixes
|
|
|
|
|
* Wed Jan 29 2003 - ro@suse.de
|
|
|
|
|
- fix build with gcc-3.3 (sluggish c++)
|
|
|
|
|
* Thu Nov 07 2002 - mmj@suse.de
|
|
|
|
|
- Update to 0.4 which now has kernel 2.5 support
|
|
|
|
|
* Thu Sep 12 2002 - mmj@suse.de
|
|
|
|
|
- Initial package, version 0.3 (x86 only for now)
|