From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: <gentoo-commits+bounces-1263506-garchives=archives.gentoo.org@lists.gentoo.org> 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 2E2441382C5 for <garchives@archives.gentoo.org>; Tue, 23 Mar 2021 04:53:29 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 45120E0870; Tue, 23 Mar 2021 04:53:28 +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 2F2F0E0870 for <gentoo-commits@lists.gentoo.org>; Tue, 23 Mar 2021 04:53:28 +0000 (UTC) Received: from oystercatcher.gentoo.org (unknown [IPv6:2a01:4f8:202:4333:225:90ff:fed9:fc84]) (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 54B593408A6 for <gentoo-commits@lists.gentoo.org>; Tue, 23 Mar 2021 04:53:27 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 7A80D63C for <gentoo-commits@lists.gentoo.org>; Tue, 23 Mar 2021 04:53:23 +0000 (UTC) From: "Sam James" <sam@gentoo.org> 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" <sam@gentoo.org> Message-ID: <1616474931.95a8d2b44e18869e155778ed1fd519ea2817ac78.sam@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: mail-filter/postgrey/ X-VCS-Repository: repo/gentoo X-VCS-Files: mail-filter/postgrey/postgrey-1.37_p20190625-r1.ebuild X-VCS-Directories: mail-filter/postgrey/ X-VCS-Committer: sam X-VCS-Committer-Name: Sam James X-VCS-Revision: 95a8d2b44e18869e155778ed1fd519ea2817ac78 X-VCS-Branch: master Date: Tue, 23 Mar 2021 04:53:23 +0000 (UTC) Precedence: bulk List-Post: <mailto:gentoo-commits@lists.gentoo.org> List-Help: <mailto:gentoo-commits+help@lists.gentoo.org> List-Unsubscribe: <mailto:gentoo-commits+unsubscribe@lists.gentoo.org> List-Subscribe: <mailto:gentoo-commits+subscribe@lists.gentoo.org> List-Id: Gentoo Linux mail <gentoo-commits.gentoo.org> X-BeenThere: gentoo-commits@lists.gentoo.org X-Auto-Response-Suppress: DR, RN, NRN, OOF, AutoReply X-Archives-Salt: 9be3a427-d525-4ae8-bff6-e74fd9d1291e X-Archives-Hash: 7825beb7e9da56d3abd50838d30c2da9 commit: 95a8d2b44e18869e155778ed1fd519ea2817ac78 Author: Sam James <sam <AT> gentoo <DOT> org> AuthorDate: Mon Mar 22 22:48:54 2021 +0000 Commit: Sam James <sam <AT> gentoo <DOT> org> CommitDate: Tue Mar 23 04:48:51 2021 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=95a8d2b4 mail-filter/postgrey: tiny cosmetic changes Signed-off-by: Sam James <sam <AT> gentoo.org> mail-filter/postgrey/postgrey-1.37_p20190625-r1.ebuild | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/mail-filter/postgrey/postgrey-1.37_p20190625-r1.ebuild b/mail-filter/postgrey/postgrey-1.37_p20190625-r1.ebuild index 6caabd8454a..68f9cb0299a 100644 --- a/mail-filter/postgrey/postgrey-1.37_p20190625-r1.ebuild +++ b/mail-filter/postgrey/postgrey-1.37_p20190625-r1.ebuild @@ -19,6 +19,7 @@ DEPEND=" acct-group/postgrey acct-user/postgrey " +# TODO: Use db.eclass? RDEPEND=" ${DEPEND} >=dev-lang/perl-5.6.0 @@ -35,7 +36,8 @@ RDEPEND=" src_prepare() { default - # bug 479400 + + # bug #479400 sed -i 's@#!/usr/bin/perl -T -w@#!/usr/bin/perl -w@' postgrey || die "sed failed" sed -i -e '/git/d' Makefile || die } @@ -66,7 +68,9 @@ src_install() { # init.d + conf.d files insopts -o root -g root -m 755 newinitd "${FILESDIR}"/${PN}-1.34-r3.rc.new ${PN} + insopts -o root -g root -m 640 newconfd "${FILESDIR}"/${PN}.conf.new ${PN} + systemd_dounit "${FILESDIR}"/postgrey.service }