From 1b8e1e2e623c3ac98109592de36a83a75cfa3c29 Mon Sep 17 00:00:00 2001 From: Sven Hoexter Date: Thu, 1 Nov 2018 19:49:04 +0100 Subject: [PATCH 01/16] Remove trailing whitespaces from various files --- debian/changelog | 8 ++++---- debian/control | 4 ++-- 2 files changed, 6 insertions(+), 6 deletions(-) diff --git a/debian/changelog b/debian/changelog index 64a3b96..230a292 100644 --- a/debian/changelog +++ b/debian/changelog @@ -55,7 +55,7 @@ pflogsumm (1.1.3-2) unstable; urgency=low * Update debian/copyright: - Refer to /usr/share/common-licenses/GPL-2 instead of the generic GPL symlink. - - State that the copyright and license for the debian directory. + - State that the copyright and license for the debian directory. -- Sven Hoexter Thu, 28 Apr 2011 20:46:12 +0200 @@ -105,8 +105,8 @@ pflogsumm (1.1.2-1) unstable; urgency=low -- Sven Hoexter Sat, 03 Oct 2009 11:12:12 +0200 pflogsumm (1.1.0-3) unstable; urgency=low - - * Upload prepared by Ralf Hildebrandt + + * Upload prepared by Ralf Hildebrandt * Patches by Fridtjof Busse * Bumped DH_COMPAT * Fixed some perl warnings @@ -131,7 +131,7 @@ pflogsumm (1.1.0-1) unstable; urgency=low * Update to Standards-Version 3.6.1 * Re-packaged as Debian non-native * New upstream release - + Package updated + + Package updated (Closes: #225816) + Catches new format of rejects (Closes: #203011) diff --git a/debian/control b/debian/control index eb51f78..0060219 100644 --- a/debian/control +++ b/debian/control @@ -13,7 +13,7 @@ Package: pflogsumm Architecture: all Depends: ${misc:Depends}, perl, libdate-calc-perl Description: Postfix log entry summarizer - pflogsumm is designed to provide an over-view of postfix - activity, with just enough detail to give the administrator + pflogsumm is designed to provide an over-view of postfix + activity, with just enough detail to give the administrator a "heads up" for potential trouble spots. -- 2.39.2 From 0c2440c3aa761b0198d8b31e0d9f0f8244803d6d Mon Sep 17 00:00:00 2001 From: Sven Hoexter Date: Thu, 1 Nov 2018 19:49:45 +0100 Subject: [PATCH 02/16] releasing package pflogsumm version 1.1.5-4 --- debian/changelog | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/debian/changelog b/debian/changelog index 230a292..1a920df 100644 --- a/debian/changelog +++ b/debian/changelog @@ -1,11 +1,11 @@ -pflogsumm (1.1.5-4) UNRELEASED; urgency=medium +pflogsumm (1.1.5-4) unstable; urgency=medium * Change Standards-Version to 4.2.1. * Change priority from extra to optional. * Change Vcs-Git to a https URL. * Build-Depend on debhelper-compat, change to debhelper compat level 11. - -- + -- Sven Hoexter Thu, 01 Nov 2018 19:49:29 +0100 pflogsumm (1.1.5-3) unstable; urgency=medium -- 2.39.2 From 4bdc1b42ae2e9cf4e0c78a33ae239a7171f954a6 Mon Sep 17 00:00:00 2001 From: =?utf8?q?Sven=20H=C3=B6xter?= Date: Tue, 15 Jan 2019 10:02:23 +0100 Subject: [PATCH 03/16] Add patch to count milter rejects provided by Matus Uhlar. --- debian/changelog | 6 ++++++ debian/patches/milter-rejects | 18 ++++++++++++++++++ debian/patches/series | 1 + 3 files changed, 25 insertions(+) create mode 100644 debian/patches/milter-rejects diff --git a/debian/changelog b/debian/changelog index 1a920df..e2a5be3 100644 --- a/debian/changelog +++ b/debian/changelog @@ -1,3 +1,9 @@ +pflogsumm (1.1.5-5) unstable; urgency=medium + + * Add patch to count milter rejects provided by Matus Uhlar. + + -- + pflogsumm (1.1.5-4) unstable; urgency=medium * Change Standards-Version to 4.2.1. diff --git a/debian/patches/milter-rejects b/debian/patches/milter-rejects new file mode 100644 index 0000000..2e15cca --- /dev/null +++ b/debian/patches/milter-rejects @@ -0,0 +1,18 @@ +Index: pflogsumm/pflogsumm.pl +=================================================================== +--- pflogsumm.orig/pflogsumm.pl ++++ pflogsumm/pflogsumm.pl +@@ -666,11 +666,11 @@ while(<>) { + + # regexp rejects happen in "cleanup" + if($cmd eq "cleanup" && (my($rejSubTyp, $rejReas, $rejRmdr) = $logRmdr =~ +- /\/cleanup\[\d+\]: .*?\b(reject|warning|hold|discard): (header|body) (.*)$/) == 3) ++ /\/cleanup\[\d+\]: .*?\b((?:milter-)reject|warning|hold|discard): (header|body|END-OF-MESSAGE) (.*)$/) == 3) + { + $rejRmdr =~ s/( from \S+?)?; from=<.*$// unless($opts{'verbMsgDetail'}); + $rejRmdr = string_trimmer($rejRmdr, 64, $opts{'verbMsgDetail'}); +- if($rejSubTyp eq "reject") { ++ if($rejSubTyp eq "reject" or $rejSubTyp eq "milter-reject") { + ++$rejects{$cmd}{$rejReas}{$rejRmdr} unless($opts{'rejectDetail'} == 0); + ++$msgsRjctd; + } elsif($rejSubTyp eq "warning") { diff --git a/debian/patches/series b/debian/patches/series index 5bfce8f..0aeb4ab 100644 --- a/debian/patches/series +++ b/debian/patches/series @@ -1,2 +1,3 @@ kill-dot-pl postscreen-rejects +milter-rejects -- 2.39.2 From de761ed6ddb308ff4e0c13f750dcaced62c1fd60 Mon Sep 17 00:00:00 2001 From: =?utf8?q?Sven=20H=C3=B6xter?= Date: Tue, 15 Jan 2019 10:03:05 +0100 Subject: [PATCH 04/16] Update Standards-Version to 4.3.0 - no changes required. --- debian/changelog | 1 + debian/control | 2 +- 2 files changed, 2 insertions(+), 1 deletion(-) diff --git a/debian/changelog b/debian/changelog index e2a5be3..d9b5dcd 100644 --- a/debian/changelog +++ b/debian/changelog @@ -1,6 +1,7 @@ pflogsumm (1.1.5-5) unstable; urgency=medium * Add patch to count milter rejects provided by Matus Uhlar. + * Update Standards-Version to 4.3.0 - no changes required. -- diff --git a/debian/control b/debian/control index 0060219..dbbba2f 100644 --- a/debian/control +++ b/debian/control @@ -4,7 +4,7 @@ Priority: optional Maintainer: Sven Hoexter Build-Depends-Indep: quilt Build-Depends: debhelper-compat (= 11) -Standards-Version: 4.2.1 +Standards-Version: 4.3.0 Homepage: http://jimsun.linxnet.com/postfix_contrib.html Vcs-Git: https://git.sven.stormbind.net/pflogsumm.git Vcs-Browser: https://git.sven.stormbind.net/?p=sven/pflogsumm.git -- 2.39.2 From 87d3e131a938d1ca3620afa83521602b4a8d75b0 Mon Sep 17 00:00:00 2001 From: =?utf8?q?Sven=20H=C3=B6xter?= Date: Tue, 15 Jan 2019 10:07:41 +0100 Subject: [PATCH 05/16] Change debhelper-compat level to 12. --- debian/changelog | 1 + debian/control | 2 +- 2 files changed, 2 insertions(+), 1 deletion(-) diff --git a/debian/changelog b/debian/changelog index d9b5dcd..f5da682 100644 --- a/debian/changelog +++ b/debian/changelog @@ -2,6 +2,7 @@ pflogsumm (1.1.5-5) unstable; urgency=medium * Add patch to count milter rejects provided by Matus Uhlar. * Update Standards-Version to 4.3.0 - no changes required. + * Change debhelper-compat level to 12. -- diff --git a/debian/control b/debian/control index dbbba2f..a2117e5 100644 --- a/debian/control +++ b/debian/control @@ -3,7 +3,7 @@ Section: admin Priority: optional Maintainer: Sven Hoexter Build-Depends-Indep: quilt -Build-Depends: debhelper-compat (= 11) +Build-Depends: debhelper-compat (= 12) Standards-Version: 4.3.0 Homepage: http://jimsun.linxnet.com/postfix_contrib.html Vcs-Git: https://git.sven.stormbind.net/pflogsumm.git -- 2.39.2 From 55b0a97c43e8db182c6a465a46313de3f6602a39 Mon Sep 17 00:00:00 2001 From: =?utf8?q?Sven=20H=C3=B6xter?= Date: Tue, 15 Jan 2019 10:10:28 +0100 Subject: [PATCH 06/16] Remove empty line --- debian/control | 1 - 1 file changed, 1 deletion(-) diff --git a/debian/control b/debian/control index a2117e5..394f48e 100644 --- a/debian/control +++ b/debian/control @@ -16,4 +16,3 @@ Description: Postfix log entry summarizer pflogsumm is designed to provide an over-view of postfix activity, with just enough detail to give the administrator a "heads up" for potential trouble spots. - -- 2.39.2 From b0f4f9469a2a1e26a25048fc9f82adb3af22f170 Mon Sep 17 00:00:00 2001 From: =?utf8?q?Sven=20H=C3=B6xter?= Date: Tue, 15 Jan 2019 10:10:39 +0100 Subject: [PATCH 07/16] releasing package pflogsumm version 1.1.5-5 --- debian/changelog | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/debian/changelog b/debian/changelog index f5da682..e4c4ec2 100644 --- a/debian/changelog +++ b/debian/changelog @@ -4,7 +4,7 @@ pflogsumm (1.1.5-5) unstable; urgency=medium * Update Standards-Version to 4.3.0 - no changes required. * Change debhelper-compat level to 12. - -- + -- Sven Hoexter Tue, 15 Jan 2019 10:10:35 +0100 pflogsumm (1.1.5-4) unstable; urgency=medium -- 2.39.2 From d8295ec9b758e079ca00051f5cbdf81f186e657d Mon Sep 17 00:00:00 2001 From: =?utf8?q?Sven=20H=C3=B6xter?= Date: Sat, 4 Apr 2020 19:56:06 +0200 Subject: [PATCH 08/16] Update postscreen-rejects patch with a fix for IPv6 addresses. Kudos to Juri Haberland for the fix. (Closes: 955627) --- debian/changelog | 8 ++++++++ debian/patches/postscreen-rejects | 5 +++-- 2 files changed, 11 insertions(+), 2 deletions(-) diff --git a/debian/changelog b/debian/changelog index e4c4ec2..c85c3fa 100644 --- a/debian/changelog +++ b/debian/changelog @@ -1,3 +1,11 @@ +pflogsumm (1.1.5-6) UNRELEASED; urgency=medium + + * Update postscreen-rejects patch with a fix for IPv6 + addresses. Kudos to Juri Haberland + for the fix. (Closes: 955627) + + -- Sven Hoexter Sat, 04 Apr 2020 19:46:48 +0200 + pflogsumm (1.1.5-5) unstable; urgency=medium * Add patch to count milter rejects provided by Matus Uhlar. diff --git a/debian/patches/postscreen-rejects b/debian/patches/postscreen-rejects index 74e56fd..a04f91b 100644 --- a/debian/patches/postscreen-rejects +++ b/debian/patches/postscreen-rejects @@ -1,4 +1,4 @@ -Index: pflogsumm.pl +Index: pflogsumm/pflogsumm.pl =================================================================== --- pflogsumm.orig/pflogsumm.pl +++ pflogsumm/pflogsumm.pl @@ -20,7 +20,8 @@ Index: pflogsumm.pl + unless((($domain, $ipAddr) = /^([^\[]*)\[((?:\d{1,3}\.){3}\d{1,3})\]/) == 2|| + (($domain, $ipAddr) = /^([^\/]*)\/([0-9a-f.:]+)/i) == 2) { # more exhaustive method - ($domain, $ipAddr) = /^([^\[\(\/]+)[\[\(\/]([^\]\)]+)[\]\)]?:?\s*$/; +- ($domain, $ipAddr) = /^([^\[\(\/]+)[\[\(\/]([^\]\)]+)[\]\)]?:?\s*$/; ++ ($domain, $ipAddr) = /^([^\[\(\/]*)[\[\(\/]([^\]\)]+)[\]\)]:?\d*$/; } # "mach.host.dom"/"mach.host.do.co" to "host.dom"/"host.do.co" -- 2.39.2 From 64fad7b9045696bda526f5813317071b1c9a47a3 Mon Sep 17 00:00:00 2001 From: =?utf8?q?Sven=20H=C3=B6xter?= Date: Thu, 9 Apr 2020 14:34:46 +0200 Subject: [PATCH 09/16] Update packaging to use source format 3.0 --- debian/README.source | 3 --- debian/changelog | 3 +++ debian/control | 3 +-- debian/gbp.conf | 1 + debian/rules | 2 +- debian/source/format | 2 +- 6 files changed, 7 insertions(+), 7 deletions(-) delete mode 100644 debian/README.source diff --git a/debian/README.source b/debian/README.source deleted file mode 100644 index 3d5f55c..0000000 --- a/debian/README.source +++ /dev/null @@ -1,3 +0,0 @@ -This package uses quilt to manage the patches in debian/patches. -For further information please install the quilt package and read -/usr/share/doc/quilt/README.source. diff --git a/debian/changelog b/debian/changelog index c85c3fa..10f699a 100644 --- a/debian/changelog +++ b/debian/changelog @@ -3,6 +3,9 @@ pflogsumm (1.1.5-6) UNRELEASED; urgency=medium * Update postscreen-rejects patch with a fix for IPv6 addresses. Kudos to Juri Haberland for the fix. (Closes: 955627) + * Migrate from source format 1.0 to 3.0 (quilt). + * Define cleaner for git buildpackage. + * Update to Standards-Version 4.5.0 - no changes. -- Sven Hoexter Sat, 04 Apr 2020 19:46:48 +0200 diff --git a/debian/control b/debian/control index 394f48e..901ad68 100644 --- a/debian/control +++ b/debian/control @@ -2,9 +2,8 @@ Source: pflogsumm Section: admin Priority: optional Maintainer: Sven Hoexter -Build-Depends-Indep: quilt Build-Depends: debhelper-compat (= 12) -Standards-Version: 4.3.0 +Standards-Version: 4.5.0 Homepage: http://jimsun.linxnet.com/postfix_contrib.html Vcs-Git: https://git.sven.stormbind.net/pflogsumm.git Vcs-Browser: https://git.sven.stormbind.net/?p=sven/pflogsumm.git diff --git a/debian/gbp.conf b/debian/gbp.conf index cec628c..0e094c9 100644 --- a/debian/gbp.conf +++ b/debian/gbp.conf @@ -1,2 +1,3 @@ [DEFAULT] pristine-tar = True +cleaner = fakeroot debian/rules clean diff --git a/debian/rules b/debian/rules index de4566b..5ede039 100755 --- a/debian/rules +++ b/debian/rules @@ -1,6 +1,6 @@ #!/usr/bin/make -f %: - dh $@ --with quilt + dh $@ override_dh_auto_install: install --mode=755 pflogsumm.pl debian/pflogsumm/usr/sbin/pflogsumm diff --git a/debian/source/format b/debian/source/format index d3827e7..163aaf8 100644 --- a/debian/source/format +++ b/debian/source/format @@ -1 +1 @@ -1.0 +3.0 (quilt) -- 2.39.2 From 725f743e4646978c32df378ea2ec2b7cd12ff287 Mon Sep 17 00:00:00 2001 From: =?utf8?q?Sven=20H=C3=B6xter?= Date: Thu, 9 Apr 2020 15:03:01 +0200 Subject: [PATCH 10/16] releasing package pflogsumm version 1.1.5-6 --- debian/changelog | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/debian/changelog b/debian/changelog index 10f699a..4968271 100644 --- a/debian/changelog +++ b/debian/changelog @@ -1,13 +1,13 @@ -pflogsumm (1.1.5-6) UNRELEASED; urgency=medium +pflogsumm (1.1.5-6) unstable; urgency=medium * Update postscreen-rejects patch with a fix for IPv6 addresses. Kudos to Juri Haberland - for the fix. (Closes: 955627) + for the fix. (Closes: #955627) * Migrate from source format 1.0 to 3.0 (quilt). * Define cleaner for git buildpackage. * Update to Standards-Version 4.5.0 - no changes. - -- Sven Hoexter Sat, 04 Apr 2020 19:46:48 +0200 + -- Sven Hoexter Thu, 09 Apr 2020 15:02:41 +0200 pflogsumm (1.1.5-5) unstable; urgency=medium -- 2.39.2 From cf3df17037df6c2fb1eeb1e441aa6bdaa5fc7d0d Mon Sep 17 00:00:00 2001 From: Sven Hoexter Date: Sat, 11 Apr 2020 13:12:52 +0200 Subject: [PATCH 11/16] releasing package pflogsumm version 1.1.5-7 --- debian/changelog | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/debian/changelog b/debian/changelog index 4968271..1d8d663 100644 --- a/debian/changelog +++ b/debian/changelog @@ -1,3 +1,9 @@ +pflogsumm (1.1.5-7) unstable; urgency=medium + + * Re-Release for a source only upload. Package is unchanged. + + -- Sven Hoexter Sat, 11 Apr 2020 13:12:19 +0200 + pflogsumm (1.1.5-6) unstable; urgency=medium * Update postscreen-rejects patch with a fix for IPv6 -- 2.39.2 From 4836e4ef662ca668c01ad388683bfd199c5e4c87 Mon Sep 17 00:00:00 2001 From: Sven Hoexter Date: Wed, 4 Jan 2023 13:08:43 +0100 Subject: [PATCH 12/16] Fix milter-rejects patch regex. Kudos to Andreas Jaggi for the report and patch. (Closes: #1027829) --- debian/changelog | 7 +++++++ debian/patches/milter-rejects | 2 +- 2 files changed, 8 insertions(+), 1 deletion(-) diff --git a/debian/changelog b/debian/changelog index 1d8d663..70fb577 100644 --- a/debian/changelog +++ b/debian/changelog @@ -1,3 +1,10 @@ +pflogsumm (1.1.5-8) UNRELEASED; urgency=medium + + * Fix regex in milter-rejects patch. Kudos to Andreas Jaggi + for the report and patch. (Closes: #1027829) + + -- Sven Hoexter Wed, 04 Jan 2023 13:08:05 +0100 + pflogsumm (1.1.5-7) unstable; urgency=medium * Re-Release for a source only upload. Package is unchanged. diff --git a/debian/patches/milter-rejects b/debian/patches/milter-rejects index 2e15cca..b03d9aa 100644 --- a/debian/patches/milter-rejects +++ b/debian/patches/milter-rejects @@ -7,7 +7,7 @@ Index: pflogsumm/pflogsumm.pl # regexp rejects happen in "cleanup" if($cmd eq "cleanup" && (my($rejSubTyp, $rejReas, $rejRmdr) = $logRmdr =~ - /\/cleanup\[\d+\]: .*?\b(reject|warning|hold|discard): (header|body) (.*)$/) == 3) -+ /\/cleanup\[\d+\]: .*?\b((?:milter-)reject|warning|hold|discard): (header|body|END-OF-MESSAGE) (.*)$/) == 3) ++ /\/cleanup\[\d+\]: .*?\b((?:milter-)?reject|warning|hold|discard): (header|body|END-OF-MESSAGE) (.*)$/) == 3) { $rejRmdr =~ s/( from \S+?)?; from=<.*$// unless($opts{'verbMsgDetail'}); $rejRmdr = string_trimmer($rejRmdr, 64, $opts{'verbMsgDetail'}); -- 2.39.2 From 0798fc0dd3b3197bdd756dc3f438c6c37732a107 Mon Sep 17 00:00:00 2001 From: Sven Hoexter Date: Wed, 4 Jan 2023 13:12:20 +0100 Subject: [PATCH 13/16] Update debian/copyright for 2023. --- debian/changelog | 1 + debian/copyright | 2 +- 2 files changed, 2 insertions(+), 1 deletion(-) diff --git a/debian/changelog b/debian/changelog index 70fb577..2356b8b 100644 --- a/debian/changelog +++ b/debian/changelog @@ -2,6 +2,7 @@ pflogsumm (1.1.5-8) UNRELEASED; urgency=medium * Fix regex in milter-rejects patch. Kudos to Andreas Jaggi for the report and patch. (Closes: #1027829) + * Update debian/copyright for 2023. -- Sven Hoexter Wed, 04 Jan 2023 13:08:05 +0100 diff --git a/debian/copyright b/debian/copyright index 749ca99..dd05877 100644 --- a/debian/copyright +++ b/debian/copyright @@ -13,7 +13,7 @@ Upstream Author: James S. Seymour Copyright: The debian directory of this package is -Copyright 2010-2018 Sven Hoexter +Copyright 2010-2023 Sven Hoexter All of the programs, applications, and utilities (hereinafter referred to as "programs") are Copyright (C) 1998-2010 James S. Seymour. -- 2.39.2 From 1a04a5af6f776bd966852438b662f5d6efe0e178 Mon Sep 17 00:00:00 2001 From: Sven Hoexter Date: Wed, 4 Jan 2023 13:13:29 +0100 Subject: [PATCH 14/16] Increase debhelper compat level from v12 to v13. --- debian/changelog | 1 + debian/control | 2 +- 2 files changed, 2 insertions(+), 1 deletion(-) diff --git a/debian/changelog b/debian/changelog index 2356b8b..1e953bc 100644 --- a/debian/changelog +++ b/debian/changelog @@ -3,6 +3,7 @@ pflogsumm (1.1.5-8) UNRELEASED; urgency=medium * Fix regex in milter-rejects patch. Kudos to Andreas Jaggi for the report and patch. (Closes: #1027829) * Update debian/copyright for 2023. + * Increase debhelper compat level from v12 to v13. -- Sven Hoexter Wed, 04 Jan 2023 13:08:05 +0100 diff --git a/debian/control b/debian/control index 901ad68..8b7ca73 100644 --- a/debian/control +++ b/debian/control @@ -2,7 +2,7 @@ Source: pflogsumm Section: admin Priority: optional Maintainer: Sven Hoexter -Build-Depends: debhelper-compat (= 12) +Build-Depends: debhelper-compat (= 13) Standards-Version: 4.5.0 Homepage: http://jimsun.linxnet.com/postfix_contrib.html Vcs-Git: https://git.sven.stormbind.net/pflogsumm.git -- 2.39.2 From d9729f40b583e241e1b8f312936b9a24ecaacee2 Mon Sep 17 00:00:00 2001 From: Sven Hoexter Date: Wed, 4 Jan 2023 13:14:15 +0100 Subject: [PATCH 15/16] Update Standards-Version to 4.6.2, no changes required. --- debian/changelog | 1 + debian/control | 2 +- 2 files changed, 2 insertions(+), 1 deletion(-) diff --git a/debian/changelog b/debian/changelog index 1e953bc..8248670 100644 --- a/debian/changelog +++ b/debian/changelog @@ -4,6 +4,7 @@ pflogsumm (1.1.5-8) UNRELEASED; urgency=medium for the report and patch. (Closes: #1027829) * Update debian/copyright for 2023. * Increase debhelper compat level from v12 to v13. + * Update Standards-Version to 4.6.2, no changes required. -- Sven Hoexter Wed, 04 Jan 2023 13:08:05 +0100 diff --git a/debian/control b/debian/control index 8b7ca73..fcf32e1 100644 --- a/debian/control +++ b/debian/control @@ -3,7 +3,7 @@ Section: admin Priority: optional Maintainer: Sven Hoexter Build-Depends: debhelper-compat (= 13) -Standards-Version: 4.5.0 +Standards-Version: 4.6.2 Homepage: http://jimsun.linxnet.com/postfix_contrib.html Vcs-Git: https://git.sven.stormbind.net/pflogsumm.git Vcs-Browser: https://git.sven.stormbind.net/?p=sven/pflogsumm.git -- 2.39.2 From ff971d41d83692a42c7ca363d67f1b9162f83343 Mon Sep 17 00:00:00 2001 From: Sven Hoexter Date: Wed, 4 Jan 2023 13:15:04 +0100 Subject: [PATCH 16/16] Add Rules-Requires-Root: no in debian/control. --- debian/changelog | 1 + debian/control | 1 + 2 files changed, 2 insertions(+) diff --git a/debian/changelog b/debian/changelog index 8248670..0adc0d8 100644 --- a/debian/changelog +++ b/debian/changelog @@ -5,6 +5,7 @@ pflogsumm (1.1.5-8) UNRELEASED; urgency=medium * Update debian/copyright for 2023. * Increase debhelper compat level from v12 to v13. * Update Standards-Version to 4.6.2, no changes required. + * Add Rules-Requires-Root: no in debian/control. -- Sven Hoexter Wed, 04 Jan 2023 13:08:05 +0100 diff --git a/debian/control b/debian/control index fcf32e1..3d56ce8 100644 --- a/debian/control +++ b/debian/control @@ -4,6 +4,7 @@ Priority: optional Maintainer: Sven Hoexter Build-Depends: debhelper-compat (= 13) Standards-Version: 4.6.2 +Rules-Requires-Root: no Homepage: http://jimsun.linxnet.com/postfix_contrib.html Vcs-Git: https://git.sven.stormbind.net/pflogsumm.git Vcs-Browser: https://git.sven.stormbind.net/?p=sven/pflogsumm.git -- 2.39.2