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 427FB13835A for ; Sat, 6 Feb 2021 22:34:13 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 657F9E085E; Sat, 6 Feb 2021 22:34:12 +0000 (UTC) Received: from smtp.gentoo.org (smtp.gentoo.org [140.211.166.183]) (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 4BE62E085E for ; Sat, 6 Feb 2021 22:34:12 +0000 (UTC) Received: from oystercatcher.gentoo.org (unknown [IPv6:2a01:4f8:202:4333:225:90ff:fed9:fc84]) (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 C70FA343657 for ; Sat, 6 Feb 2021 22:34:09 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id BCCE64C0 for ; Sat, 6 Feb 2021 22:34:07 +0000 (UTC) From: "Sam James" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Sam James" Message-ID: <1612649650.1dc1e64c80f0cc7011fecdda7f42ae4555a2d6e1.sam@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: net-mail/pfqueue/ X-VCS-Repository: repo/gentoo X-VCS-Files: net-mail/pfqueue/pfqueue-0.5.6-r1.ebuild net-mail/pfqueue/pfqueue-0.5.6.ebuild X-VCS-Directories: net-mail/pfqueue/ X-VCS-Committer: sam X-VCS-Committer-Name: Sam James X-VCS-Revision: 1dc1e64c80f0cc7011fecdda7f42ae4555a2d6e1 X-VCS-Branch: master Date: Sat, 6 Feb 2021 22:34:07 +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: 6facc5a8-2db2-4b02-a06d-7461303e77ba X-Archives-Hash: 53406c652d503d5a4480f572836cdeb3 commit: 1dc1e64c80f0cc7011fecdda7f42ae4555a2d6e1 Author: Sam James gentoo org> AuthorDate: Sat Feb 6 22:14:10 2021 +0000 Commit: Sam James gentoo org> CommitDate: Sat Feb 6 22:14:10 2021 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=1dc1e64c net-mail/pfqueue: EAPI 7 Closes: https://bugs.gentoo.org/675232 Package-Manager: Portage-3.0.14, Repoman-3.0.2 Signed-off-by: Sam James gentoo.org> ...fqueue-0.5.6.ebuild => pfqueue-0.5.6-r1.ebuild} | 27 +++++++++++++--------- 1 file changed, 16 insertions(+), 11 deletions(-) diff --git a/net-mail/pfqueue/pfqueue-0.5.6.ebuild b/net-mail/pfqueue/pfqueue-0.5.6-r1.ebuild similarity index 68% rename from net-mail/pfqueue/pfqueue-0.5.6.ebuild rename to net-mail/pfqueue/pfqueue-0.5.6-r1.ebuild index 4ba93f8746b..ef394d85a72 100644 --- a/net-mail/pfqueue/pfqueue-0.5.6.ebuild +++ b/net-mail/pfqueue/pfqueue-0.5.6-r1.ebuild @@ -1,8 +1,9 @@ -# Copyright 1999-2020 Gentoo Authors +# Copyright 1999-2021 Gentoo Authors # Distributed under the terms of the GNU General Public License v2 -EAPI=5 -inherit autotools eutils ltprune toolchain-funcs +EAPI=7 + +inherit autotools DESCRIPTION="pfqueue is an ncurses console-based tool for managing Postfix queued messages" HOMEPAGE="http://pfqueue.sourceforge.net/" @@ -11,14 +12,19 @@ LICENSE="GPL-2" SLOT="0" KEYWORDS="amd64 ppc x86" -RDEPEND=" - sys-libs/ncurses - sys-devel/libtool -" +BDEPEND="sys-devel/libtool" +RDEPEND="sys-libs/ncurses:=" DEPEND="${RDEPEND}" +DOCS=( README ChangeLog NEWS TODO AUTHORS ) + +PATCHES=( + "${FILESDIR}"/${P}-tinfo.patch +) + src_prepare() { - epatch "${FILESDIR}"/${P}-tinfo.patch + default + eautoreconf } @@ -26,9 +32,8 @@ src_configure() { econf --disable-static } -DOCS=( README ChangeLog NEWS TODO AUTHORS ) - src_install() { default - prune_libtool_files + + find "${ED}" -name '*.la' -delete || die }