numatop/numatop.spec

76 lines
2.0 KiB
RPMSpec
Raw Normal View History

2013-09-17 09:02:16 +00:00
%global _hardened_build 1
Name: numatop
2014-03-16 16:22:13 +00:00
Version: 1.0.2
2014-06-30 18:11:38 +00:00
Release: 3%{?dist}
2013-09-17 09:02:16 +00:00
Summary: Memory access locality characterization and analysis
License: BSD
URL: https://01.org/numatop
2014-03-16 16:22:13 +00:00
Source0: https://01.org/sites/default/files/%{name}_linux_%{version}.tar.gz
2013-09-17 09:02:16 +00:00
BuildRequires: numactl-devel ncurses-devel
2014-06-30 18:11:38 +00:00
# https://github.com/01org/numatop/pull/5
Patch0: numatop.cpuid.patch
2014-03-16 16:22:13 +00:00
# no NUMA
2013-09-20 09:49:31 +00:00
ExcludeArch: %{arm} s390 s390x
2013-09-17 09:02:16 +00:00
%description
NumaTOP is an observation tool for runtime memory locality characterization and
analysis of processes and threads running on a NUMA system. It helps the user
characterize the NUMA behavior of processes and threads and identify where the
NUMA-related performance bottlenecks reside.
NumaTOP supports the Intel Xeon processors.
%prep
%setup -q -n %{name}
2014-06-30 18:11:38 +00:00
%patch0 -p1
2013-09-17 09:02:16 +00:00
%build
make CFLAGS="%{optflags}" %{?_smp_mflags}
%install
mkdir -p %{buildroot}%{_bindir}
mkdir -p %{buildroot}%{_mandir}/man8
make install PREFIXDIR=%{buildroot}%{_prefix} MANDIR=%{buildroot}%{_mandir}/man8
%files
%doc AUTHORS COPYING README
%{_bindir}/%{name}
%{_mandir}/man8/%{name}.8*
%changelog
2014-06-30 18:11:38 +00:00
* Mon Jun 30 2014 Dridi Boukelmoune <dridi.boukelmoune@gmail.com> - 1.0.2-3
- Backport and rebase 1.0.1 patch
* Sat Jun 07 2014 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 1.0.2-2
- Rebuilt for https://fedoraproject.org/wiki/Fedora_21_Mass_Rebuild
2014-03-16 16:22:13 +00:00
* Sun Mar 16 2014 Dridi Boukelmoune <dridi.boukelmoune@gmail.com> - 1.0.2-1
- Bump version to 1.0.2
- Remove upstreamed patch
2013-09-20 09:49:31 +00:00
* Fri Sep 20 2013 Dan Horák <dan[at]danny.cz> - 1.0.1-5
- no numa on s390(x)
2013-09-17 09:02:16 +00:00
* Fri Sep 13 2013 Dridi Boukelmoune <dridi.boukelmoune@gmail.com> - 1.0.1-4
- Patch for the 32bit hardened build.
* Sun Aug 25 2013 Dridi Boukelmoune <dridi.boukelmoune@gmail.com> - 1.0.1-3
- Hardened build.
- Automatic requires.
* Fri Aug 02 2013 Dridi Boukelmoune <dridi.boukelmoune@gmail.com> - 1.0.1-2
- Fix the license tag.
* Thu Aug 01 2013 Dridi Boukelmoune <dridi.boukelmoune@gmail.com> - 1.0.1-1
- Initial spec.