2007-05-25 04:32:37 +02:00
|
|
|
#
|
2008-09-24 16:49:35 +02:00
|
|
|
# spec file for package htop (Version 0.8.1)
|
2007-05-25 04:32:37 +02:00
|
|
|
#
|
2008-07-11 22:45:50 +02:00
|
|
|
# Copyright (c) 2008 SUSE LINUX Products GmbH, Nuernberg, Germany.
|
2007-05-25 04:32:37 +02:00
|
|
|
#
|
2008-09-24 16:49:35 +02:00
|
|
|
# All modifications and additions to the file contributed by third parties
|
|
|
|
# remain the property of their copyright owners, unless otherwise agreed
|
|
|
|
# upon. The license for this file, and modifications and additions to the
|
|
|
|
# file, is the same license as for the pristine package itself (unless the
|
|
|
|
# license for the pristine package is not an Open Source License, in which
|
|
|
|
# case the license is the MIT License). An "Open Source License" is a
|
|
|
|
# license that conforms to the Open Source Definition (Version 1.9)
|
|
|
|
# published by the Open Source Initiative.
|
|
|
|
|
2007-05-25 04:32:37 +02:00
|
|
|
# Please submit bugfixes or comments via http://bugs.opensuse.org/
|
|
|
|
#
|
|
|
|
|
|
|
|
# norootforbuild
|
|
|
|
|
2008-07-11 22:45:50 +02:00
|
|
|
|
2007-05-25 04:32:37 +02:00
|
|
|
Name: htop
|
2007-11-26 20:43:22 +01:00
|
|
|
Url: http://htop.sourceforge.net
|
|
|
|
Summary: An Interactive text-mode Process Viewer for Linux
|
2008-09-24 16:49:35 +02:00
|
|
|
Version: 0.8.1
|
|
|
|
Release: 1
|
2007-11-26 20:43:22 +01:00
|
|
|
License: GPL v2 or later
|
2007-05-25 04:32:37 +02:00
|
|
|
Group: System/Monitoring
|
2008-07-11 22:45:50 +02:00
|
|
|
Source0: %{name}-%{version}.tar.bz2
|
2007-05-25 04:32:37 +02:00
|
|
|
Patch0: %{name}-desktop-file-fix-thoenig-01.patch
|
|
|
|
BuildRoot: %{_tmppath}/%{name}-%{version}-build
|
|
|
|
BuildRequires: ncurses-devel
|
2007-11-26 20:43:22 +01:00
|
|
|
AutoReqProv: on
|
2007-05-25 04:32:37 +02:00
|
|
|
|
|
|
|
%description
|
|
|
|
htop is an interactive text-mode process viewer for Linux. It aims to
|
2007-11-26 20:43:22 +01:00
|
|
|
be a better 'top' and requires ncurses. It is tested with Linux 2.6,
|
2007-05-25 04:32:37 +02:00
|
|
|
but is also reported to work (and was originally developed) with the
|
|
|
|
2.4 series.
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
Authors:
|
|
|
|
--------
|
|
|
|
Hisham H. Muhammad
|
|
|
|
|
|
|
|
%prep
|
|
|
|
%setup
|
|
|
|
%patch0 -p0
|
|
|
|
|
|
|
|
%build
|
2008-08-02 04:00:42 +02:00
|
|
|
%configure \
|
|
|
|
--enable-taskstats
|
2007-05-25 04:32:37 +02:00
|
|
|
make
|
|
|
|
|
|
|
|
%install
|
2008-08-02 04:00:42 +02:00
|
|
|
%makeinstall
|
2007-05-25 04:32:37 +02:00
|
|
|
|
|
|
|
%clean
|
|
|
|
rm -rf %{_buildroot}
|
|
|
|
|
|
|
|
%files
|
|
|
|
%defattr(-,root,root)
|
|
|
|
%doc COPYING
|
|
|
|
%{_bindir}/%{name}
|
|
|
|
%{_datadir}/applications/%{name}.desktop
|
|
|
|
%{_datadir}/pixmaps/%{name}.png
|
|
|
|
%{_mandir}/*/%{name}*
|
|
|
|
|
|
|
|
%changelog
|
2008-09-24 16:49:35 +02:00
|
|
|
* Tue Sep 23 2008 thoenig@suse.de
|
|
|
|
- Linux-VServer support
|
|
|
|
- battery meter
|
|
|
|
- fix collection of IO stats in multithreaded processes
|
|
|
|
- remove assertion that fails on hardened kernels
|
2008-08-02 04:00:42 +02:00
|
|
|
* Thu Jul 31 2008 puzel@suse.cz
|
|
|
|
- configure with --enable-taskstats to enable
|
|
|
|
per-processes IO statistics
|
|
|
|
- use %%configure and %%makeinstall macros
|
2008-07-11 22:45:50 +02:00
|
|
|
* Fri Jul 11 2008 bwalle@suse.de
|
|
|
|
- update to htop 0.8
|
|
|
|
* Ability to change sort column with the mouse by clicking
|
|
|
|
column titles (click again to invert order)
|
|
|
|
* Add support for Linux per-process IO statistics, enabled with
|
|
|
|
the --enable-taskstats flag, which requires a kernel compiled
|
|
|
|
with taskstats support.
|
|
|
|
* Add Unicode support, enabled with the --enable-unicode flag,
|
|
|
|
which requires libncursesw. (thanks to Sergej Pupykin)
|
|
|
|
* BUGFIX: Fix display of CPU count for threaded processes. When
|
|
|
|
user threads are hidden, process now shows the sum of
|
|
|
|
processor usage for all processors. When user threads are
|
|
|
|
displayed, each thread shows its own processor usage,
|
|
|
|
including the root thread.
|
|
|
|
* BUGFIX: avoid crashing when using many meters
|
|
|
|
- change source tarball format to bzip2
|
|
|
|
* Mon Nov 26 2007 thoenig@suse.de
|
2007-11-26 20:43:22 +01:00
|
|
|
- Update to htop 0.7
|
|
|
|
- Changes:
|
|
|
|
* CPU affinity configuration ('a' key)
|
|
|
|
* Improve display of tree view, properly nesting
|
|
|
|
threads of the same app based on TGID.
|
|
|
|
* IO-wait time now counts as idle time, which is a more
|
|
|
|
accurate description. It is still available in
|
|
|
|
split time, now called detailed CPU time.
|
|
|
|
(thanks to Samuel Thibault for the report)
|
|
|
|
* BUGFIX: Correct display of TPGID field
|
|
|
|
* Add TGID field
|
|
|
|
* BUGFIX: Don't crash with invalid command-line flags
|
|
|
|
(thanks to Nico Golde for the report)
|
|
|
|
* Fix GCC 4.3 compilation issues
|
|
|
|
(thanks to Martin Michlmayr for the report)
|
|
|
|
* OpenVZ support, enabled at compile-time with
|
|
|
|
the --enable-openvz flag.
|
|
|
|
(thanks to Sergey Lychko)
|
2008-07-11 22:45:50 +02:00
|
|
|
* Sat Jun 02 2007 thoenig@suse.de
|
2007-06-03 21:24:50 +02:00
|
|
|
- Update to htop 0.6.6
|
|
|
|
- Changes:
|
|
|
|
* Add support of NLWP field
|
|
|
|
* BUGFIX: Fix use of configurable /proc location
|
|
|
|
* Fix memory percentage calculation and make it saner
|
|
|
|
* Added display of DRS, DT, LRS and TRS
|
|
|
|
* BUGFIX: LRS and DRS memory values were flipped
|
|
|
|
* BUGFIX: Don't crash on very high UIDs
|
2008-07-11 22:45:50 +02:00
|
|
|
* Tue May 22 2007 thoenig@suse.de
|
2007-05-25 04:32:37 +02:00
|
|
|
- Initial package submission (htop 0.6.5)
|
|
|
|
- Add patch htop-desktop-file-fix-thoenig-01.patch
|