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.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (2048 bits)) (No client certificate requested) by finch.gentoo.org (Postfix) with ESMTPS id B98DD158086 for ; Sat, 6 Nov 2021 20:34:03 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 087432BC078; Sat, 6 Nov 2021 20:34:03 +0000 (UTC) Received: from smtp.gentoo.org (woodpecker.gentoo.org [140.211.166.183]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (4096 bits)) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id E47482BC078 for ; Sat, 6 Nov 2021 20:34:02 +0000 (UTC) Received: from oystercatcher.gentoo.org (oystercatcher.gentoo.org [148.251.78.52]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (4096 bits)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id C315F342E73 for ; Sat, 6 Nov 2021 20:33:59 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 75E2F1BF for ; Sat, 6 Nov 2021 20:33:55 +0000 (UTC) From: "Jakov Smolić" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Jakov Smolić" Message-ID: <1636230778.cdf7fd47e497c28b3431c219c30114ce7d83c3ed.jsmolic@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: mail-filter/spampd/ X-VCS-Repository: repo/gentoo X-VCS-Files: mail-filter/spampd/spampd-2.42.ebuild X-VCS-Directories: mail-filter/spampd/ X-VCS-Committer: jsmolic X-VCS-Committer-Name: Jakov Smolić X-VCS-Revision: cdf7fd47e497c28b3431c219c30114ce7d83c3ed X-VCS-Branch: master Date: Sat, 6 Nov 2021 20:33:55 +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: 281c9b73-2f1e-439f-8d0f-ae8fe23dfedf X-Archives-Hash: 660f7f8d1ce4ae696fd9ade43d927228 commit: cdf7fd47e497c28b3431c219c30114ce7d83c3ed Author: Jakov Smolić gentoo org> AuthorDate: Fri Nov 5 20:48:43 2021 +0000 Commit: Jakov Smolić gentoo org> CommitDate: Sat Nov 6 20:32:58 2021 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=cdf7fd47 mail-filter/spampd: Port to EAPI 8 Closes: https://bugs.gentoo.org/819468 Signed-off-by: Jakov Smolić gentoo.org> mail-filter/spampd/spampd-2.42.ebuild | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) diff --git a/mail-filter/spampd/spampd-2.42.ebuild b/mail-filter/spampd/spampd-2.42.ebuild index 357e8173499..a31d8091448 100644 --- a/mail-filter/spampd/spampd-2.42.ebuild +++ b/mail-filter/spampd/spampd-2.42.ebuild @@ -1,25 +1,25 @@ -# Copyright 1999-2019 Gentoo Authors +# Copyright 1999-2021 Gentoo Authors # Distributed under the terms of the GNU General Public License v2 -EAPI=5 +EAPI=8 DESCRIPTION="spampd is a program to scan messages for Unsolicited Commercial E-mail content" HOMEPAGE="http://www.worlddesign.com/index.cfm/rd/mta/spampd.htm" SRC_URI="https://github.com/mpaperno/${PN}/archive/${PV}.tar.gz -> ${P}.tar.gz" + LICENSE="GPL-2" SLOT="0" KEYWORDS="~amd64 ~ppc x86" -IUSE="" -RDEPEND="dev-lang/perl +DEPEND=" dev-perl/Net-Server mail-filter/spamassassin" -DEPEND="${RDEPEND}" +RDEPEND="${DEPEND} + dev-lang/perl" src_install() { dosbin spampd.pl - dodoc changelog.txt misc/spampd-rh-rc-script.sh misc/spampd.service - dohtml spampd.html + dodoc changelog.txt misc/spampd-rh-rc-script.sh misc/spampd.service spampd.html newinitd "${FILESDIR}"/init-r1 spampd newconfd "${FILESDIR}"/conf spampd }