2021-01-29 04:24:28 +00:00
|
|
|
# Default to no static libraries
|
|
|
|
%{!?with_static: %global with_static 0}
|
2012-08-27 13:17:11 +00:00
|
|
|
%bcond_with bundled_libpfm
|
2017-12-22 00:06:51 +00:00
|
|
|
# rdma is not available
|
|
|
|
%ifarch %{arm}
|
|
|
|
%{!?with_rdma: %global with_rdma 0}
|
|
|
|
%else
|
|
|
|
%{!?with_rdma: %global with_rdma 1}
|
|
|
|
%endif
|
2023-12-18 17:26:43 +00:00
|
|
|
%ifarch %{ix86}
|
|
|
|
%{!?with_pcp: %global with_pcp (0%{?fedora} < 40 && 0%{?rhel} < 10)}
|
|
|
|
%else
|
2020-03-04 20:02:11 +00:00
|
|
|
%{!?with_pcp: %global with_pcp 1}
|
2023-12-18 17:26:43 +00:00
|
|
|
%endif
|
2009-10-26 20:42:20 +00:00
|
|
|
Summary: Performance Application Programming Interface
|
|
|
|
Name: papi
|
2023-12-21 15:28:20 +00:00
|
|
|
Version: 7.1.0
|
|
|
|
Release: 1%{?dist}
|
2023-08-09 18:18:09 +00:00
|
|
|
License: BSD-3-Clause
|
2014-12-18 21:41:38 +00:00
|
|
|
Requires: papi-libs = %{version}-%{release}
|
2009-10-26 20:42:20 +00:00
|
|
|
URL: http://icl.cs.utk.edu/papi/
|
2014-11-17 15:21:38 +00:00
|
|
|
Source0: http://icl.cs.utk.edu/projects/papi/downloads/%{name}-%{version}.tar.gz
|
2020-03-04 20:02:11 +00:00
|
|
|
Patch1: papi-python3.patch
|
2021-01-29 04:24:28 +00:00
|
|
|
Patch5: papi-nostatic.patch
|
2021-01-07 06:57:04 +00:00
|
|
|
BuildRequires: make
|
2013-07-22 17:19:52 +00:00
|
|
|
BuildRequires: autoconf
|
2013-07-05 21:27:17 +00:00
|
|
|
BuildRequires: doxygen
|
2009-10-26 20:42:20 +00:00
|
|
|
BuildRequires: ncurses-devel
|
|
|
|
BuildRequires: gcc-gfortran
|
2010-10-01 19:24:54 +00:00
|
|
|
BuildRequires: kernel-headers >= 2.6.32
|
2009-10-26 20:42:20 +00:00
|
|
|
BuildRequires: chrpath
|
2012-02-14 19:55:45 +00:00
|
|
|
BuildRequires: lm_sensors-devel
|
2012-06-11 14:56:20 +00:00
|
|
|
%if %{without bundled_libpfm}
|
2023-03-29 13:44:11 +00:00
|
|
|
BuildRequires: libpfm-devel >= 4.13.0-1
|
2021-01-29 04:24:28 +00:00
|
|
|
%if %{with_static}
|
2015-03-06 20:13:28 +00:00
|
|
|
BuildRequires: libpfm-static >= 4.6.0-1
|
2012-06-11 14:56:20 +00:00
|
|
|
%endif
|
2021-01-29 04:24:28 +00:00
|
|
|
%endif
|
2011-10-27 13:57:26 +00:00
|
|
|
# Following required for net component
|
|
|
|
BuildRequires: net-tools
|
2017-12-22 00:06:51 +00:00
|
|
|
%if %{with_rdma}
|
2011-10-27 13:57:26 +00:00
|
|
|
# Following required for inifiband component
|
2017-12-22 00:06:51 +00:00
|
|
|
BuildRequires: rdma-core-devel
|
|
|
|
BuildRequires: infiniband-diags-devel
|
2017-08-28 06:18:35 +00:00
|
|
|
%endif
|
2020-03-04 20:02:11 +00:00
|
|
|
%if %{with_pcp}
|
|
|
|
BuildRequires: pcp-libs-devel
|
|
|
|
%endif
|
2016-06-24 08:23:14 +00:00
|
|
|
BuildRequires: perl-generators
|
2009-11-19 16:32:53 +00:00
|
|
|
#Right now libpfm does not know anything about s390 and will fail
|
2010-06-22 19:01:35 +00:00
|
|
|
ExcludeArch: s390 s390x
|
2009-10-26 20:42:20 +00:00
|
|
|
|
|
|
|
%description
|
|
|
|
PAPI provides a programmer interface to monitor the performance of
|
|
|
|
running programs.
|
|
|
|
|
2014-12-18 21:41:38 +00:00
|
|
|
%package libs
|
2023-08-09 18:18:09 +00:00
|
|
|
License: BSD-3-Clause
|
2014-12-18 21:41:38 +00:00
|
|
|
Summary: Libraries for PAPI clients
|
|
|
|
%description libs
|
|
|
|
This package contains the run-time libraries for any application that wishes
|
|
|
|
to use PAPI.
|
|
|
|
|
2009-10-26 20:42:20 +00:00
|
|
|
%package devel
|
2023-08-09 18:18:09 +00:00
|
|
|
License: BSD-3-Clause
|
2009-10-26 20:42:20 +00:00
|
|
|
Summary: Header files for the compiling programs with PAPI
|
|
|
|
Requires: papi = %{version}-%{release}
|
2019-01-07 15:40:05 +00:00
|
|
|
Requires: papi-libs = %{version}-%{release}
|
2015-03-03 15:03:51 +00:00
|
|
|
Requires: pkgconfig
|
2009-10-26 20:42:20 +00:00
|
|
|
%description devel
|
2012-06-11 14:56:20 +00:00
|
|
|
PAPI-devel includes the C header files that specify the PAPI user-space
|
2009-10-26 20:42:20 +00:00
|
|
|
libraries and interfaces. This is required for rebuilding any program
|
|
|
|
that uses PAPI.
|
|
|
|
|
2013-06-28 19:56:36 +00:00
|
|
|
%package testsuite
|
2023-08-09 18:18:09 +00:00
|
|
|
License: BSD-3-Clause
|
2013-06-28 19:56:36 +00:00
|
|
|
Summary: Set of tests for checking PAPI functionality
|
|
|
|
Requires: papi = %{version}-%{release}
|
2019-01-07 15:40:05 +00:00
|
|
|
Requires: papi-libs = %{version}-%{release}
|
2013-06-28 19:56:36 +00:00
|
|
|
%description testsuite
|
2019-01-07 15:40:05 +00:00
|
|
|
PAPI-testsuite includes compiled versions of papi tests to ensure
|
2013-06-28 19:56:36 +00:00
|
|
|
that PAPI functions on particular hardware.
|
|
|
|
|
2021-01-29 04:24:28 +00:00
|
|
|
%if %{with_static}
|
2011-08-12 19:39:37 +00:00
|
|
|
%package static
|
2023-08-09 18:18:09 +00:00
|
|
|
License: BSD-3-Clause
|
2011-08-12 19:39:37 +00:00
|
|
|
Summary: Static libraries for the compiling programs with PAPI
|
|
|
|
Requires: papi = %{version}-%{release}
|
|
|
|
%description static
|
|
|
|
PAPI-static includes the static versions of the library files for
|
2012-06-11 14:56:20 +00:00
|
|
|
the PAPI user-space libraries and interfaces.
|
2021-01-29 04:24:28 +00:00
|
|
|
%endif
|
2011-08-12 19:39:37 +00:00
|
|
|
|
2009-10-26 20:42:20 +00:00
|
|
|
%prep
|
2013-05-30 16:32:08 +00:00
|
|
|
%setup -q
|
2023-12-21 15:28:20 +00:00
|
|
|
%patch 1 -p1 -b .python3
|
|
|
|
%patch 5 -p1
|
2012-11-08 16:28:43 +00:00
|
|
|
|
2009-10-26 20:42:20 +00:00
|
|
|
%build
|
2020-07-01 21:22:33 +00:00
|
|
|
|
2012-06-11 14:56:20 +00:00
|
|
|
%if %{without bundled_libpfm}
|
|
|
|
# Build our own copy of libpfm.
|
2012-08-30 15:47:43 +00:00
|
|
|
%global libpfm_config --with-pfm-incdir=%{_includedir} --with-pfm-libdir=%{_libdir}
|
2012-06-11 14:56:20 +00:00
|
|
|
%endif
|
|
|
|
|
2021-01-29 04:24:28 +00:00
|
|
|
%if %{with_static}
|
|
|
|
%global static_lib_config --with-static-lib=yes
|
|
|
|
%else
|
|
|
|
%global static_lib_config --with-static-lib=no
|
|
|
|
%endif
|
|
|
|
|
2020-03-04 20:02:11 +00:00
|
|
|
# set up environment variable for the various components
|
|
|
|
# cuda
|
|
|
|
# host_micpower
|
|
|
|
%if %{with_rdma}
|
|
|
|
export PAPI_INFINIBAND_UMAD_ROOT=/usr
|
|
|
|
%endif
|
|
|
|
# lmsensors
|
|
|
|
export PAPI_LMSENSORS_ROOT=/usr
|
|
|
|
#pushd vmware; ./configure; popd
|
|
|
|
%if %{with_pcp}
|
|
|
|
%global pcp_enable pcp
|
|
|
|
export PAPI_PCP_ROOT=/usr
|
|
|
|
%endif
|
|
|
|
|
2009-10-26 20:42:20 +00:00
|
|
|
cd src
|
2013-07-22 17:08:07 +00:00
|
|
|
autoconf
|
2012-08-30 15:47:43 +00:00
|
|
|
%configure --with-perf-events \
|
2012-06-11 14:56:20 +00:00
|
|
|
%{?libpfm_config} \
|
2021-01-29 04:24:28 +00:00
|
|
|
%{?static_lib_config} \
|
2022-11-16 16:50:48 +00:00
|
|
|
--with-shared-lib=yes --with-shlib-tools \
|
2021-01-29 04:24:28 +00:00
|
|
|
--with-components="appio coretemp example infiniband lmsensors lustre micpower mx net %{?pcp_enable} rapl stealtime"
|
2013-08-15 16:09:30 +00:00
|
|
|
# implicit enabled components: perf_event perf_event_uncore
|
2011-10-27 13:57:26 +00:00
|
|
|
#components currently left out because of build configure/build issues
|
2013-08-15 16:09:30 +00:00
|
|
|
# --with-components="bgpm coretemp_freebsd cuda host_micpower nvml vmware"
|
2011-10-27 13:57:26 +00:00
|
|
|
|
2010-06-22 19:01:35 +00:00
|
|
|
#DBG workaround to make sure libpfm just uses the normal CFLAGS
|
2012-02-14 19:55:45 +00:00
|
|
|
DBG="" make %{?_smp_mflags}
|
2009-10-26 20:42:20 +00:00
|
|
|
|
2013-07-05 21:15:30 +00:00
|
|
|
#generate updated versions of the documentation
|
|
|
|
#DBG workaround to make sure libpfm just uses the normal CFLAGS
|
|
|
|
pushd ../doc
|
2013-07-22 17:08:07 +00:00
|
|
|
DBG="" make
|
|
|
|
DBG="" make install
|
2013-07-05 21:15:30 +00:00
|
|
|
popd
|
|
|
|
|
2009-10-26 20:42:20 +00:00
|
|
|
%install
|
|
|
|
rm -rf $RPM_BUILD_ROOT
|
|
|
|
cd src
|
2013-06-28 19:56:36 +00:00
|
|
|
make DESTDIR=$RPM_BUILD_ROOT LDCONFIG=/bin/true install-all
|
2009-10-26 20:42:20 +00:00
|
|
|
|
2021-06-02 18:40:05 +00:00
|
|
|
# Scrub the rpath/runpath from all the binaries.
|
|
|
|
find %{buildroot} -type f -executable ! -iname "*.py" ! -iname "*.sh" | xargs chrpath --delete
|
2009-10-26 20:42:20 +00:00
|
|
|
|
|
|
|
%files
|
|
|
|
%{_bindir}/*
|
2013-07-22 17:08:07 +00:00
|
|
|
%dir /usr/share/papi
|
|
|
|
/usr/share/papi/papi_events.csv
|
2020-03-04 20:02:11 +00:00
|
|
|
%doc INSTALL.txt README.md LICENSE.txt RELEASENOTES.txt
|
2011-10-31 15:22:38 +00:00
|
|
|
%doc %{_mandir}/man1/*
|
2009-10-26 20:42:20 +00:00
|
|
|
|
2019-01-22 17:40:39 +00:00
|
|
|
%ldconfig_scriptlets libs
|
2014-12-18 21:41:38 +00:00
|
|
|
|
|
|
|
%files libs
|
|
|
|
%{_libdir}/*.so.*
|
2020-03-04 20:02:11 +00:00
|
|
|
%doc INSTALL.txt README.md LICENSE.txt RELEASENOTES.txt
|
2014-12-18 21:41:38 +00:00
|
|
|
|
2009-10-26 20:42:20 +00:00
|
|
|
%files devel
|
|
|
|
%{_includedir}/*.h
|
2022-11-16 16:50:48 +00:00
|
|
|
%{_includedir}/*.hpp
|
2012-06-11 14:56:20 +00:00
|
|
|
%if %{with bundled_libpfm}
|
2012-12-04 22:03:22 +00:00
|
|
|
%{_includedir}/perfmon/*.h
|
2012-06-11 14:56:20 +00:00
|
|
|
%endif
|
2009-10-26 20:42:20 +00:00
|
|
|
%{_libdir}/*.so
|
2015-03-03 15:03:51 +00:00
|
|
|
%{_libdir}/pkgconfig/papi*.pc
|
2009-10-26 20:42:20 +00:00
|
|
|
%doc %{_mandir}/man3/*
|
|
|
|
|
2013-06-28 19:56:36 +00:00
|
|
|
%files testsuite
|
|
|
|
/usr/share/papi/run_tests*
|
|
|
|
/usr/share/papi/ctests
|
|
|
|
/usr/share/papi/ftests
|
2017-12-21 23:20:13 +00:00
|
|
|
/usr/share/papi/validation_tests
|
2013-06-28 19:56:36 +00:00
|
|
|
/usr/share/papi/components
|
|
|
|
/usr/share/papi/testlib
|
|
|
|
|
2021-01-29 04:24:28 +00:00
|
|
|
%if %{with_static}
|
2011-08-12 19:39:37 +00:00
|
|
|
%files static
|
|
|
|
%{_libdir}/*.a
|
2021-01-29 04:24:28 +00:00
|
|
|
%endif
|
2011-08-12 19:39:37 +00:00
|
|
|
|
2009-10-26 20:42:20 +00:00
|
|
|
%changelog
|
2023-12-21 15:28:20 +00:00
|
|
|
* Thu Dec 21 2023 William Cohen <wcohen@redhat.com> - 7.1.0-1
|
|
|
|
- Rebase to official papi-7.1.0.
|
|
|
|
|
2023-12-18 17:26:43 +00:00
|
|
|
* Mon Dec 18 2023 William Cohen <wcohen@redhat.com> - 7.0.1-7
|
|
|
|
- Fix i686 rawhide FTBFS. (rhbz#2254963)
|
|
|
|
|
2023-12-18 07:22:40 +00:00
|
|
|
* Mon Dec 18 2023 Florian Weimer <fweimer@redhat.com> - 7.0.1-6
|
|
|
|
- Backport upstream patch, add new patch for autoconf C compatibility
|
|
|
|
|
2023-08-09 18:18:09 +00:00
|
|
|
* Wed Aug 9 2023 William Cohen <wcohen@redhat.com> - 7.0.1-5
|
|
|
|
- migrated to SPDX license
|
|
|
|
|
2023-07-20 18:37:03 +00:00
|
|
|
* Thu Jul 20 2023 Fedora Release Engineering <releng@fedoraproject.org> - 7.0.1-4
|
|
|
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_39_Mass_Rebuild
|
|
|
|
|
2023-03-29 13:44:11 +00:00
|
|
|
* Tue Mar 28 2023 William Cohen <wcohen@redhat.com> - 7.0.1-3
|
|
|
|
- Rebuild with libpfm-4.13.0.
|
|
|
|
|
2023-03-15 13:46:53 +00:00
|
|
|
* Wed Mar 15 2023 William Cohen <wcohen@redhat.com> - 7.0.1-2
|
|
|
|
- Bump NVR and rebuild.
|
|
|
|
|
2023-03-14 14:53:37 +00:00
|
|
|
* Tue Mar 14 2023 William Cohen <wcohen@redhat.com> - 7.0.1-1
|
|
|
|
- Rebase to official papi-7.0.1. (rhbz#2177906)
|
|
|
|
|
2023-01-19 23:21:21 +00:00
|
|
|
* Thu Jan 19 2023 Fedora Release Engineering <releng@fedoraproject.org> - 7.0.0-3
|
|
|
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_38_Mass_Rebuild
|
|
|
|
|
2022-11-27 13:28:47 +00:00
|
|
|
* Sun Nov 27 2022 Florian Weimer <fweimer@redhat.com> - 7.0.0-2
|
|
|
|
- Port configure script to C99 (#2148723)
|
|
|
|
|
2022-11-16 16:50:48 +00:00
|
|
|
* Wed Nov 16 2022 William Cohen <wcohen@redhat.com> - 7.0.0-1
|
|
|
|
- Rebase to official papi-7.0.0.
|
|
|
|
|
2022-07-22 02:40:18 +00:00
|
|
|
* Fri Jul 22 2022 Fedora Release Engineering <releng@fedoraproject.org> - 6.0.0-12
|
|
|
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_37_Mass_Rebuild
|
|
|
|
|
2022-01-20 22:52:33 +00:00
|
|
|
* Thu Jan 20 2022 Fedora Release Engineering <releng@fedoraproject.org> - 6.0.0-11
|
|
|
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_36_Mass_Rebuild
|
|
|
|
|
2021-11-19 15:12:55 +00:00
|
|
|
* Fri Nov 19 2021 William Cohen <wcohen@redhat.com> - 6.0.0-10
|
|
|
|
- Correct initialization for stealtime component.
|
|
|
|
|
2021-07-22 17:42:08 +00:00
|
|
|
* Thu Jul 22 2021 Fedora Release Engineering <releng@fedoraproject.org> - 6.0.0-9
|
|
|
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_35_Mass_Rebuild
|
|
|
|
|
2021-06-02 18:40:05 +00:00
|
|
|
* Wed Jun 2 2021 William Cohen <wcohen@redhat.com> - 6.0.0-8
|
|
|
|
- Scrub rpaths from all executables.
|
|
|
|
|
2021-01-29 04:24:28 +00:00
|
|
|
* Thu Jan 28 2021 William Cohen <wcohen@redhat.com> - 6.0.0-7
|
|
|
|
- By default disable genaration of static libraries.
|
|
|
|
|
2021-01-26 22:56:45 +00:00
|
|
|
* Tue Jan 26 2021 Fedora Release Engineering <releng@fedoraproject.org> - 6.0.0-6
|
|
|
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_34_Mass_Rebuild
|
|
|
|
|
2020-12-17 16:57:07 +00:00
|
|
|
* Thu Dec 17 2020 William Cohen <wcohen@redhat.com> - 6.0.0-5
|
|
|
|
- Remove iozone source code. (#1901077)
|
|
|
|
|
2020-11-09 18:46:03 +00:00
|
|
|
* Mon Nov 09 2020 William Cohen <wcohen@redhat.com> - 6.0.0-4
|
|
|
|
- Add Fujitsu A64FX presets.
|
|
|
|
|
2020-07-28 13:09:27 +00:00
|
|
|
* Tue Jul 28 2020 Fedora Release Engineering <releng@fedoraproject.org> - 6.0.0-3
|
|
|
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_33_Mass_Rebuild
|
|
|
|
|
2020-07-01 21:22:33 +00:00
|
|
|
* Wed Jul 01 2020 Jeff Law <law@redhat.com> - 6.0.0-2
|
|
|
|
- Disable LTO
|
|
|
|
|
2020-03-04 20:02:11 +00:00
|
|
|
* Wed Mar 04 2020 William Cohen <wcohen@redhat.com> - 6.0.0-1
|
|
|
|
- Rebase to official papi-6.0.0.
|
|
|
|
|
2020-01-29 20:52:33 +00:00
|
|
|
* Wed Jan 29 2020 Fedora Release Engineering <releng@fedoraproject.org> - 5.7.0-4
|
|
|
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_32_Mass_Rebuild
|
|
|
|
|
2019-07-26 00:02:51 +00:00
|
|
|
* Fri Jul 26 2019 Fedora Release Engineering <releng@fedoraproject.org> - 5.7.0-3
|
|
|
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_31_Mass_Rebuild
|
|
|
|
|
2019-03-04 22:18:59 +00:00
|
|
|
* Mon Mar 04 2019 William Cohen <wcohen@redhat.com> - 5.7.0-2
|
|
|
|
- Rebase to official papi-5.7.0.
|
|
|
|
|
2019-02-18 19:48:42 +00:00
|
|
|
* Mon Feb 18 2019 William Cohen <wcohen@redhat.com> - 5.7.0-1
|
|
|
|
- Rebase to papi-5.7.0.
|
|
|
|
|
2019-02-01 17:56:26 +00:00
|
|
|
* Fri Feb 01 2019 Fedora Release Engineering <releng@fedoraproject.org> - 5.6.0-10
|
|
|
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_30_Mass_Rebuild
|
|
|
|
|
2019-01-07 15:40:05 +00:00
|
|
|
* Mon Jan 7 2019 William Cohen <wcohen@redhat.com> - 5.6.0-9
|
|
|
|
- Correct typo in papi-testsuite description.
|
|
|
|
- Add papi-libs for papi-testsuite and papi-devel.
|
|
|
|
|
2018-11-02 18:51:31 +00:00
|
|
|
* Fri Nov 2 2018 Fedora Release Engineering <releng@fedoraproject.org> - 5.6.0-8
|
|
|
|
- Pull in patch to avoid division-by-0.
|
|
|
|
|
2018-07-13 15:29:02 +00:00
|
|
|
* Fri Jul 13 2018 Fedora Release Engineering <releng@fedoraproject.org> - 5.6.0-7
|
|
|
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_29_Mass_Rebuild
|
|
|
|
|
2018-05-17 19:52:28 +00:00
|
|
|
* Thu May 17 2018 William Cohen <wcohen@redhat.com> - 5.6.0-6
|
|
|
|
- Dynamically link utilities and tests to papi libraries.
|
|
|
|
|
2018-04-30 18:11:10 +00:00
|
|
|
* Mon Apr 30 2018 William Cohen <wcohen@redhat.com> - 5.6.0-5
|
|
|
|
- Include various LDFLAGS/CFLAGS.
|
|
|
|
|
2018-02-08 18:17:15 +00:00
|
|
|
* Thu Feb 08 2018 Fedora Release Engineering <releng@fedoraproject.org> - 5.6.0-4
|
|
|
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_28_Mass_Rebuild
|
|
|
|
|
2018-01-31 13:29:35 +00:00
|
|
|
* Wed Jan 31 2018 William Cohen <wcohen@redhat.com> - 5.6.0-3
|
|
|
|
- Bump and rebuild.
|
|
|
|
|
2017-12-22 00:06:51 +00:00
|
|
|
* Thu Dec 21 2017 William Cohen <wcohen@redhat.com> - 5.6.0-2
|
|
|
|
- Correct infiniband buildrequires.
|
|
|
|
|
2017-12-21 23:20:13 +00:00
|
|
|
* Thu Dec 21 2017 William Cohen <wcohen@redhat.com> - 5.6.0-1
|
|
|
|
- Rebase to papi-5.6.0.
|
|
|
|
|
2017-08-28 06:18:35 +00:00
|
|
|
* Mon Aug 28 2017 Honggang LI <honli@redhat.com> - 5.5.1-6
|
|
|
|
- Disable RDMA support on ARM32
|
|
|
|
|
2017-08-03 04:50:06 +00:00
|
|
|
* Thu Aug 03 2017 Fedora Release Engineering <releng@fedoraproject.org> - 5.5.1-5
|
|
|
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_27_Binutils_Mass_Rebuild
|
|
|
|
|
2017-07-27 02:10:30 +00:00
|
|
|
* Thu Jul 27 2017 Fedora Release Engineering <releng@fedoraproject.org> - 5.5.1-4
|
|
|
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_27_Mass_Rebuild
|
|
|
|
|
2017-02-11 01:15:20 +00:00
|
|
|
* Sat Feb 11 2017 Fedora Release Engineering <releng@fedoraproject.org> - 5.5.1-3
|
|
|
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_26_Mass_Rebuild
|
|
|
|
|
2017-02-02 19:20:41 +00:00
|
|
|
* Thu Feb 2 2017 William Cohen <wcohen@redhat.com> - 5.5.1-2
|
|
|
|
- Bump version and rebuild due to new libgfortan.so version.
|
|
|
|
|
2016-11-18 21:54:06 +00:00
|
|
|
* Fri Nov 18 2016 Fedora Release Engineering <releng@fedoraproject.org> - 5.5.1-1
|
|
|
|
- Rebase to papi-5.5.1.
|
|
|
|
|
2016-09-14 20:46:12 +00:00
|
|
|
* Wed Sep 14 2016 Fedora Release Engineering <releng@fedoraproject.org> - 5.5.0-1
|
|
|
|
- Rebase to papi-5.5.0.
|
|
|
|
|
2016-02-04 11:54:31 +00:00
|
|
|
* Thu Feb 04 2016 Fedora Release Engineering <releng@fedoraproject.org> - 5.4.3-2
|
|
|
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_24_Mass_Rebuild
|
|
|
|
|
2016-01-26 19:01:27 +00:00
|
|
|
* Tue Jan 26 2016 William Cohen <wcohen@redhat.com> - 5.4.3-1
|
|
|
|
- Rebase to papi-5.4.3.
|
|
|
|
|
2015-06-18 00:42:22 +00:00
|
|
|
* Thu Jun 18 2015 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 5.4.1-3
|
|
|
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_23_Mass_Rebuild
|
|
|
|
|
2015-03-06 20:13:28 +00:00
|
|
|
* Fri Mar 6 2015 William Cohen <wcohen@redhat.com> - 5.4.1-2
|
|
|
|
- Make sure using libpfm-4.6.0.
|
|
|
|
|
2015-03-03 15:03:51 +00:00
|
|
|
* Tue Mar 3 2015 William Cohen <wcohen@redhat.com> - 5.4.1-1
|
|
|
|
- Rebase to papi-5.4.1.
|
|
|
|
|
2015-02-11 20:38:02 +00:00
|
|
|
* Wed Feb 11 2015 William Cohen <wcohen@redhat.com> - 5.4.0-3
|
|
|
|
- Bump version and rebuild.
|
|
|
|
|
2014-12-18 21:41:38 +00:00
|
|
|
* Thu Dec 18 2014 William Cohen <wcohen@redhat.com> - 5.4.0-2
|
|
|
|
- Split out papi-libs as separate subpackage. (#1172875)
|
|
|
|
|
2014-11-17 15:21:38 +00:00
|
|
|
* Mon Nov 17 2014 William Cohen <wcohen@redhat.com> - 5.4.0-1
|
|
|
|
- Rebase to papi-5.4.0.
|
|
|
|
|
2014-08-17 14:48:15 +00:00
|
|
|
* Sun Aug 17 2014 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 5.3.2-2
|
|
|
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_21_22_Mass_Rebuild
|
|
|
|
|
2014-08-04 16:10:30 +00:00
|
|
|
* Mon Aug 4 2014 William Cohen <wcohen@redhat.com> - 5.3.2-1
|
|
|
|
- Rebase to 5.3.2.
|
|
|
|
|
2014-06-06 23:38:20 +00:00
|
|
|
* Fri Jun 06 2014 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 5.3.0-2.16.ga7f6159
|
|
|
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_21_Mass_Rebuild
|
|
|
|
|
2014-01-17 17:02:26 +00:00
|
|
|
* Fri Jan 17 2014 Lukas Berk <lberk@redhat.com> - 5.3.0-1.16.ga7f6159
|
|
|
|
- Automated weekly rawhide release
|
|
|
|
|
2014-01-16 14:15:57 +00:00
|
|
|
* Thu Jan 16 2014 William Cohen <wcohen@redhat.com> - 5.3.0-1
|
|
|
|
- Rebase to 5.3.0.
|
2013-11-28 15:55:30 +00:00
|
|
|
|
2014-01-16 14:15:57 +00:00
|
|
|
* Tue Jan 14 2014 William Cohen <wcohen@redhat.com> - 5.2.0-5
|
|
|
|
- Add presets for Intel Silvermont.
|
2013-11-25 13:46:10 +00:00
|
|
|
|
2014-01-16 14:15:57 +00:00
|
|
|
* Mon Jan 13 2014 William Cohen <wcohen@redhat.com> - 5.2.0-4
|
|
|
|
- Add presets for Haswell and Ivy Bridge.
|
2013-11-04 15:36:07 +00:00
|
|
|
|
2013-08-15 16:09:30 +00:00
|
|
|
* Wed Aug 14 2013 William Cohen <wcohen@redhat.com> - 5.2.0-2
|
|
|
|
- Enable infiniband and stealtime components.
|
|
|
|
|
2013-08-07 19:01:58 +00:00
|
|
|
* Wed Aug 07 2013 William Cohen <wcohen@redhat.com> - 5.2.0-1
|
|
|
|
- Rebase to 5.2.0
|
|
|
|
|
2013-08-03 16:30:37 +00:00
|
|
|
* Sat Aug 03 2013 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 5.1.1-8
|
|
|
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_20_Mass_Rebuild
|
|
|
|
|
2013-07-24 16:02:00 +00:00
|
|
|
* Wed Jul 24 2013 William Cohen <wcohen@redhat.com> - 5.1.1-7
|
|
|
|
- rhbz830275 - Add support for POWER8 processor to PAPI
|
|
|
|
|
2013-07-22 17:19:52 +00:00
|
|
|
* Mon Jul 22 2013 William Cohen <wcohen@redhat.com> - 5.1.1-6
|
|
|
|
- Add autoconf buildrequires.
|
|
|
|
|
2013-07-22 17:08:07 +00:00
|
|
|
* Mon Jul 22 2013 William Cohen <wcohen@redhat.com> - 5.1.1-5
|
|
|
|
- rhbz986673 - /usr/lib64/libpapi.so is unowned
|
|
|
|
- Package files in /usr/share/papi only once.
|
|
|
|
- Avoid dependency problem with parallel make of man pages.
|
|
|
|
|
2013-07-19 20:28:23 +00:00
|
|
|
* Fri Jul 19 2013 William Cohen <wcohen@redhat.com> - 5.1.1-4
|
|
|
|
- Correct changelog.
|
|
|
|
|
2013-07-05 21:15:30 +00:00
|
|
|
* Fri Jul 5 2013 William Cohen <wcohen@redhat.com> - 5.1.1-3
|
|
|
|
- Add man page corrections/updates.
|
|
|
|
|
2013-06-28 19:56:36 +00:00
|
|
|
* Fri Jun 28 2013 William Cohen <wcohen@redhat.com> - 5.1.1-2
|
|
|
|
- Add testsuite subpackage.
|
|
|
|
|
2013-05-30 16:32:08 +00:00
|
|
|
* Thu May 30 2013 William Cohen <wcohen@redhat.com> - 5.1.1-1
|
|
|
|
- Rebase to 5.1.1
|
|
|
|
|
2013-04-16 13:00:55 +00:00
|
|
|
* Mon Apr 15 2013 William Cohen <wcohen@redhat.com> - 5.1.0.2-2
|
|
|
|
- Fix arm FTBS rhbz 951806.
|
|
|
|
|
2013-04-09 14:10:25 +00:00
|
|
|
* Tue Apr 9 2013 William Cohen <wcohen@redhat.com> - 5.1.0.2-1
|
|
|
|
- Rebase to 5.1.0.2
|
|
|
|
|
2013-02-14 09:48:12 +00:00
|
|
|
* Thu Feb 14 2013 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 5.0.1-6
|
|
|
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_19_Mass_Rebuild
|
|
|
|
|
2013-01-14 15:31:41 +00:00
|
|
|
* Mon Jan 14 2013 William Cohen <wcohen@redhat.com> - 5.0.1-5
|
|
|
|
- Add armv7 cortex a15 presets.
|
|
|
|
|
2012-12-04 22:03:22 +00:00
|
|
|
* Tue Dec 04 2012 William Cohen <wcohen@redhat.com> - 5.0.1-4
|
|
|
|
- Disable ldconfig on install.
|
|
|
|
|
2012-11-08 16:28:43 +00:00
|
|
|
* Thu Nov 08 2012 William Cohen <wcohen@redhat.com> - 5.0.1-3
|
|
|
|
- Avoid duplicated shared library.
|
|
|
|
|
2012-10-03 20:56:32 +00:00
|
|
|
* Wed Oct 03 2012 William Cohen <wcohen@redhat.com> - 5.0.1-2
|
|
|
|
- Make sure using compatible version of libpfm.
|
|
|
|
|
2012-09-20 20:16:30 +00:00
|
|
|
* Thu Sep 20 2012 William Cohen <wcohen@redhat.com> - 5.0.1-1
|
|
|
|
- Rebase to 5.0.1.
|
|
|
|
|
2012-09-10 15:53:02 +00:00
|
|
|
* Mon Sep 10 2012 William Cohen <wcohen@redhat.com> - 5.0.0-6
|
|
|
|
- Back port fixes for Intel Ivy Bridge event presets.
|
|
|
|
|
2012-08-30 15:47:43 +00:00
|
|
|
* Thu Aug 30 2012 William Cohen <wcohen@redhat.com> - 5.0.0-5
|
|
|
|
- Fixes to make papi with unbundled libpfm.
|
|
|
|
|
2012-08-27 13:17:11 +00:00
|
|
|
* Mon Aug 27 2012 William Cohen <wcohen@redhat.com> - 5.0.0-2
|
|
|
|
- Keep libpfm unbundled.
|
|
|
|
|
2012-08-27 00:30:51 +00:00
|
|
|
* Fri Aug 24 2012 William Cohen <wcohen@redhat.com> - 5.0.0-1
|
|
|
|
- Rebase to 5.0.0.
|
|
|
|
|
2012-07-20 08:15:15 +00:00
|
|
|
* Fri Jul 20 2012 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 4.4.0-5
|
|
|
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_18_Mass_Rebuild
|
|
|
|
|
2012-06-11 19:52:18 +00:00
|
|
|
* Mon Jun 11 2012 William Cohen <wcohen@redhat.com> - 4.4.0-4
|
|
|
|
- Use siginfo_t rather than struct siginfo.
|
|
|
|
|
2012-06-11 15:19:56 +00:00
|
|
|
* Mon Jun 11 2012 William Cohen <wcohen@redhat.com> - 4.4.0-3
|
|
|
|
- Correct build requires.
|
|
|
|
|
2012-06-11 14:56:20 +00:00
|
|
|
* Mon Jun 11 2012 William Cohen <wcohen@redhat.com> - 4.4.0-2
|
|
|
|
- Unbundle libpfm4 from papi.
|
|
|
|
- Correct description spellings.
|
|
|
|
- Remove unused test section.
|
|
|
|
|
2012-04-20 16:01:49 +00:00
|
|
|
* Fri Apr 20 2012 William Cohen <wcohen@redhat.com> - 4.4.0-1
|
|
|
|
- Rebase to 4.4.0.
|
|
|
|
|
2012-03-09 21:36:44 +00:00
|
|
|
* Fri Mar 9 2012 William Cohen <wcohen@redhat.com> - 4.2.1-2
|
|
|
|
- Fix overrun in lmsensor component. (rhbz797692)
|
|
|
|
|
2012-02-14 19:55:45 +00:00
|
|
|
* Tue Feb 14 2012 William Cohen <wcohen@redhat.com> - 4.2.1-1
|
|
|
|
- Rebase to 4.2.1.
|
|
|
|
|
2012-01-13 11:58:45 +00:00
|
|
|
* Fri Jan 13 2012 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 4.2.0-4
|
|
|
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_17_Mass_Rebuild
|
|
|
|
|
2011-11-02 15:27:04 +00:00
|
|
|
* Wed Nov 02 2011 William Cohen <wcohen@redhat.com> - 4.2.0-3
|
|
|
|
- Remove unwanted man1/*.c.1 files. (rhbz749725)
|
|
|
|
|
2011-10-31 15:22:38 +00:00
|
|
|
* Mon Oct 31 2011 William Cohen <wcohen@redhat.com> - 4.2.0-2
|
|
|
|
- Include appropirate man pages with papi rpm. (rhbz749725)
|
|
|
|
- Rebase to papi-4.2.0, fixup for coretemp component. (rhbz746851)
|
|
|
|
|
2011-10-27 13:57:26 +00:00
|
|
|
* Thu Oct 27 2011 William Cohen <wcohen@redhat.com> - 4.2.0-1
|
|
|
|
- Rebase to papi-4.2.0.
|
|
|
|
|
2011-08-12 19:39:37 +00:00
|
|
|
* Fri Aug 12 2011 William Cohen <wcohen@redhat.com> - 4.1.3-3
|
|
|
|
- Provide papi-static.
|
|
|
|
|
2011-05-13 20:51:57 +00:00
|
|
|
* Thu May 12 2011 William Cohen <wcohen@redhat.com> - 4.1.3-2
|
|
|
|
- Use corrected papi-4.1.3.
|
|
|
|
|
2011-05-12 18:04:54 +00:00
|
|
|
* Thu May 12 2011 William Cohen <wcohen@redhat.com> - 4.1.3-1
|
|
|
|
- Rebase to papi-4.1.3
|
|
|
|
|
2011-02-08 14:16:23 +00:00
|
|
|
* Tue Feb 08 2011 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 4.1.2.1-2
|
|
|
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_15_Mass_Rebuild
|
|
|
|
|
2011-01-24 22:45:09 +00:00
|
|
|
* Mon Jan 24 2011 William Cohen <wcohen@redhat.com> - 4.1.2.1-1
|
|
|
|
- Rebase to papi-4.1.2.1
|
|
|
|
|
2010-10-01 19:24:54 +00:00
|
|
|
* Fri Oct 1 2010 William Cohen <wcohen@redhat.com> - 4.1.1-1
|
|
|
|
- Rebase to papi-4.1.1
|
|
|
|
|
2013-07-19 20:28:23 +00:00
|
|
|
* Tue Jun 22 2010 William Cohen <wcohen@redhat.com> - 4.1.0-1
|
2010-06-22 19:01:35 +00:00
|
|
|
- Rebase to papi-4.1.0
|
|
|
|
|
|
|
|
* Mon May 17 2010 William Cohen <wcohen@redhat.com> - 4.0.0-5
|
|
|
|
- Test run with upstream cvs version.
|
|
|
|
|
|
|
|
* Wed Feb 10 2010 William Cohen <wcohen@redhat.com> - 4.0.0-4
|
|
|
|
- Resolves: rhbz562935 Rebase to papi-4.0.0 (correct ExcludeArch).
|
|
|
|
|
|
|
|
* Wed Feb 10 2010 William Cohen <wcohen@redhat.com> - 4.0.0-3
|
|
|
|
- Resolves: rhbz562935 Rebase to papi-4.0.0 (bump nvr).
|
|
|
|
|
|
|
|
* Wed Feb 10 2010 William Cohen <wcohen@redhat.com> - 4.0.0-2
|
2010-02-08 19:51:53 +00:00
|
|
|
- correct the ctests/shlib test
|
|
|
|
- have PAPI_set_multiplex() return proper value
|
|
|
|
- properly handle event unit masks
|
|
|
|
- correct PAPI_name_to_code() to match events
|
2010-06-22 19:01:35 +00:00
|
|
|
- Resolves: rhbz562935 Rebase to papi-4.0.0
|
2010-02-08 19:51:53 +00:00
|
|
|
|
2010-01-22 22:53:36 +00:00
|
|
|
* Wed Jan 13 2010 William Cohen <wcohen@redhat.com> - 4.0.0-1
|
|
|
|
- Generate papi.spec file for papi-4.0.0.
|