2020-11-10 19:44:11 +00:00
|
|
|
Name: iotop-c
|
2021-01-28 16:01:12 +00:00
|
|
|
Version: 1.16
|
|
|
|
Release: 1%{?dist}
|
2020-11-10 19:44:11 +00:00
|
|
|
Summary: Simple top-like I/O monitor (implemented in C)
|
|
|
|
|
|
|
|
License: GPLv2+
|
|
|
|
URL: https://github.com/Tomas-M/iotop/
|
|
|
|
Source0: https://github.com/Tomas-M/iotop/releases/download/v%{version}/iotop-%{version}.tar.xz
|
|
|
|
Source1: https://github.com/Tomas-M/iotop/releases/download/v%{version}/iotop-%{version}.tar.xz.asc
|
|
|
|
Source2: https://raw.githubusercontent.com/Tomas-M/iotop/v%{version}/debian/upstream/signing-key.asc
|
|
|
|
|
|
|
|
BuildRequires: gcc
|
|
|
|
BuildRequires: gnupg2
|
|
|
|
BuildRequires: ncurses-devel
|
|
|
|
BuildRequires: make
|
|
|
|
BuildRequires: pkgconfig(ncursesw)
|
|
|
|
|
|
|
|
%description
|
|
|
|
iotop-c does for I/O usage what top(1) does for CPU usage. It watches I/O
|
|
|
|
usage information output by the Linux kernel and displays a table of
|
|
|
|
current I/O usage by processes on the system. It is handy for answering
|
|
|
|
the question "Why is the disk churning so much?".
|
|
|
|
|
|
|
|
iotop-c requires a Linux kernel built with the CONFIG_TASKSTATS,
|
|
|
|
CONFIG_TASK_DELAY_ACCT, CONFIG_TASK_IO_ACCOUNTING and
|
|
|
|
CONFIG_VM_EVENT_COUNTERS config options on.
|
|
|
|
|
|
|
|
iotop-c is an alternative re-implementation of iotop in C, optimized for
|
|
|
|
performance. Normally a monitoring tool intended to be used on a system
|
|
|
|
under heavy stress should use the least additional resources as
|
|
|
|
possible.
|
|
|
|
|
|
|
|
%global _hardened_build 1
|
|
|
|
|
|
|
|
%prep
|
|
|
|
%{gpgverify} --keyring='%{SOURCE2}' --signature='%{SOURCE1}' --data='%{SOURCE0}'
|
|
|
|
%autosetup -n iotop-%{version}
|
|
|
|
|
|
|
|
%build
|
|
|
|
%set_build_flags
|
|
|
|
NO_FLTO=1 %make_build
|
|
|
|
|
|
|
|
%install
|
|
|
|
V=1 STRIP=: %make_install
|
|
|
|
mv %{buildroot}%{_sbindir}/iotop %{buildroot}%{_sbindir}/iotop-c
|
|
|
|
mv %{buildroot}%{_mandir}/man8/iotop.8 %{buildroot}%{_mandir}/man8/iotop-c.8
|
|
|
|
|
|
|
|
%files
|
|
|
|
%license COPYING
|
|
|
|
%license LICENSE
|
|
|
|
%{_sbindir}/iotop-c
|
|
|
|
%{_mandir}/man8/iotop-c.8*
|
|
|
|
|
|
|
|
%changelog
|
2021-01-28 16:01:12 +00:00
|
|
|
* Thu Jan 28 2021 Boian Bonev <bbonev@ipacct.com> - 1.16-1
|
|
|
|
- Update to latest ver 1.16
|
|
|
|
|
2021-01-26 14:25:31 +00:00
|
|
|
* Tue Jan 26 2021 Fedora Release Engineering <releng@fedoraproject.org> - 1.15-2
|
|
|
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_34_Mass_Rebuild
|
|
|
|
|
2020-11-10 19:44:11 +00:00
|
|
|
* Sat Sep 26 2020 Boian Bonev <bbonev@ipacct.com> - 1.15-1
|
|
|
|
- Initial packaging for Fedora
|