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 F14B0138335 for ; Mon, 8 Apr 2019 14:07:40 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id E70DDE0899; Mon, 8 Apr 2019 14:07:39 +0000 (UTC) Received: from smtp.gentoo.org (smtp.gentoo.org [IPv6:2001:470:ea4a:1:5054:ff:fec7:86e4]) (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 C0CCAE0899 for ; Mon, 8 Apr 2019 14:07:39 +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 2B7E0335D0D for ; Mon, 8 Apr 2019 14:07:38 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 7B23459F for ; Mon, 8 Apr 2019 14:07:36 +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: <1554732424.ca0328ba8c52e02566e879ab7ad9c33483100be5.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-r2.ebuild X-VCS-Directories: net-mail/postfix-logwatch/ X-VCS-Committer: mjo X-VCS-Committer-Name: Michael Orlitzky X-VCS-Revision: ca0328ba8c52e02566e879ab7ad9c33483100be5 X-VCS-Branch: master Date: Mon, 8 Apr 2019 14:07:36 +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: 2b6f0f53-a0db-4ff2-8e47-112819109000 X-Archives-Hash: 1ab70d0a0d5a771811b3a2ea884238e6 commit: ca0328ba8c52e02566e879ab7ad9c33483100be5 Author: Michael Orlitzky gentoo org> AuthorDate: Mon Apr 8 14:06:02 2019 +0000 Commit: Michael Orlitzky gentoo org> CommitDate: Mon Apr 8 14:07:04 2019 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=ca0328ba net-mail/postfix-logwatch: remove "unused" -r2 ebuild. Signed-off-by: Michael Orlitzky gentoo.org> Package-Manager: Portage-2.3.62, Repoman-2.3.11 .../postfix-logwatch-1.40.03-r2.ebuild | 43 ---------------------- 1 file changed, 43 deletions(-) diff --git a/net-mail/postfix-logwatch/postfix-logwatch-1.40.03-r2.ebuild b/net-mail/postfix-logwatch/postfix-logwatch-1.40.03-r2.ebuild deleted file mode 100644 index f1ae6f1bf1c..00000000000 --- a/net-mail/postfix-logwatch/postfix-logwatch-1.40.03-r2.ebuild +++ /dev/null @@ -1,43 +0,0 @@ -# Copyright 1999-2017 Gentoo Foundation -# Distributed under the terms of the GNU General Public License v2 - -EAPI=6 - -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" -) - -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 -}