From 2aa4f16fa8bfac03f43b7747722d98d3b991679f Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?J=C3=B6rg=20Frings-F=C3=BCrst?= Date: Sat, 23 Aug 2014 09:09:02 +0200 Subject: some changes in debian/* --- .gitignore | 4 +++- debian/changelog | 24 ++++++++++++++++++++++++ debian/compat | 2 +- debian/control | 25 +++++++++++++++++-------- debian/copyright | 6 +++--- debian/mailgraph.dirs | 2 -- debian/patches/110_mailgraph.cgi.patch | 18 ++++++++++++++++++ debian/patches/series | 2 ++ debian/rules | 5 ----- debian/source/local-options | 2 -- 10 files changed, 68 insertions(+), 22 deletions(-) create mode 100644 debian/patches/110_mailgraph.cgi.patch delete mode 100644 debian/source/local-options diff --git a/.gitignore b/.gitignore index 845ca06..6c270cd 100644 --- a/.gitignore +++ b/.gitignore @@ -1 +1,3 @@ -.pc +.bzr +.bzrignore +.pc \ No newline at end of file diff --git a/debian/changelog b/debian/changelog index 2087163..c12664d 100644 --- a/debian/changelog +++ b/debian/changelog @@ -1,3 +1,27 @@ +mailgraph (1.14-12) unstable; urgency=medium + + * New Maintainer (Closes: #753569). + * debian/control: + - Set myself as maintainer. + - Bump Standards-Version to 3.9.5 (no changes required). + - Change Vcs-Browser to cgit. + * debian/patches: + - Add debian/patches/105_postscreen.diff (Closes: #730826). + (Thanks to Vaclav Ovsik ) + + Add output of postscreen into analysis. + - Add debian/patches/110_mailgraph.cgi.patch. + + move from debian/rules into this patch. + * debian/copyright: + - Add myself to the list of authors for debian/*. + - Update copyright years for 2014. + * Add debian/source/options: + - Set compression to xz & compression-level to 9 to save space. + * Change debian/compat to 9 (no changes required). + * debian/rules: + - Move manipulating mailgraph.cgi into a new patch. + + -- Jörg Frings-Fürst Sat, 23 Aug 2014 08:40:48 +0200 + mailgraph (1.14-11) unstable; urgency=low * Update copyright file as per DEP-5 1.0 format diff --git a/debian/compat b/debian/compat index 45a4fb7..ec63514 100644 --- a/debian/compat +++ b/debian/compat @@ -1 +1 @@ -8 +9 diff --git a/debian/control b/debian/control index e2c5ad9..6a38e34 100644 --- a/debian/control +++ b/debian/control @@ -1,18 +1,27 @@ Source: mailgraph Section: admin Priority: extra -Maintainer: Julien Valroff -Build-Depends: debhelper (>= 8), po-debconf -Standards-Version: 3.9.3 +Maintainer: Jörg Frings-Fürst +Build-Depends: + debhelper (>= 9), + po-debconf +Standards-Version: 3.9.5 Homepage: http://mailgraph.schweikert.ch -Vcs-Git: git://git.kirya.net/debian/mailgraph.git -Vcs-Browser: http://git.kirya.net/?p=debian/mailgraph.git;a=summary +Vcs-Git: git://anonscm.debian.org/collab-maint/mailgraph.git +Vcs-Browser: http://anonscm.debian.org/cgit/collab-maint/mailgraph.git Package: mailgraph Architecture: all -Depends: ${misc:Depends}, ${perl:Depends}, libfile-tail-perl, librrds-perl, ucf (>= 0.28) -Pre-Depends: debconf (>= 0.5) | debconf-2.0 -Recommends: httpd | apache2, exim4 | postfix | sendmail | mail-transport-agent +Depends: + ${misc:Depends}, + ${perl:Depends}, + libfile-tail-perl, + librrds-perl, + ucf (>= 0.28) +Pre-Depends: + debconf (>= 0.5) | debconf-2.0 +Recommends: + httpd | apache2, exim4 | postfix | sendmail | mail-transport-agent Description: RRDtool frontend for Mail statistics Mailgraph is a very simple mail statistics RRDtool frontend for Postfix, Sendmail or Exim that produces daily, weekly, monthly and diff --git a/debian/copyright b/debian/copyright index b6357f3..0f66eb0 100644 --- a/debian/copyright +++ b/debian/copyright @@ -9,8 +9,9 @@ Copyright: 2000-2007 David Schweikert License: GPL-2 Files: debian/* -Copyright: 2002-2009 Norbert Tretkowski - 2010-2011 Julien Valroff +Copyright: 2002-2008 Norbert Tretkowski + 2010-2012 Julien Valroff + 2014 Jörg Frings-Fürst License: GPL-2 License: GPL-2 @@ -33,4 +34,3 @@ License: GPL-2 On Debian systems, the full text of the GNU General Public License version 2 can be found in the file `/usr/share/common-licenses/GPL-2'. - diff --git a/debian/mailgraph.dirs b/debian/mailgraph.dirs index 5af1b35..07d42c1 100644 --- a/debian/mailgraph.dirs +++ b/debian/mailgraph.dirs @@ -1,3 +1 @@ -usr/sbin -usr/lib/cgi-bin var/lib/mailgraph diff --git a/debian/patches/110_mailgraph.cgi.patch b/debian/patches/110_mailgraph.cgi.patch new file mode 100644 index 0000000..a5338cf --- /dev/null +++ b/debian/patches/110_mailgraph.cgi.patch @@ -0,0 +1,18 @@ +Description: patch mailgraph.cgi for valid code + move the changes from debina/rules into this patch +Author: Jörg Frings-Fürst +Last-Update: 2014-08-23 +--- +This patch header follows DEP-3: http://dep.debian.net/deps/dep3/ +Index: trunk/mailgraph.cgi +=================================================================== +--- trunk.orig/mailgraph.cgi 2014-08-23 08:19:59.810656652 +0200 ++++ trunk/mailgraph.cgi 2014-08-23 08:20:15.282979723 +0200 +@@ -197,6 +197,7 @@ + + + ++ + + + HEADER diff --git a/debian/patches/series b/debian/patches/series index 843aec2..84357cf 100644 --- a/debian/patches/series +++ b/debian/patches/series @@ -5,3 +5,5 @@ 101_dspam-virus-notifications.diff 102_clamav-milter.diff 103_postfix-long-queue-IDs.diff +105_postscreen.diff +110_mailgraph.cgi.patch diff --git a/debian/rules b/debian/rules index 68fa942..76a9cb2 100755 --- a/debian/rules +++ b/debian/rules @@ -4,12 +4,7 @@ override_dh_auto_configure: ln mailgraph.pl mailgraph - cp -f -a mailgraph.cgi mailgraph.cgi.orig - sed -i -e 's/^$$/