--- geximon-0.7.7.orig/debian/compat +++ geximon-0.7.7/debian/compat @@ -0,0 +1 @@ +7 --- geximon-0.7.7.orig/debian/rules +++ geximon-0.7.7/debian/rules @@ -0,0 +1,62 @@ +#!/usr/bin/make -f +# -*- makefile -*- + +# Uncomment this to turn on verbose mode. +#export DH_VERBOSE=1 + +#CFLAGS = -Wall -g + +configure: configure-stamp +configure-stamp: + dh_testdir + + touch configure-stamp + + +build: build-stamp + +build-stamp: configure-stamp + dh_testdir + + touch build-stamp + +clean: + dh_testdir + dh_testroot + rm -f build-stamp configure-stamp + rm -rf $(CURDIR)/build/ + ./setup.py clean --all + dh_clean + +install: build + dh_testdir + dh_testroot + dh_prep + dh_installdirs + + ./setup.py install --prefix=./debian/geximon/usr + ./setup.py clean --all + +binary-indep: build install + dh_testdir + dh_testroot + dh_installchangelogs + dh_installdocs + dh_installexamples + dh_installmenu + dh_installman + dh_link + dh_compress + dh_fixperms + dh_python2 + dh_installdeb + dh_shlibdeps + dh_gencontrol + dh_md5sums + dh_builddeb + +# Build architecture-dependent files here. +binary-arch: build install + +binary: binary-indep binary-arch +.PHONY: build binary install clean configure --- geximon-0.7.7.orig/debian/docs +++ geximon-0.7.7/debian/docs @@ -0,0 +1,2 @@ +README +doc/*.html --- geximon-0.7.7.orig/debian/control +++ geximon-0.7.7/debian/control @@ -0,0 +1,19 @@ +Source: geximon +Section: mail +Priority: optional +Maintainer: David Watson +Build-Depends: debhelper (>= 7.0.50) +Build-Depends-Indep: python (>= 2.6.6-3~), scrollkeeper +Standards-Version: 3.8.3 +Homepage: http://projects.planetwatson.co.uk/wiki/geximon + +Package: geximon +Architecture: all +Depends: ${misc:Depends}, ${python:Depends}, python, python-gtk2 +Recommends: sudo, exim | exim4-base +Description: a monitor for the exim MTA + geximon is a Gtk2 reimplementation of eximon, an X monitor for + the exim mail transport agent. It has all features of the original + (tracking the log, managing the mail queue, plotting, etc.) and more. It + also integrates with exiwhat (allowing you to manage active exim instances), + exigrep, and eximstats. The interface is intuitive, compact, and easy to use. --- geximon-0.7.7.orig/debian/changelog +++ geximon-0.7.7/debian/changelog @@ -0,0 +1,104 @@ +geximon (0.7.7-2.1) unstable; urgency=low + + * Non-maintainer upload. + * Convert to dh_python2 (Closes: #616824). + + -- Luca Falavigna Tue, 28 May 2013 09:29:40 +0200 + +geximon (0.7.7-2) unstable; urgency=low + + * Update homepage field. Closes: #540994. + * Update Menu Section. + * debian/copyright + - Correct spelling error + - Update versionless licence file reference + * Update debhelper compat version + * Update standards version + + -- David Watson Tue, 26 Jan 2010 08:52:28 +0000 + +geximon (0.7.7-1) unstable; urgency=low + + * New upstream release + - Support for -Mvc exim option added. Closes: #433635. + * Add Homepage field and remove Homepage from description. + * Rebuilt with new version of pycentral. Closes: #490469. + * Update to standards version to 3.8.0 + - Update menu sections from Apps to Applications. + + -- David Watson Sat, 12 Jul 2008 20:56:15 +0100 + +geximon (0.7.6-2) unstable; urgency=low + + * Move the exim depends to a recommends now that geximon does need to run on + the same machine. + * Add Homepage line to package description. + + -- David Watson Tue, 31 Jul 2007 22:35:11 +0100 + +geximon (0.7.6-1) unstable; urgency=low + + * New upstream release + - Update project homepage. + - Fix broken log following. Closes: #427957. + * Update project homepage in debian/copyright. Closes: #427959. + + -- David Watson Thu, 28 Jun 2007 15:16:14 +0100 + +geximon (0.7.5-1) unstable; urgency=low + + * New upstream release. + + -- David Watson Mon, 12 Feb 2007 21:52:57 +0000 + +geximon (0.7.4-1) unstable; urgency=low + + * New upstream release + + -- David Watson Sat, 30 Sep 2006 15:11:14 +0100 + +geximon (0.7.3-1) unstable; urgency=low + + * New upstream release, adds improved error message if a valid + X session is not available. Closes: #339001 + * Added build depends on scrollkeeper. + * Switched to pycentral from pysupport. + + -- David Watson Wed, 16 Aug 2006 22:45:13 +0100 + +geximon (0.7.2-1) unstable; urgency=low + + * New upstream release. Closes: #338230 + * Update Standards version. + * Update for new python policy. + + -- David Watson Mon, 17 Jul 2006 21:40:31 +0100 + +geximon (0.7.1-1) unstable; urgency=low + + * Geximon adopted by David Watson + * Initial Debian upload. Closes: #244210 + * Build-Depend-Indep upon python-dev rather than python. + + -- David Watson Sun, 30 Oct 2005 09:25:57 +0000 + +geximon (0.7-1) unstable; urgency=low + + * Added a manpage. + * The GUI should be more responsive while the queue display is being + updated. Also, large queues should be handled much faster. Thanks to + Laurent Martelli for input regarding this issue. + * Now depending on exim4-base rather than exim4. Again thanks to Laurent + Martelli for pointing this out. + * Changed architecture from 'any' to 'all'. The package should be + installable on non-i386 systems now. + * Miscellaneous small bugfixes, code cleanups and minor feature additions. + + -- Gintautas Miliauskas Sat, 10 Apr 2004 01:06:07 +0300 + +geximon (0.6-1) unstable; urgency=low + + * Initial Release. + + -- Gintautas Miliauskas Wed, 27 Mar 2004 17:24:58 +0200 + --- geximon-0.7.7.orig/debian/dirs +++ geximon-0.7.7/debian/dirs @@ -0,0 +1,3 @@ +usr/bin +usr/share/pixmaps +usr/share/omf --- geximon-0.7.7.orig/debian/copyright +++ geximon-0.7.7/debian/copyright @@ -0,0 +1,28 @@ +This package was debianized by David Watson on +Tue, 27 Sep 2005 09:24:58 +0100. + +The current Debian maintainer is David Watson + +It was downloaded from http://geximon.planetwatson.co.uk/ + +Upstream Authors: Gintautas Miliauskas, David Watson + +Copyright: 2004 - 2005 Gintautas Miliauskas + 2005 - 2006 David Watson + +This program is free software; you can redistribute it and/or modify +it under the terms of the GNU General Public License (version 2) as published +by the Free Software Foundation; either version 2 of the License. + +This program is distributed in the hope that it will be useful, +but WITHOUT ANY WARRANTY; without even the implied warranty of +MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the +GNU General Public License for more details. + +You should have received a copy of the GNU General Public License with +the Debian GNU/Linux distribution in file /usr/share/common-licenses/GPL-2; +if not, write to the Free Software Foundation, Inc., 51 Franklin St, +Fifth Floor, Boston, MA 02110-1301, USA. + +On Debian systems, the complete text of the GNU General Public +License, version 2, can be found in /usr/share/common-licenses/GPL-2. --- geximon-0.7.7.orig/debian/geximon.docbase +++ geximon-0.7.7/debian/geximon.docbase @@ -0,0 +1,9 @@ +Document: geximon +Title: geximon documentation +Author: Gintautas Miliauskas +Abstract: This documentation describes using geximon +Section: Applications/System/Monitoring + +Format: HTML +Index: /usr/share/doc/geximon/geximon.html +Files: /usr/share/doc/geximon/*.html --- geximon-0.7.7.orig/debian/watch +++ geximon-0.7.7/debian/watch @@ -0,0 +1,2 @@ +version=3 +http://filestore.planetwatson.co.uk/geximon/geximon-(.*)\.tar\.gz --- geximon-0.7.7.orig/debian/menu +++ geximon-0.7.7/debian/menu @@ -0,0 +1,7 @@ +?package(geximon): \ + needs="X11" \ + section="Applications/System/Monitoring" \ + title="Geximon" \ + command="/usr/bin/geximon" \ + icon16x16="/usr/share/pixmaps/geximon-16x16.xpm" \ + icon32x32="/usr/share/pixmaps/geximon-32x32.xpm" --- geximon-0.7.7.orig/debian/manpages +++ geximon-0.7.7/debian/manpages @@ -0,0 +1 @@ +doc/geximon.8