Gentoo Archives: gentoo-commits

From: Sam James <sam@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: net-mail/pfqueue/
Date: Sat, 06 Feb 2021 22:34:13
Message-Id: 1612649650.1dc1e64c80f0cc7011fecdda7f42ae4555a2d6e1.sam@gentoo
1 commit: 1dc1e64c80f0cc7011fecdda7f42ae4555a2d6e1
2 Author: Sam James <sam <AT> gentoo <DOT> org>
3 AuthorDate: Sat Feb 6 22:14:10 2021 +0000
4 Commit: Sam James <sam <AT> gentoo <DOT> org>
5 CommitDate: Sat Feb 6 22:14:10 2021 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=1dc1e64c
7
8 net-mail/pfqueue: EAPI 7
9
10 Closes: https://bugs.gentoo.org/675232
11 Package-Manager: Portage-3.0.14, Repoman-3.0.2
12 Signed-off-by: Sam James <sam <AT> gentoo.org>
13
14 ...fqueue-0.5.6.ebuild => pfqueue-0.5.6-r1.ebuild} | 27 +++++++++++++---------
15 1 file changed, 16 insertions(+), 11 deletions(-)
16
17 diff --git a/net-mail/pfqueue/pfqueue-0.5.6.ebuild b/net-mail/pfqueue/pfqueue-0.5.6-r1.ebuild
18 similarity index 68%
19 rename from net-mail/pfqueue/pfqueue-0.5.6.ebuild
20 rename to net-mail/pfqueue/pfqueue-0.5.6-r1.ebuild
21 index 4ba93f8746b..ef394d85a72 100644
22 --- a/net-mail/pfqueue/pfqueue-0.5.6.ebuild
23 +++ b/net-mail/pfqueue/pfqueue-0.5.6-r1.ebuild
24 @@ -1,8 +1,9 @@
25 -# Copyright 1999-2020 Gentoo Authors
26 +# Copyright 1999-2021 Gentoo Authors
27 # Distributed under the terms of the GNU General Public License v2
28
29 -EAPI=5
30 -inherit autotools eutils ltprune toolchain-funcs
31 +EAPI=7
32 +
33 +inherit autotools
34
35 DESCRIPTION="pfqueue is an ncurses console-based tool for managing Postfix queued messages"
36 HOMEPAGE="http://pfqueue.sourceforge.net/"
37 @@ -11,14 +12,19 @@ LICENSE="GPL-2"
38 SLOT="0"
39 KEYWORDS="amd64 ppc x86"
40
41 -RDEPEND="
42 - sys-libs/ncurses
43 - sys-devel/libtool
44 -"
45 +BDEPEND="sys-devel/libtool"
46 +RDEPEND="sys-libs/ncurses:="
47 DEPEND="${RDEPEND}"
48
49 +DOCS=( README ChangeLog NEWS TODO AUTHORS )
50 +
51 +PATCHES=(
52 + "${FILESDIR}"/${P}-tinfo.patch
53 +)
54 +
55 src_prepare() {
56 - epatch "${FILESDIR}"/${P}-tinfo.patch
57 + default
58 +
59 eautoreconf
60 }
61
62 @@ -26,9 +32,8 @@ src_configure() {
63 econf --disable-static
64 }
65
66 -DOCS=( README ChangeLog NEWS TODO AUTHORS )
67 -
68 src_install() {
69 default
70 - prune_libtool_files
71 +
72 + find "${ED}" -name '*.la' -delete || die
73 }