| %{!?with_python: %global with_python 1} |
| %define python_sitearch %(python -c "from distutils.sysconfig import get_python_lib; print get_python_lib(1)") |
| %define python_prefix %(python -c "import sys; print sys.prefix") |
| |
| Name: libpfm |
| Version: 4.6.0 |
| Release: 1%{?dist} |
| |
| Summary: Library to encode performance events for use by perf tool |
| |
| Group: System Environment/Libraries |
| License: MIT |
| URL: http://perfmon2.sourceforge.net/ |
| Source0: http://sourceforge.net/projects/perfmon2/files/libpfm4/%{name}-%{version}.tar.gz |
| %if %{with_python} |
| BuildRequires: python-devel |
| BuildRequires: python-setuptools |
| BuildRequires: swig |
| %endif |
| BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root-%(%{__id_u} -n) |
| |
| %description |
| |
| libpfm4 is a library to help encode events for use with operating system |
| kernels performance monitoring interfaces. The current version provides support |
| for the perf_events interface available in upstream Linux kernels since v2.6.31. |
| |
| %package devel |
| Summary: Development library to encode performance events for perf_events based tools |
| Group: Development/Libraries |
| Requires: %{name} = %{version}-%{release} |
| |
| %description devel |
| Development library and header files to create performance monitoring |
| applications for the perf_events interface. |
| |
| %if %{with_python} |
| %package python |
| Summary: Python bindings for libpfm and perf_event_open system call |
| Group: Development/Languages |
| Requires: %{name} = %{version}-%{release} |
| |
| %description python |
| Python bindings for libpfm4 and perf_event_open system call. |
| %endif |
| |
| %prep |
| %setup -q |
| |
| %build |
| %if %{with_python} |
| %global python_config CONFIG_PFMLIB_NOPYTHON=n |
| %else |
| %global python_config CONFIG_PFMLIB_NOPYTHON=y |
| %endif |
| make %{python_config} %{?_smp_mflags} |
| |
| |
| %install |
| rm -rf $RPM_BUILD_ROOT |
| |
| %if %{with_python} |
| %global python_config CONFIG_PFMLIB_NOPYTHON=n |
| %else |
| %global python_config CONFIG_PFMLIB_NOPYTHON=y |
| %endif |
| |
| make \ |
| PREFIX=$RPM_BUILD_ROOT%{_prefix} \ |
| LIBDIR=$RPM_BUILD_ROOT%{_libdir} \ |
| PYTHON_PREFIX=$RPM_BUILD_ROOT/%{python_prefix} \ |
| %{python_config} \ |
| LDCONFIG=/bin/true \ |
| install |
| |
| %clean |
| rm -fr $RPM_BUILD_ROOT |
| |
| %post -p /sbin/ldconfig |
| %postun -p /sbin/ldconfig |
| |
| %files |
| %defattr(644,root,root,755) |
| %doc README |
| %attr(755,root,root) %{_libdir}/lib*.so* |
| |
| %files devel |
| %defattr(644,root,root,755) |
| %{_includedir}/* |
| %{_mandir}/man3/* |
| %{_libdir}/lib*.a |
| |
| %if %{with_python} |
| %files python |
| %defattr(644,root,root,755) |
| %attr(755,root,root) %{python_sitearch}/* |
| %endif |
| |
| %changelog |
| * Tue Feb 9 2016 William Cohen <[email protected]> 4.6.0-1 |
| - Update spec file. |
| |
| * Wed Nov 13 2013 Lukas Berk <[email protected]> 4.4.0-1 |
| - Intel IVB-EP support |
| - Intel IVB updates support |
| - Intel SNB updates support |
| - Intel SNB-EP uncore support |
| - ldlat support (PEBS-LL) |
| - New Intel Atom support |
| - bug fixes |
| |
| * Tue Aug 28 2012 Stephane Eranian <[email protected]> 4.3.0-1 |
| - ARM Cortex A15 support |
| - updated Intel Sandy Bridge core PMU events |
| - Intel Sandy Bridge desktop (model 42) uncore PMU support |
| - Intel Ivy Bridge support |
| - full perf_events generic event support |
| - updated perf_examples |
| - enabled Intel Nehalem/Westmere uncore PMU support |
| - AMD LLano processor supoprt (Fam 12h) |
| - AMD Turion rocessor supoprt (Fam 11h) |
| - Intel Atom Cedarview processor support |
| - Win32 compilation support |
| - perf_events excl attribute |
| - perf_events generic hw event aliases support |
| - many bug fixes |
| |
| * Wed Mar 14 2012 William Cohen <[email protected]> 4.2.0-2 |
| - Some spec file fixup. |
| |
| * Wed Jan 12 2011 Arun Sharma <[email protected]> 4.2.0-0 |
| Initial revision |