Gentoo Archives: gentoo-commits

From: Michael Orlitzky <mjo@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: net-mail/postfix-logwatch/
Date: Mon, 08 Apr 2019 14:07:40
Message-Id: 1554732424.ca0328ba8c52e02566e879ab7ad9c33483100be5.mjo@gentoo
1 commit: ca0328ba8c52e02566e879ab7ad9c33483100be5
2 Author: Michael Orlitzky <mjo <AT> gentoo <DOT> org>
3 AuthorDate: Mon Apr 8 14:06:02 2019 +0000
4 Commit: Michael Orlitzky <mjo <AT> gentoo <DOT> org>
5 CommitDate: Mon Apr 8 14:07:04 2019 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=ca0328ba
7
8 net-mail/postfix-logwatch: remove "unused" -r2 ebuild.
9
10 Signed-off-by: Michael Orlitzky <mjo <AT> gentoo.org>
11 Package-Manager: Portage-2.3.62, Repoman-2.3.11
12
13 .../postfix-logwatch-1.40.03-r2.ebuild | 43 ----------------------
14 1 file changed, 43 deletions(-)
15
16 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
17 deleted file mode 100644
18 index f1ae6f1bf1c..00000000000
19 --- a/net-mail/postfix-logwatch/postfix-logwatch-1.40.03-r2.ebuild
20 +++ /dev/null
21 @@ -1,43 +0,0 @@
22 -# Copyright 1999-2017 Gentoo Foundation
23 -# Distributed under the terms of the GNU General Public License v2
24 -
25 -EAPI=6
26 -
27 -DESCRIPTION="A log analyzer for postfix"
28 -HOMEPAGE="http://logreporters.sourceforge.net/"
29 -SRC_URI="mirror://sourceforge/logreporters/${P}.tgz"
30 -
31 -LICENSE="MIT"
32 -SLOT="0"
33 -KEYWORDS="amd64 x86"
34 -
35 -RDEPEND="dev-lang/perl"
36 -
37 -PATCHES=(
38 - "${FILESDIR}/unescaped-left-brace.patch"
39 - "${FILESDIR}/redundant-argument-to-sprintf.patch"
40 - "${FILESDIR}/multi-digit-enhanced-status.patch"
41 -)
42 -
43 -src_prepare() {
44 - default
45 - # Replace the default config file location with ours.
46 - local cfg_default='/usr/local/etc/${progname_prefix}-logwatch.conf'
47 - local cfg_gentoo='/etc/${progname_prefix}-logwatch.conf';
48 - sed -i "s~${cfg_default}~${cfg_gentoo}~" ${PN} \
49 - || die 'failed to update the default config location'
50 -}
51 -
52 -src_compile() {
53 - # The default make target just outputs instructions. We don't want
54 - # the user to see these, so we avoid the default emake.
55 - :
56 -}
57 -
58 -src_install() {
59 - dodoc Bugs Changes README ${PN}.conf-topn
60 - doman ${PN}.1
61 - dobin ${PN}
62 - insinto /etc
63 - doins ${PN}.conf
64 -}