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 D02E3138359 for ; Fri, 24 Jul 2020 22:10:45 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id BC2DEE0866; Fri, 24 Jul 2020 22:10:44 +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 A2F0CE0866 for ; Fri, 24 Jul 2020 22:10:44 +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 177A434F117 for ; Fri, 24 Jul 2020 22:10:43 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 384F52EA for ; Fri, 24 Jul 2020 22:10:31 +0000 (UTC) From: "Michael Orlitzky" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Michael Orlitzky" Message-ID: <1595628554.33a9f0ebc9c3f95ee8583cf1163996e7635993cc.mjo@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: net-mail/postfix-logwatch/ X-VCS-Repository: repo/gentoo X-VCS-Files: net-mail/postfix-logwatch/postfix-logwatch-1.40.03-r3.ebuild X-VCS-Directories: net-mail/postfix-logwatch/ X-VCS-Committer: mjo X-VCS-Committer-Name: Michael Orlitzky X-VCS-Revision: 33a9f0ebc9c3f95ee8583cf1163996e7635993cc X-VCS-Branch: master Date: Fri, 24 Jul 2020 22:10:31 +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: a024fcdd-4a0e-47e9-a5de-5344e2cda3c3 X-Archives-Hash: 8728a77d922ccdb4b7637a3498a4fe57 commit: 33a9f0ebc9c3f95ee8583cf1163996e7635993cc Author: Michael Orlitzky gentoo org> AuthorDate: Fri Jul 24 22:09:14 2020 +0000 Commit: Michael Orlitzky gentoo org> CommitDate: Fri Jul 24 22:09:14 2020 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=33a9f0eb net-mail/postfix-logwatch: remove old "unused" version. Package-Manager: Portage-2.3.103, Repoman-2.3.23 Signed-off-by: Michael Orlitzky gentoo.org> .../postfix-logwatch-1.40.03-r3.ebuild | 44 ---------------------- 1 file changed, 44 deletions(-) diff --git a/net-mail/postfix-logwatch/postfix-logwatch-1.40.03-r3.ebuild b/net-mail/postfix-logwatch/postfix-logwatch-1.40.03-r3.ebuild deleted file mode 100644 index 49ed6220090..00000000000 --- a/net-mail/postfix-logwatch/postfix-logwatch-1.40.03-r3.ebuild +++ /dev/null @@ -1,44 +0,0 @@ -# Copyright 1999-2019 Gentoo Authors -# Distributed under the terms of the GNU General Public License v2 - -EAPI=7 - -DESCRIPTION="A log analyzer for postfix" -HOMEPAGE="http://logreporters.sourceforge.net/" -SRC_URI="mirror://sourceforge/logreporters/${P}.tgz" - -LICENSE="MIT" -SLOT="0" -KEYWORDS="amd64 x86" - -RDEPEND="dev-lang/perl" - -PATCHES=( - "${FILESDIR}/unescaped-left-brace.patch" - "${FILESDIR}/redundant-argument-to-sprintf.patch" - "${FILESDIR}/multi-digit-enhanced-status.patch" - "${FILESDIR}/all-server-ports-busy-lines.patch" -) - -src_prepare() { - default - # Replace the default config file location with ours. - local cfg_default='/usr/local/etc/${progname_prefix}-logwatch.conf' - local cfg_gentoo='/etc/${progname_prefix}-logwatch.conf'; - sed -i "s~${cfg_default}~${cfg_gentoo}~" ${PN} \ - || die 'failed to update the default config location' -} - -src_compile() { - # The default make target just outputs instructions. We don't want - # the user to see these, so we avoid the default emake. - : -} - -src_install() { - dodoc Bugs Changes README ${PN}.conf-topn - doman ${PN}.1 - dobin ${PN} - insinto /etc - doins ${PN}.conf -}