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 381951382C5 for ; Tue, 5 Jan 2021 18:19:02 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 6E147E0207; Tue, 5 Jan 2021 18:19:01 +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 526CBE0207 for ; Tue, 5 Jan 2021 18:19:01 +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 2F02B3410EF for ; Tue, 5 Jan 2021 18:19:00 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id DDFCD487 for ; Tue, 5 Jan 2021 18:18:58 +0000 (UTC) From: "Patrick McLean" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Patrick McLean" Message-ID: <1609870728.ebadcfe13e438215335c44913b254aaadf74e267.chutzpah@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: net-firewall/nftables/ X-VCS-Repository: repo/gentoo X-VCS-Files: net-firewall/nftables/nftables-9999.ebuild X-VCS-Directories: net-firewall/nftables/ X-VCS-Committer: chutzpah X-VCS-Committer-Name: Patrick McLean X-VCS-Revision: ebadcfe13e438215335c44913b254aaadf74e267 X-VCS-Branch: master Date: Tue, 5 Jan 2021 18:18:58 +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: 658fc79d-2d2e-4107-876a-1304b49295b2 X-Archives-Hash: 428ea8e4b7823e6f45ff5e1a81b1505b commit: ebadcfe13e438215335c44913b254aaadf74e267 Author: Patrick McLean gentoo org> AuthorDate: Tue Jan 5 18:18:21 2021 +0000 Commit: Patrick McLean gentoo org> CommitDate: Tue Jan 5 18:18:48 2021 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=ebadcfe1 net-firewall/nftables-9999: Add libedit USE flag, update libnftnl dep Package-Manager: Portage-3.0.12, Repoman-3.0.2 Signed-off-by: Patrick McLean gentoo.org> net-firewall/nftables/nftables-9999.ebuild | 10 ++++++---- 1 file changed, 6 insertions(+), 4 deletions(-) diff --git a/net-firewall/nftables/nftables-9999.ebuild b/net-firewall/nftables/nftables-9999.ebuild index 1cc0dea3eb8..c82ada83f01 100644 --- a/net-firewall/nftables/nftables-9999.ebuild +++ b/net-firewall/nftables/nftables-9999.ebuild @@ -1,4 +1,4 @@ -# Copyright 1999-2020 Gentoo Authors +# Copyright 1999-2021 Gentoo Authors # Distributed under the terms of the GNU General Public License v2 EAPI=7 @@ -25,13 +25,13 @@ fi LICENSE="GPL-2" SLOT="0/1" -IUSE="debug doc +gmp json +modern-kernel python +readline static-libs xtables" +IUSE="debug doc +gmp json libedit +modern-kernel python +readline static-libs xtables" RDEPEND=" >=net-libs/libmnl-1.0.4:0= - >=net-libs/libnftnl-1.1.8:0= + >=net-libs/libnftnl-1.1.9:0= gmp? ( dev-libs/gmp:0= ) - json? ( dev-libs/jansson ) + json? ( dev-libs/jansson:= ) python? ( ${PYTHON_DEPS} ) readline? ( sys-libs/readline:0= ) xtables? ( >=net-firewall/iptables-1.6.1 ) @@ -49,6 +49,7 @@ BDEPEND+=" REQUIRED_USE=" python? ( ${PYTHON_REQUIRED_USE} ) + libedit? ( !readline ) " python_make() { @@ -93,6 +94,7 @@ src_configure() { $(use_enable doc man-doc) $(use_with !gmp mini_gmp) $(use_with json) + $(use_with libedit cli editline) $(use_with readline cli readline) $(use_enable static-libs static) $(use_with xtables)