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