This commit is contained in:
parent
b5026ee7c4
commit
9f29ab8166
@ -1,3 +0,0 @@
|
|||||||
version https://git-lfs.github.com/spec/v1
|
|
||||||
oid sha256:b2e2ef39afc870c9ef7228959b53fbd38fab02be74bb0d3e91ebf4fdbaa752e0
|
|
||||||
size 141140
|
|
3
htop-0.7.tar.gz
Normal file
3
htop-0.7.tar.gz
Normal file
@ -0,0 +1,3 @@
|
|||||||
|
version https://git-lfs.github.com/spec/v1
|
||||||
|
oid sha256:1361f4f0b92d7e6bdac25a4b7ee138a7ee83b5a9368820f5aa518051ca82862b
|
||||||
|
size 143896
|
24
htop.changes
24
htop.changes
@ -1,3 +1,27 @@
|
|||||||
|
-------------------------------------------------------------------
|
||||||
|
Mon Nov 26 11:18:29 CET 2007 - thoenig@suse.de
|
||||||
|
|
||||||
|
- 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)
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
-------------------------------------------------------------------
|
-------------------------------------------------------------------
|
||||||
Sat Jun 2 16:34:51 CEST 2007 - thoenig@suse.de
|
Sat Jun 2 16:34:51 CEST 2007 - thoenig@suse.de
|
||||||
|
|
||||||
|
33
htop.spec
33
htop.spec
@ -1,5 +1,5 @@
|
|||||||
#
|
#
|
||||||
# spec file for package htop (Version 0.6.6)
|
# spec file for package htop (Version 0.7)
|
||||||
#
|
#
|
||||||
# Copyright (c) 2007 SUSE LINUX Products GmbH, Nuernberg, Germany.
|
# Copyright (c) 2007 SUSE LINUX Products GmbH, Nuernberg, Germany.
|
||||||
# This file and all modifications and additions to the pristine
|
# This file and all modifications and additions to the pristine
|
||||||
@ -11,21 +11,21 @@
|
|||||||
# norootforbuild
|
# norootforbuild
|
||||||
|
|
||||||
Name: htop
|
Name: htop
|
||||||
URL: http://htop.sourceforge.net
|
Url: http://htop.sourceforge.net
|
||||||
Summary: htop is an interactive text-mode process viewer for Linux. It aims to be a better 'top'.
|
Summary: An Interactive text-mode Process Viewer for Linux
|
||||||
Version: 0.6.6
|
Version: 0.7
|
||||||
Release: 1
|
Release: 1
|
||||||
License: GNU General Public License (GPL)
|
License: GPL v2 or later
|
||||||
Group: System/Monitoring
|
Group: System/Monitoring
|
||||||
Source0: %{name}-%{version}.tar.gz
|
Source0: %{name}-%{version}.tar.gz
|
||||||
Patch0: %{name}-desktop-file-fix-thoenig-01.patch
|
Patch0: %{name}-desktop-file-fix-thoenig-01.patch
|
||||||
BuildRoot: %{_tmppath}/%{name}-%{version}-build
|
BuildRoot: %{_tmppath}/%{name}-%{version}-build
|
||||||
BuildRequires: ncurses-devel
|
BuildRequires: ncurses-devel
|
||||||
Autoreqprov: on
|
AutoReqProv: on
|
||||||
|
|
||||||
%description
|
%description
|
||||||
htop is an interactive text-mode process viewer for Linux. It aims to
|
htop is an interactive text-mode process viewer for Linux. It aims to
|
||||||
be a better 'top'. It requires ncurses. It is tested with Linux 2.6,
|
be a better 'top' and requires ncurses. It is tested with Linux 2.6,
|
||||||
but is also reported to work (and was originally developed) with the
|
but is also reported to work (and was originally developed) with the
|
||||||
2.4 series.
|
2.4 series.
|
||||||
|
|
||||||
@ -62,6 +62,25 @@ rm -rf %{_buildroot}
|
|||||||
%{_mandir}/*/%{name}*
|
%{_mandir}/*/%{name}*
|
||||||
|
|
||||||
%changelog
|
%changelog
|
||||||
|
* Mon Nov 26 2007 - thoenig@suse.de
|
||||||
|
- 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)
|
||||||
* Sat Jun 02 2007 - thoenig@suse.de
|
* Sat Jun 02 2007 - thoenig@suse.de
|
||||||
- Update to htop 0.6.6
|
- Update to htop 0.6.6
|
||||||
- Changes:
|
- Changes:
|
||||||
|
Loading…
x
Reference in New Issue
Block a user