5c5d2c
# Default to no static libraries
5c5d2c
%{!?with_static: %global with_static 0}
5c5d2c
%bcond_with bundled_libpfm
5c5d2c
# rdma is not available
5c5d2c
%ifarch %{arm}
5c5d2c
%{!?with_rdma: %global with_rdma 0}
5c5d2c
%else
5c5d2c
%{!?with_rdma: %global with_rdma 1}
5c5d2c
%endif
5c5d2c
%{!?with_pcp: %global with_pcp 1}
5c5d2c
Summary: Performance Application Programming Interface
5c5d2c
Name: papi
5c5d2c
Version: 6.0.0
e80e9a
Release: 12%{?dist}
5c5d2c
License: BSD
5c5d2c
Requires: papi-libs = %{version}-%{release}
5c5d2c
URL: http://icl.cs.utk.edu/papi/
5c5d2c
# The upstream papi tar.gz file include iozone source code in it.
5c5d2c
# The license for iozone source code is not compatible, so it needs
5c5d2c
# to be eliminated from the srpm.
5c5d2c
# The iozone code has been removed from the upstream papi git repo
5c5d2c
# so when papi is rebased to a newer version it can be used as is.
5c5d2c
Source0: http://icl.cs.utk.edu/projects/papi/downloads/%{name}-%{version}-noiozone.tar.gz
5c5d2c
Patch1: papi-python3.patch
5c5d2c
Patch2: papi-a64fx.patch
5c5d2c
Patch4: papi-config.patch
5c5d2c
Patch5: papi-nostatic.patch
5c5d2c
Patch6: papi-lto.patch
e80e9a
Patch7: papi-rhbz1923967.patch
5c5d2c
BuildRequires: make
5c5d2c
BuildRequires: autoconf
5c5d2c
BuildRequires: doxygen
5c5d2c
BuildRequires: ncurses-devel
5c5d2c
BuildRequires: gcc-gfortran
5c5d2c
BuildRequires: kernel-headers >= 2.6.32
5c5d2c
BuildRequires: chrpath
5c5d2c
BuildRequires: lm_sensors-devel
5c5d2c
%if %{without bundled_libpfm}
5c5d2c
BuildRequires: libpfm-devel >= 4.6.0-1
5c5d2c
%if %{with_static}
5c5d2c
BuildRequires: libpfm-static >= 4.6.0-1
5c5d2c
%endif
5c5d2c
%endif
5c5d2c
# Following required for net component
5c5d2c
BuildRequires: net-tools
5c5d2c
%if  %{with_rdma}
5c5d2c
# Following required for inifiband component
5c5d2c
BuildRequires: rdma-core-devel
5c5d2c
BuildRequires: infiniband-diags-devel
5c5d2c
%endif
5c5d2c
%if %{with_pcp}
5c5d2c
BuildRequires: pcp-libs-devel
5c5d2c
%endif
5c5d2c
BuildRequires: perl-generators
5c5d2c
#Right now libpfm does not know anything about s390 and will fail
5c5d2c
ExcludeArch: s390 s390x
5c5d2c
5c5d2c
%description
5c5d2c
PAPI provides a programmer interface to monitor the performance of
5c5d2c
running programs.
5c5d2c
5c5d2c
%package libs
5c5d2c
Summary: Libraries for PAPI clients
5c5d2c
%description libs
5c5d2c
This package contains the run-time libraries for any application that wishes
5c5d2c
to use PAPI.
5c5d2c
5c5d2c
%package devel
5c5d2c
Summary: Header files for the compiling programs with PAPI
5c5d2c
Requires: papi = %{version}-%{release}
5c5d2c
Requires: papi-libs = %{version}-%{release}
5c5d2c
Requires: pkgconfig
5c5d2c
%description devel
5c5d2c
PAPI-devel includes the C header files that specify the PAPI user-space
5c5d2c
libraries and interfaces. This is required for rebuilding any program
5c5d2c
that uses PAPI.
5c5d2c
5c5d2c
%package testsuite
5c5d2c
Summary: Set of tests for checking PAPI functionality
5c5d2c
Requires: papi = %{version}-%{release}
5c5d2c
Requires: papi-libs = %{version}-%{release}
5c5d2c
%description testsuite
5c5d2c
PAPI-testsuite includes compiled versions of papi tests to ensure
5c5d2c
that PAPI functions on particular hardware.
5c5d2c
5c5d2c
%if %{with_static}
5c5d2c
%package static
5c5d2c
Summary: Static libraries for the compiling programs with PAPI
5c5d2c
Requires: papi = %{version}-%{release}
5c5d2c
%description static
5c5d2c
PAPI-static includes the static versions of the library files for
5c5d2c
the PAPI user-space libraries and interfaces.
5c5d2c
%endif
5c5d2c
5c5d2c
%prep
5c5d2c
%setup -q
5c5d2c
%patch1 -p1 -b .python3
5c5d2c
%patch2 -p1 -b .a64fx
5c5d2c
%patch4 -p1
5c5d2c
%patch5 -p1
5c5d2c
%patch6 -p1
e80e9a
%patch7 -p1
5c5d2c
5c5d2c
%build
5c5d2c
5c5d2c
%if %{without bundled_libpfm}
5c5d2c
# Build our own copy of libpfm.
5c5d2c
%global libpfm_config --with-pfm-incdir=%{_includedir} --with-pfm-libdir=%{_libdir}
5c5d2c
%endif
5c5d2c
5c5d2c
%if %{with_static}
5c5d2c
%global static_lib_config --with-static-lib=yes
5c5d2c
%else
5c5d2c
%global static_lib_config --with-static-lib=no
5c5d2c
%endif
5c5d2c
5c5d2c
# set up environment variable for the various components
5c5d2c
# cuda
5c5d2c
# host_micpower
5c5d2c
%if  %{with_rdma}
5c5d2c
  export PAPI_INFINIBAND_UMAD_ROOT=/usr
5c5d2c
%endif
5c5d2c
# lmsensors
5c5d2c
export PAPI_LMSENSORS_ROOT=/usr
5c5d2c
#pushd vmware; ./configure; popd
5c5d2c
%if %{with_pcp}
5c5d2c
%global pcp_enable pcp
5c5d2c
export PAPI_PCP_ROOT=/usr
5c5d2c
%endif
5c5d2c
5c5d2c
cd src
5c5d2c
autoconf
5c5d2c
%configure --with-perf-events \
5c5d2c
%{?libpfm_config} \
5c5d2c
%{?static_lib_config} \
5c5d2c
--with-shared-lib=yes --with-shlib --with-shlib-tools \
5c5d2c
--with-components="appio coretemp example infiniband lmsensors lustre micpower mx net %{?pcp_enable} rapl stealtime"
5c5d2c
# implicit enabled components: perf_event perf_event_uncore
5c5d2c
#components currently left out because of build configure/build issues
5c5d2c
# --with-components="bgpm coretemp_freebsd cuda host_micpower nvml vmware"
5c5d2c
5c5d2c
#DBG workaround to make sure libpfm just uses the normal CFLAGS
5c5d2c
DBG="" make %{?_smp_mflags}
5c5d2c
5c5d2c
#generate updated versions of the documentation
5c5d2c
#DBG workaround to make sure libpfm just uses the normal CFLAGS
5c5d2c
pushd ../doc
5c5d2c
DBG="" make
5c5d2c
DBG="" make install
5c5d2c
popd
5c5d2c
5c5d2c
%install
5c5d2c
rm -rf $RPM_BUILD_ROOT
5c5d2c
cd src
5c5d2c
make DESTDIR=$RPM_BUILD_ROOT LDCONFIG=/bin/true install-all
5c5d2c
5c5d2c
chrpath --delete $RPM_BUILD_ROOT%{_libdir}/*.so*
5c5d2c
5c5d2c
%files
5c5d2c
%{_bindir}/*
5c5d2c
%dir /usr/share/papi
5c5d2c
/usr/share/papi/papi_events.csv
5c5d2c
%doc INSTALL.txt README.md LICENSE.txt RELEASENOTES.txt
5c5d2c
%doc %{_mandir}/man1/*
5c5d2c
5c5d2c
%ldconfig_scriptlets libs
5c5d2c
5c5d2c
%files libs
5c5d2c
%{_libdir}/*.so.*
5c5d2c
%doc INSTALL.txt README.md LICENSE.txt RELEASENOTES.txt
5c5d2c
5c5d2c
%files devel
5c5d2c
%{_includedir}/*.h
5c5d2c
%if %{with bundled_libpfm}
5c5d2c
%{_includedir}/perfmon/*.h
5c5d2c
%endif
5c5d2c
%{_libdir}/*.so
5c5d2c
%{_libdir}/pkgconfig/papi*.pc
5c5d2c
%doc %{_mandir}/man3/*
5c5d2c
5c5d2c
%files testsuite
5c5d2c
/usr/share/papi/run_tests*
5c5d2c
/usr/share/papi/ctests
5c5d2c
/usr/share/papi/ftests
5c5d2c
/usr/share/papi/validation_tests
5c5d2c
/usr/share/papi/components
5c5d2c
/usr/share/papi/testlib
5c5d2c
5c5d2c
%if %{with_static}
5c5d2c
%files static
5c5d2c
%{_libdir}/*.a
5c5d2c
%endif
5c5d2c
5c5d2c
%changelog
e80e9a
* Thu May 26 2022 William Cohen <wcohen@redhat.com> - 6.0.0-12
e80e9a
- Disable problematic IBM Power9 events. (RHBZ#1923967)
e80e9a
5c5d2c
* Thu Nov 04 2021 William Cohen <wcohen@redhat.com> - 6.0.0-11
5c5d2c
- Allow build with LTO enable. rhbz#1986635
5c5d2c
5c5d2c
* Mon Aug 09 2021 Mohan Boddu <mboddu@redhat.com> - 6.0.0-10
5c5d2c
- Rebuilt for IMA sigs, glibc 2.34, aarch64 flags
5c5d2c
  Related: rhbz#1991688
5c5d2c
5c5d2c
* Wed Jun 16 2021 William Cohen <wcohen@redhat.com> - 6.0.0-9
5c5d2c
- Excise iozone code from papi source tarball. Resolves: rhbz#1972870
5c5d2c
5c5d2c
* Fri Apr 16 2021 Mohan Boddu <mboddu@redhat.com> - 6.0.0-8
5c5d2c
- Rebuilt for RHEL 9 BETA on Apr 15th 2021. Related: rhbz#1947937
5c5d2c
5c5d2c
* Thu Jan 28 2021 William Cohen <wcohen@redhat.com> - 6.0.0-7
5c5d2c
- By default disable genaration of static libraries.
5c5d2c
5c5d2c
* Tue Jan 26 2021 Fedora Release Engineering <releng@fedoraproject.org> - 6.0.0-6
5c5d2c
- Rebuilt for https://fedoraproject.org/wiki/Fedora_34_Mass_Rebuild
5c5d2c
5c5d2c
* Thu Dec 17 2020 William Cohen <wcohen@redhat.com> - 6.0.0-5
5c5d2c
- Remove iozone source code. (#1901077)
5c5d2c
5c5d2c
* Mon Nov 09 2020 William Cohen <wcohen@redhat.com> - 6.0.0-4
5c5d2c
- Add Fujitsu A64FX presets.
5c5d2c
5c5d2c
* Tue Jul 28 2020 Fedora Release Engineering <releng@fedoraproject.org> - 6.0.0-3
5c5d2c
- Rebuilt for https://fedoraproject.org/wiki/Fedora_33_Mass_Rebuild
5c5d2c
5c5d2c
* Wed Jul 01 2020 Jeff Law <law@redhat.com> - 6.0.0-2
5c5d2c
- Disable LTO
5c5d2c
5c5d2c
* Wed Mar 04 2020 William Cohen <wcohen@redhat.com> - 6.0.0-1
5c5d2c
- Rebase to official papi-6.0.0.
5c5d2c
5c5d2c
* Wed Jan 29 2020 Fedora Release Engineering <releng@fedoraproject.org> - 5.7.0-4
5c5d2c
- Rebuilt for https://fedoraproject.org/wiki/Fedora_32_Mass_Rebuild
5c5d2c
5c5d2c
* Fri Jul 26 2019 Fedora Release Engineering <releng@fedoraproject.org> - 5.7.0-3
5c5d2c
- Rebuilt for https://fedoraproject.org/wiki/Fedora_31_Mass_Rebuild
5c5d2c
5c5d2c
* Mon Mar 04 2019 William Cohen <wcohen@redhat.com> - 5.7.0-2
5c5d2c
- Rebase to official papi-5.7.0.
5c5d2c
5c5d2c
* Mon Feb 18 2019 William Cohen <wcohen@redhat.com> - 5.7.0-1
5c5d2c
- Rebase to papi-5.7.0.
5c5d2c
5c5d2c
* Fri Feb 01 2019 Fedora Release Engineering <releng@fedoraproject.org> - 5.6.0-10
5c5d2c
- Rebuilt for https://fedoraproject.org/wiki/Fedora_30_Mass_Rebuild
5c5d2c
5c5d2c
* Mon Jan 7 2019 William Cohen <wcohen@redhat.com> - 5.6.0-9
5c5d2c
- Correct typo in papi-testsuite description.
5c5d2c
- Add papi-libs for papi-testsuite and papi-devel.
5c5d2c
5c5d2c
* Fri Nov 2 2018 Fedora Release Engineering <releng@fedoraproject.org> - 5.6.0-8
5c5d2c
- Pull in patch to avoid division-by-0.
5c5d2c
5c5d2c
* Fri Jul 13 2018 Fedora Release Engineering <releng@fedoraproject.org> - 5.6.0-7
5c5d2c
- Rebuilt for https://fedoraproject.org/wiki/Fedora_29_Mass_Rebuild
5c5d2c
5c5d2c
* Thu May 17 2018 William Cohen <wcohen@redhat.com> - 5.6.0-6
5c5d2c
- Dynamically link utilities and tests to papi libraries.
5c5d2c
5c5d2c
* Mon Apr 30 2018 William Cohen <wcohen@redhat.com> - 5.6.0-5
5c5d2c
- Include various LDFLAGS/CFLAGS.
5c5d2c
5c5d2c
* Thu Feb 08 2018 Fedora Release Engineering <releng@fedoraproject.org> - 5.6.0-4
5c5d2c
- Rebuilt for https://fedoraproject.org/wiki/Fedora_28_Mass_Rebuild
5c5d2c
5c5d2c
* Wed Jan 31 2018 William Cohen <wcohen@redhat.com> - 5.6.0-3
5c5d2c
- Bump and rebuild.
5c5d2c
5c5d2c
* Thu Dec 21 2017 William Cohen <wcohen@redhat.com> - 5.6.0-2
5c5d2c
- Correct infiniband buildrequires.
5c5d2c
5c5d2c
* Thu Dec 21 2017 William Cohen <wcohen@redhat.com> - 5.6.0-1
5c5d2c
- Rebase to papi-5.6.0.
5c5d2c
5c5d2c
* Mon Aug 28 2017 Honggang LI <honli@redhat.com> - 5.5.1-6
5c5d2c
- Disable RDMA support on ARM32
5c5d2c
5c5d2c
* Thu Aug 03 2017 Fedora Release Engineering <releng@fedoraproject.org> - 5.5.1-5
5c5d2c
- Rebuilt for https://fedoraproject.org/wiki/Fedora_27_Binutils_Mass_Rebuild
5c5d2c
5c5d2c
* Thu Jul 27 2017 Fedora Release Engineering <releng@fedoraproject.org> - 5.5.1-4
5c5d2c
- Rebuilt for https://fedoraproject.org/wiki/Fedora_27_Mass_Rebuild
5c5d2c
5c5d2c
* Sat Feb 11 2017 Fedora Release Engineering <releng@fedoraproject.org> - 5.5.1-3
5c5d2c
- Rebuilt for https://fedoraproject.org/wiki/Fedora_26_Mass_Rebuild
5c5d2c
5c5d2c
* Thu Feb 2 2017 William Cohen <wcohen@redhat.com> - 5.5.1-2
5c5d2c
- Bump version and rebuild due to new libgfortan.so version.
5c5d2c
5c5d2c
* Fri Nov 18 2016 Fedora Release Engineering <releng@fedoraproject.org> - 5.5.1-1
5c5d2c
- Rebase to papi-5.5.1.
5c5d2c
5c5d2c
* Wed Sep 14 2016 Fedora Release Engineering <releng@fedoraproject.org> - 5.5.0-1
5c5d2c
- Rebase to papi-5.5.0.
5c5d2c
5c5d2c
* Thu Feb 04 2016 Fedora Release Engineering <releng@fedoraproject.org> - 5.4.3-2
5c5d2c
- Rebuilt for https://fedoraproject.org/wiki/Fedora_24_Mass_Rebuild
5c5d2c
5c5d2c
* Tue Jan 26 2016 William Cohen <wcohen@redhat.com> - 5.4.3-1
5c5d2c
- Rebase to papi-5.4.3.
5c5d2c
5c5d2c
* Thu Jun 18 2015 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 5.4.1-3
5c5d2c
- Rebuilt for https://fedoraproject.org/wiki/Fedora_23_Mass_Rebuild
5c5d2c
5c5d2c
* Fri Mar 6 2015 William Cohen <wcohen@redhat.com> - 5.4.1-2
5c5d2c
- Make sure using libpfm-4.6.0.
5c5d2c
5c5d2c
* Tue Mar 3 2015 William Cohen <wcohen@redhat.com> - 5.4.1-1
5c5d2c
- Rebase to papi-5.4.1.
5c5d2c
5c5d2c
* Wed Feb 11 2015 William Cohen <wcohen@redhat.com> - 5.4.0-3
5c5d2c
- Bump version and rebuild.
5c5d2c
5c5d2c
* Thu Dec 18 2014 William Cohen <wcohen@redhat.com> - 5.4.0-2
5c5d2c
- Split out papi-libs as separate subpackage. (#1172875)
5c5d2c
5c5d2c
* Mon Nov 17 2014 William Cohen <wcohen@redhat.com> - 5.4.0-1
5c5d2c
- Rebase to papi-5.4.0.
5c5d2c
5c5d2c
* Sun Aug 17 2014 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 5.3.2-2
5c5d2c
- Rebuilt for https://fedoraproject.org/wiki/Fedora_21_22_Mass_Rebuild
5c5d2c
5c5d2c
* Mon Aug 4 2014 William Cohen <wcohen@redhat.com> - 5.3.2-1
5c5d2c
- Rebase to 5.3.2.
5c5d2c
5c5d2c
* Fri Jun 06 2014 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 5.3.0-2.16.ga7f6159
5c5d2c
- Rebuilt for https://fedoraproject.org/wiki/Fedora_21_Mass_Rebuild
5c5d2c
5c5d2c
* Fri Jan 17 2014 Lukas Berk <lberk@redhat.com> - 5.3.0-1.16.ga7f6159
5c5d2c
- Automated weekly rawhide release
5c5d2c
5c5d2c
* Thu Jan 16 2014 William Cohen <wcohen@redhat.com> - 5.3.0-1
5c5d2c
- Rebase to 5.3.0.
5c5d2c
5c5d2c
* Tue Jan 14 2014 William Cohen <wcohen@redhat.com> - 5.2.0-5
5c5d2c
- Add presets for Intel Silvermont.
5c5d2c
5c5d2c
* Mon Jan 13 2014 William Cohen <wcohen@redhat.com> - 5.2.0-4
5c5d2c
- Add presets for Haswell and Ivy Bridge.
5c5d2c
5c5d2c
* Wed Aug 14 2013 William Cohen <wcohen@redhat.com> - 5.2.0-2
5c5d2c
- Enable infiniband and stealtime components.
5c5d2c
5c5d2c
* Wed Aug 07 2013 William Cohen <wcohen@redhat.com> - 5.2.0-1
5c5d2c
- Rebase to 5.2.0
5c5d2c
5c5d2c
* Sat Aug 03 2013 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 5.1.1-8
5c5d2c
- Rebuilt for https://fedoraproject.org/wiki/Fedora_20_Mass_Rebuild
5c5d2c
5c5d2c
* Wed Jul 24 2013 William Cohen <wcohen@redhat.com> - 5.1.1-7
5c5d2c
- rhbz830275 - Add support for POWER8 processor to PAPI
5c5d2c
5c5d2c
* Mon Jul 22 2013 William Cohen <wcohen@redhat.com> - 5.1.1-6
5c5d2c
- Add autoconf buildrequires.
5c5d2c
5c5d2c
* Mon Jul 22 2013 William Cohen <wcohen@redhat.com> - 5.1.1-5
5c5d2c
- rhbz986673 - /usr/lib64/libpapi.so is unowned
5c5d2c
- Package files in /usr/share/papi only once.
5c5d2c
- Avoid dependency problem with parallel make of man pages.
5c5d2c
5c5d2c
* Fri Jul 19 2013 William Cohen <wcohen@redhat.com> - 5.1.1-4
5c5d2c
- Correct changelog.
5c5d2c
5c5d2c
* Fri Jul 5 2013 William Cohen <wcohen@redhat.com> - 5.1.1-3
5c5d2c
- Add man page corrections/updates.
5c5d2c
5c5d2c
* Fri Jun 28 2013 William Cohen <wcohen@redhat.com> - 5.1.1-2
5c5d2c
- Add testsuite subpackage.
5c5d2c
5c5d2c
* Thu May 30 2013 William Cohen <wcohen@redhat.com> - 5.1.1-1
5c5d2c
- Rebase to 5.1.1
5c5d2c
5c5d2c
* Mon Apr 15 2013 William Cohen <wcohen@redhat.com> - 5.1.0.2-2
5c5d2c
- Fix arm FTBS rhbz 951806.
5c5d2c
5c5d2c
* Tue Apr 9 2013 William Cohen <wcohen@redhat.com> - 5.1.0.2-1
5c5d2c
- Rebase to 5.1.0.2
5c5d2c
5c5d2c
* Thu Feb 14 2013 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 5.0.1-6
5c5d2c
- Rebuilt for https://fedoraproject.org/wiki/Fedora_19_Mass_Rebuild
5c5d2c
5c5d2c
* Mon Jan 14 2013 William Cohen <wcohen@redhat.com> - 5.0.1-5
5c5d2c
- Add armv7 cortex a15 presets.
5c5d2c
5c5d2c
* Tue Dec 04 2012 William Cohen <wcohen@redhat.com> - 5.0.1-4
5c5d2c
- Disable ldconfig on install.
5c5d2c
5c5d2c
* Thu Nov 08 2012 William Cohen <wcohen@redhat.com> - 5.0.1-3
5c5d2c
- Avoid duplicated shared library.
5c5d2c
5c5d2c
* Wed Oct 03 2012 William Cohen <wcohen@redhat.com> - 5.0.1-2
5c5d2c
- Make sure using compatible version of libpfm.
5c5d2c
5c5d2c
* Thu Sep 20 2012 William Cohen <wcohen@redhat.com> - 5.0.1-1
5c5d2c
- Rebase to 5.0.1.
5c5d2c
5c5d2c
* Mon Sep 10 2012 William Cohen <wcohen@redhat.com> - 5.0.0-6
5c5d2c
- Back port fixes for Intel Ivy Bridge event presets.
5c5d2c
5c5d2c
* Thu Aug 30 2012 William Cohen <wcohen@redhat.com> - 5.0.0-5
5c5d2c
- Fixes to make papi with unbundled libpfm.
5c5d2c
5c5d2c
* Mon Aug 27 2012 William Cohen <wcohen@redhat.com> - 5.0.0-2
5c5d2c
- Keep libpfm unbundled.
5c5d2c
5c5d2c
* Fri Aug 24 2012 William Cohen <wcohen@redhat.com> - 5.0.0-1
5c5d2c
- Rebase to 5.0.0.
5c5d2c
5c5d2c
* Fri Jul 20 2012 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 4.4.0-5
5c5d2c
- Rebuilt for https://fedoraproject.org/wiki/Fedora_18_Mass_Rebuild
5c5d2c
5c5d2c
* Mon Jun 11 2012 William Cohen <wcohen@redhat.com> - 4.4.0-4
5c5d2c
- Use siginfo_t rather than struct siginfo.
5c5d2c
5c5d2c
* Mon Jun 11 2012 William Cohen <wcohen@redhat.com> - 4.4.0-3
5c5d2c
- Correct build requires.
5c5d2c
5c5d2c
* Mon Jun 11 2012 William Cohen <wcohen@redhat.com> - 4.4.0-2
5c5d2c
- Unbundle libpfm4 from papi.
5c5d2c
- Correct description spellings.
5c5d2c
- Remove unused test section.
5c5d2c
5c5d2c
* Fri Apr 20 2012 William Cohen <wcohen@redhat.com> - 4.4.0-1
5c5d2c
- Rebase to 4.4.0.
5c5d2c
5c5d2c
* Fri Mar 9 2012 William Cohen <wcohen@redhat.com> - 4.2.1-2
5c5d2c
- Fix overrun in lmsensor component. (rhbz797692)
5c5d2c
5c5d2c
* Tue Feb 14 2012 William Cohen <wcohen@redhat.com> - 4.2.1-1
5c5d2c
- Rebase to 4.2.1.
5c5d2c
5c5d2c
* Fri Jan 13 2012 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 4.2.0-4
5c5d2c
- Rebuilt for https://fedoraproject.org/wiki/Fedora_17_Mass_Rebuild
5c5d2c
5c5d2c
* Wed Nov 02 2011 William Cohen <wcohen@redhat.com> - 4.2.0-3
5c5d2c
- Remove unwanted man1/*.c.1 files. (rhbz749725)
5c5d2c
5c5d2c
* Mon Oct 31 2011 William Cohen <wcohen@redhat.com> - 4.2.0-2
5c5d2c
- Include appropirate man pages with papi rpm. (rhbz749725)
5c5d2c
- Rebase to papi-4.2.0, fixup for coretemp component. (rhbz746851)
5c5d2c
5c5d2c
* Thu Oct 27 2011 William Cohen <wcohen@redhat.com> - 4.2.0-1
5c5d2c
- Rebase to papi-4.2.0.
5c5d2c
5c5d2c
* Fri Aug 12 2011 William Cohen <wcohen@redhat.com> - 4.1.3-3
5c5d2c
- Provide papi-static.
5c5d2c
5c5d2c
* Thu May 12 2011 William Cohen <wcohen@redhat.com> - 4.1.3-2
5c5d2c
- Use corrected papi-4.1.3.
5c5d2c
5c5d2c
* Thu May 12 2011 William Cohen <wcohen@redhat.com> - 4.1.3-1
5c5d2c
- Rebase to papi-4.1.3
5c5d2c
5c5d2c
* Tue Feb 08 2011 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 4.1.2.1-2
5c5d2c
- Rebuilt for https://fedoraproject.org/wiki/Fedora_15_Mass_Rebuild
5c5d2c
5c5d2c
* Mon Jan 24 2011 William Cohen <wcohen@redhat.com> - 4.1.2.1-1
5c5d2c
- Rebase to papi-4.1.2.1
5c5d2c
5c5d2c
* Fri Oct 1 2010 William Cohen <wcohen@redhat.com> - 4.1.1-1
5c5d2c
- Rebase to papi-4.1.1
5c5d2c
5c5d2c
* Tue Jun 22 2010 William Cohen <wcohen@redhat.com> - 4.1.0-1
5c5d2c
- Rebase to papi-4.1.0
5c5d2c
5c5d2c
* Mon May 17 2010 William Cohen <wcohen@redhat.com> - 4.0.0-5
5c5d2c
- Test run with upstream cvs version.
5c5d2c
5c5d2c
* Wed Feb 10 2010 William Cohen <wcohen@redhat.com> - 4.0.0-4
5c5d2c
- Resolves: rhbz562935 Rebase to papi-4.0.0 (correct ExcludeArch).
5c5d2c
5c5d2c
* Wed Feb 10 2010 William Cohen <wcohen@redhat.com> - 4.0.0-3
5c5d2c
- Resolves: rhbz562935 Rebase to papi-4.0.0 (bump nvr).
5c5d2c
5c5d2c
* Wed Feb 10 2010 William Cohen <wcohen@redhat.com> - 4.0.0-2
5c5d2c
- correct the ctests/shlib test
5c5d2c
- have PAPI_set_multiplex() return proper value
5c5d2c
- properly handle event unit masks
5c5d2c
- correct PAPI_name_to_code() to match events
5c5d2c
- Resolves: rhbz562935 Rebase to papi-4.0.0 
5c5d2c
5c5d2c
* Wed Jan 13 2010 William Cohen <wcohen@redhat.com> - 4.0.0-1
5c5d2c
- Generate papi.spec file for papi-4.0.0.