Gentoo Archives: gentoo-commits

From: "Jakov Smolić" <jsmolic@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: mail-filter/spampd/
Date: Sat, 06 Nov 2021 20:34:03
Message-Id: 1636230778.cdf7fd47e497c28b3431c219c30114ce7d83c3ed.jsmolic@gentoo
1 commit: cdf7fd47e497c28b3431c219c30114ce7d83c3ed
2 Author: Jakov Smolić <jsmolic <AT> gentoo <DOT> org>
3 AuthorDate: Fri Nov 5 20:48:43 2021 +0000
4 Commit: Jakov Smolić <jsmolic <AT> gentoo <DOT> org>
5 CommitDate: Sat Nov 6 20:32:58 2021 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=cdf7fd47
7
8 mail-filter/spampd: Port to EAPI 8
9
10 Closes: https://bugs.gentoo.org/819468
11 Signed-off-by: Jakov Smolić <jsmolic <AT> gentoo.org>
12
13 mail-filter/spampd/spampd-2.42.ebuild | 14 +++++++-------
14 1 file changed, 7 insertions(+), 7 deletions(-)
15
16 diff --git a/mail-filter/spampd/spampd-2.42.ebuild b/mail-filter/spampd/spampd-2.42.ebuild
17 index 357e8173499..a31d8091448 100644
18 --- a/mail-filter/spampd/spampd-2.42.ebuild
19 +++ b/mail-filter/spampd/spampd-2.42.ebuild
20 @@ -1,25 +1,25 @@
21 -# Copyright 1999-2019 Gentoo Authors
22 +# Copyright 1999-2021 Gentoo Authors
23 # Distributed under the terms of the GNU General Public License v2
24
25 -EAPI=5
26 +EAPI=8
27
28 DESCRIPTION="spampd is a program to scan messages for Unsolicited Commercial E-mail content"
29 HOMEPAGE="http://www.worlddesign.com/index.cfm/rd/mta/spampd.htm"
30 SRC_URI="https://github.com/mpaperno/${PN}/archive/${PV}.tar.gz -> ${P}.tar.gz"
31 +
32 LICENSE="GPL-2"
33 SLOT="0"
34 KEYWORDS="~amd64 ~ppc x86"
35 -IUSE=""
36
37 -RDEPEND="dev-lang/perl
38 +DEPEND="
39 dev-perl/Net-Server
40 mail-filter/spamassassin"
41 -DEPEND="${RDEPEND}"
42 +RDEPEND="${DEPEND}
43 + dev-lang/perl"
44
45 src_install() {
46 dosbin spampd.pl
47 - dodoc changelog.txt misc/spampd-rh-rc-script.sh misc/spampd.service
48 - dohtml spampd.html
49 + dodoc changelog.txt misc/spampd-rh-rc-script.sh misc/spampd.service spampd.html
50 newinitd "${FILESDIR}"/init-r1 spampd
51 newconfd "${FILESDIR}"/conf spampd
52 }