From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from lists.gentoo.org (pigeon.gentoo.org [208.92.234.80]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by finch.gentoo.org (Postfix) with ESMTPS id 5160513835C for ; Mon, 21 Dec 2020 18:15:12 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 77FEAE09A1; Mon, 21 Dec 2020 18:15:11 +0000 (UTC) Received: from smtp.gentoo.org (smtp.gentoo.org [140.211.166.183]) (using TLSv1.2 with cipher ECDHE-RSA-AES128-GCM-SHA256 (128/128 bits)) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id 60134E09A1 for ; Mon, 21 Dec 2020 18:15:11 +0000 (UTC) Received: from oystercatcher.gentoo.org (oystercatcher.gentoo.org [148.251.78.52]) (using TLSv1.2 with cipher ECDHE-RSA-AES128-GCM-SHA256 (128/128 bits)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id 63612340F21 for ; Mon, 21 Dec 2020 18:15:10 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 008233B7 for ; Mon, 21 Dec 2020 18:15:09 +0000 (UTC) From: "Sam James" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Sam James" Message-ID: <1608574503.bb0c9e1db42d06a65aaf639020f4632ca7d1d01c.sam@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: mail-filter/postgrey/files/ X-VCS-Repository: repo/gentoo X-VCS-Files: mail-filter/postgrey/files/postgrey-1.34-perl-5.18.patch X-VCS-Directories: mail-filter/postgrey/files/ X-VCS-Committer: sam X-VCS-Committer-Name: Sam James X-VCS-Revision: bb0c9e1db42d06a65aaf639020f4632ca7d1d01c X-VCS-Branch: master Date: Mon, 21 Dec 2020 18:15:09 +0000 (UTC) Precedence: bulk List-Post: List-Help: List-Unsubscribe: List-Subscribe: List-Id: Gentoo Linux mail X-BeenThere: gentoo-commits@lists.gentoo.org X-Auto-Response-Suppress: DR, RN, NRN, OOF, AutoReply X-Archives-Salt: dca7afdf-0326-4f3e-a1ce-e9bfff1d4fbd X-Archives-Hash: a853496c5ec19be170e83e29bac64b35 commit: bb0c9e1db42d06a65aaf639020f4632ca7d1d01c Author: Michael Mair-Keimberger gmail com> AuthorDate: Mon Dec 21 16:04:54 2020 +0000 Commit: Sam James gentoo org> CommitDate: Mon Dec 21 18:15:03 2020 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=bb0c9e1d mail-filter/postgrey: remove unused patch Package-Manager: Portage-3.0.12, Repoman-3.0.2 Signed-off-by: Michael Mair-Keimberger gmail.com> Signed-off-by: Sam James gentoo.org> .../postgrey/files/postgrey-1.34-perl-5.18.patch | 33 ---------------------- 1 file changed, 33 deletions(-) diff --git a/mail-filter/postgrey/files/postgrey-1.34-perl-5.18.patch b/mail-filter/postgrey/files/postgrey-1.34-perl-5.18.patch deleted file mode 100644 index 615c6e5b77d..00000000000 --- a/mail-filter/postgrey/files/postgrey-1.34-perl-5.18.patch +++ /dev/null @@ -1,33 +0,0 @@ -From 9673b54064691a5b9c295ffea340d8a1f9ee1cb8 Mon Sep 17 00:00:00 2001 -From: Yasuhiro KIMURA -Date: Sat, 17 Aug 2013 22:05:27 +0900 -Subject: [PATCH] Make postgrey work with Perl 5.18 - ---- - postgrey | 10 ++++++++++ - 1 file changed, 10 insertions(+) - -diff --git a/postgrey b/postgrey -index 7cb0352..37f69bd 100755 ---- a/postgrey -+++ b/postgrey -@@ -557,6 +557,16 @@ sub main() - if($opt{dbdir}) { - $opt{dbdir} =~ /^(.*)$/; $opt{dbdir} = $1; - } -+ # untaint what is given on --pidfile. It is not security sensitive since -+ # it is provided by the admin -+ if($opt{pidfile}) { -+ $opt{pidfile} =~ /^(.*)$/; $opt{pidfile} = $1; -+ } -+ # untaint what is given on --inet. It is not security sensitive since -+ # it is provided by the admin -+ if($opt{inet}) { -+ $opt{inet} =~ /^(.*)$/; $opt{inet} = $1; -+ } - - # determine proper "logsock" for Sys::Syslog - my $syslog_logsock; --- -2.0.3 -