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/amavis-logwatch/
Date: Mon, 08 Apr 2019 14:07:42
Message-Id: 1554732416.4ecb24c9a9a296762c31492819816d24964cb6b1.mjo@gentoo
1 commit: 4ecb24c9a9a296762c31492819816d24964cb6b1
2 Author: Michael Orlitzky <mjo <AT> gentoo <DOT> org>
3 AuthorDate: Mon Apr 8 14:03:41 2019 +0000
4 Commit: Michael Orlitzky <mjo <AT> gentoo <DOT> org>
5 CommitDate: Mon Apr 8 14:06:56 2019 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=4ecb24c9
7
8 net-mail/amavis-logwatch: remove "unused" -r3 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 .../amavis-logwatch-1.51.03-r3.ebuild | 46 ----------------------
14 1 file changed, 46 deletions(-)
15
16 diff --git a/net-mail/amavis-logwatch/amavis-logwatch-1.51.03-r3.ebuild b/net-mail/amavis-logwatch/amavis-logwatch-1.51.03-r3.ebuild
17 deleted file mode 100644
18 index 79d11a94ef7..00000000000
19 --- a/net-mail/amavis-logwatch/amavis-logwatch-1.51.03-r3.ebuild
20 +++ /dev/null
21 @@ -1,46 +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 amavisd-new"
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}/ignore-amavis-startup-notifications.patch"
41 - "${FILESDIR}/ignore-utf8smtp-lines.patch"
42 - "${FILESDIR}/unchecked-encrypted.patch"
43 - "${FILESDIR}/file-libmagic-errors.patch"
44 -)
45 -
46 -src_prepare() {
47 - default
48 - # Replace the default config file location with ours.
49 - local cfg_default='/usr/local/etc/${progname_prefix}-logwatch.conf'
50 - local cfg_gentoo='/etc/${progname_prefix}-logwatch.conf';
51 - sed -i "s~${cfg_default}~${cfg_gentoo}~" ${PN} \
52 - || die 'failed to update the default config location'
53 -}
54 -
55 -src_compile() {
56 - # The default make target just outputs instructions. We don't want
57 - # the user to see these, so we avoid the default emake.
58 - :
59 -}
60 -
61 -src_install() {
62 - dodoc Bugs Changes README
63 - doman ${PN}.1
64 - dobin ${PN}
65 - insinto /etc
66 - doins ${PN}.conf
67 -}