--- htop-0.5.orig/debian/changelog +++ htop-0.5/debian/changelog @@ -0,0 +1,73 @@ +htop (0.5-1) unstable; urgency=low + + * New upstream version. + - fixes problem with wrongly displayed CPU bar (Closes: #283212) + + -- Bartosz Fenski Sat, 27 Nov 2004 10:10:17 +0100 + +htop (0.4.1-3) unstable; urgency=low + + * Fixed handling of non-alphanumeric chars during search. + Thanks to Gian Piero Carrubba for noticing it (Closes: #269060) + * Added description of recursive search of processes to the manpage. + Should be now clear how does it work so (Closes: #269061) + + -- Bartosz Fenski Tue, 31 Aug 2004 21:40:15 +0200 + +htop (0.4.1-2) unstable; urgency=low + + * Included updated manpage. (Closes: #269064) + Thanks to Gian Piero Carrubba for provided patch. + + -- Bartosz Fenski Tue, 31 Aug 2004 21:08:13 +0200 + +htop (0.4.1-1) unstable; urgency=low + + * New upstream version. + - fixes FTBFS on some archs (Closes: #268373) + + -- Bartosz Fenski Fri, 27 Aug 2004 14:01:11 +0200 + +htop (0.4-1) unstable; urgency=low + + * New upstream version. + * Added debian/menu file. + + -- Bartosz Fenski Sun, 22 Aug 2004 13:09:12 +0200 + +htop (0.3.3-1) unstable; urgency=low + + * New upstream version. + * Added debian/watch file. + + -- Bartosz Fenski Sun, 20 Jun 2004 10:33:13 +0200 + +htop (0.3.1-1) unstable; urgency=low + + * New upstream version. + * Hopefully first official Debian release. (Closes: #248939) + Thanks for sponsoring goes to Cedric Delfosse. + * debian/rules: + - removed dh_installman, cause it's now included by upstream. + + -- Bartosz Fenski Mon, 31 May 2004 05:37:15 +0200 + +htop (0.3-1) unstable; urgency=low + + * New upstream version. + + -- Bartosz Fenski Thu, 20 May 2004 01:15:05 +0200 + +htop (0.2.1-1) unstable; urgency=low + + * New upstream version. + * Some updates to manual page. + + -- Bartosz Fenski Sat, 15 May 2004 10:15:03 +0200 + +htop (0.2-1) unstable; urgency=low + + * Initial Release. + + -- Bartosz Fenski Fri, 14 May 2004 10:37:04 +0200 + --- htop-0.5.orig/debian/compat +++ htop-0.5/debian/compat @@ -0,0 +1 @@ +4 --- htop-0.5.orig/debian/control +++ htop-0.5/debian/control @@ -0,0 +1,19 @@ +Source: htop +Section: utils +Priority: optional +Maintainer: Bartosz Fenski +Build-Depends: debhelper (>= 4.0.0), libncurses5-dev, autotools-dev +Standards-Version: 3.6.1 + +Package: htop +Architecture: any +Depends: ${shlibs:Depends} +Description: interactive processes viewer + Htop is an ncursed-based process viewer similar to top, but it + allows to scroll the list vertically and horizontally to see + all processes and their full command lines. + . + Tasks related to processes (killing, renicing) can be done without + entering their PIDs. + . + Homepage: http://htop.sourceforge.net --- htop-0.5.orig/debian/copyright +++ htop-0.5/debian/copyright @@ -0,0 +1,21 @@ +This package was debianized by Bartosz Fenski on +Fri, 14 May 2004 10:37:04 +0200. + +It was downloaded from http://htop.sourceforge.net + +Upstream Author: Hisham Muhammad + +Copyright: + +Copyright 2004 Hisham Muhammad + +License: + +This program is free software; you can redistribute it and/or modify it +under the terms of the GNU General Public License as published by the +Free Software Foundation; either version 2, or (at your option) any +later version. + +On Debian systems, the complete text of the GNU General Public License +can be found in the file `/usr/share/common-licenses/GPL'. + --- htop-0.5.orig/debian/dirs +++ htop-0.5/debian/dirs @@ -0,0 +1 @@ +usr/bin --- htop-0.5.orig/debian/docs +++ htop-0.5/debian/docs @@ -0,0 +1,4 @@ +AUTHORS +NEWS +README +TODO --- htop-0.5.orig/debian/menu +++ htop-0.5/debian/menu @@ -0,0 +1,3 @@ +?package(htop):needs="text" section="Apps/System"\ + title="htop" command="/usr/bin/htop"\ + hints="Monitoring" --- htop-0.5.orig/debian/rules +++ htop-0.5/debian/rules @@ -0,0 +1,78 @@ +#!/usr/bin/make -f +# rules file for htop (May 2004) + +# Uncomment this to turn on verbose mode. +#export DH_VERBOSE=1 + + +# These are used for cross-compiling and for saving the configure script +# from having to guess our platform (since we know it already) +DEB_HOST_GNU_TYPE ?= $(shell dpkg-architecture -qDEB_HOST_GNU_TYPE) +DEB_BUILD_GNU_TYPE ?= $(shell dpkg-architecture -qDEB_BUILD_GNU_TYPE) + + +CFLAGS = -Wall -g + +ifneq (,$(findstring noopt,$(DEB_BUILD_OPTIONS))) + CFLAGS += -O0 +else + CFLAGS += -O2 +endif +ifeq (,$(findstring nostrip,$(DEB_BUILD_OPTIONS))) + INSTALL_PROGRAM += -s +endif + +config.status: configure + dh_testdir + + cp /usr/share/misc/config.sub /usr/share/misc/config.guess . + + CFLAGS="$(CFLAGS)" LDFLAGS="$(INSTALL_PROGRAM)" ./configure --host=$(DEB_HOST_GNU_TYPE) --build=$(DEB_BUILD_GNU_TYPE) --prefix=/usr --mandir=\$${prefix}/share/man --infodir=\$${prefix}/share/info + +build: build-stamp + +build-stamp: config.status + dh_testdir + + $(MAKE) + + touch build-stamp + +clean: + dh_testdir + dh_testroot + rm -f build-stamp + + -$(MAKE) distclean + + dh_clean config.sub config.guess + dh_clean + +install: build + dh_testdir + dh_testroot + dh_clean -k + dh_installdirs + + $(MAKE) install DESTDIR=$(CURDIR)/debian/htop + +binary-indep: build install + +binary-arch: build install + dh_testdir + dh_testroot + dh_installchangelogs ChangeLog + dh_installdocs + dh_installmenu + dh_link + dh_strip + dh_compress + dh_fixperms + dh_installdeb + dh_shlibdeps + dh_gencontrol + dh_md5sums + dh_builddeb + +binary: binary-indep binary-arch +.PHONY: build clean binary-indep binary-arch binary install --- htop-0.5.orig/debian/watch +++ htop-0.5/debian/watch @@ -0,0 +1,2 @@ +version=2 +http://prdownloads.sourceforge.net/htop/htop-(.*)\.tar\.gz debian uupdate