Date: Thu, 21 Jun 2018 21:50:43 +0000 (UTC) From: Danilo Egea Gondolfo <danilo@FreeBSD.org> To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r473005 - in head/mail/postfix-logwatch: . files Message-ID: <201806212150.w5LLohl1072965@repo.freebsd.org>
next in thread | raw e-mail | index | archive | help
Author: danilo Date: Thu Jun 21 21:50:43 2018 New Revision: 473005 URL: https://svnweb.freebsd.org/changeset/ports/473005 Log: - Fix regex handling with the new perl version [1] [1] Unescaped left brace in regex is deprecated, passed through in regex PR: 227895 Submitted by: zeising Pull Request: Added: head/mail/postfix-logwatch/files/ head/mail/postfix-logwatch/files/patch-postfix-logwatch (contents, props changed) Modified: head/mail/postfix-logwatch/Makefile Modified: head/mail/postfix-logwatch/Makefile ============================================================================== --- head/mail/postfix-logwatch/Makefile Thu Jun 21 21:29:38 2018 (r473004) +++ head/mail/postfix-logwatch/Makefile Thu Jun 21 21:50:43 2018 (r473005) @@ -3,6 +3,7 @@ PORTNAME= postfix-logwatch PORTVERSION= 1.40.03 +PORTREVISION= 1 CATEGORIES= mail MASTER_SITES= SF/logreporters/${PORTNAME}/release/${PORTVERSION} Added: head/mail/postfix-logwatch/files/patch-postfix-logwatch ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/mail/postfix-logwatch/files/patch-postfix-logwatch Thu Jun 21 21:50:43 2018 (r473005) @@ -0,0 +1,22 @@ +--- postfix-logwatch.orig 2018-05-01 12:00:39 UTC ++++ postfix-logwatch +@@ -1377,6 +1377,10 @@ sub print_summary_report (\@) { + sprintf "$fmt %-42s %6.2f%%\n", $total, $desc, + $$divisor == $Totals{$keyname} ? 100.00 : $Totals{$keyname} * 100 / $$divisor; + } ++ elsif ($extra eq '') { ++ push @{$lines[$cur_level]}, ++ sprintf "$fmt %-23s\n", $total, $desc; ++ } + else { + push @{$lines[$cur_level]}, + sprintf "$fmt %-23s $extra\n", $total, $desc, commify ($Totals{$keyname}); +@@ -1847,7 +1851,7 @@ sub postfix_policy_spf($) { + # KeyboardInterrupt + $line =~ /^Read line: "/ or + $line =~ /^Found the end of entry$/ or +- $line =~ /^Config: {/ or ++ $line =~ /^Config: \{/ or + $line =~ /^spfcheck: pyspf result/ or + $line =~ /^Starting$/ or + $line =~ /^Normal exit$/ or
Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?201806212150.w5LLohl1072965>