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 22B5E1580B2 for ; Thu, 2 Sep 2021 10:45:24 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 7CC16E0866; Thu, 2 Sep 2021 10:45:23 +0000 (UTC) Received: from smtp.gentoo.org (mail.gentoo.org [IPv6:2001:470:ea4a:1:5054:ff:fec7:86e4]) (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 68EECE0866 for ; Thu, 2 Sep 2021 10:45:23 +0000 (UTC) Received: from oystercatcher.gentoo.org (oystercatcher.gentoo.org [148.251.78.52]) (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 920F0335D61 for ; Thu, 2 Sep 2021 10:45:22 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id D4B5595 for ; Thu, 2 Sep 2021 10:45:20 +0000 (UTC) From: "Marc Schiffbauer" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Marc Schiffbauer" Message-ID: <1630579500.12bd62a0066c71a35b4ee35b064a6f79270839ac.mschiff@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: net-dns/unbound/ X-VCS-Repository: repo/gentoo X-VCS-Files: net-dns/unbound/metadata.xml net-dns/unbound/unbound-1.13.2.ebuild X-VCS-Directories: net-dns/unbound/ X-VCS-Committer: mschiff X-VCS-Committer-Name: Marc Schiffbauer X-VCS-Revision: 12bd62a0066c71a35b4ee35b064a6f79270839ac X-VCS-Branch: master Date: Thu, 2 Sep 2021 10:45:20 +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: d807776f-1678-4e06-b73b-eef2b27ea501 X-Archives-Hash: 4591531c83486a5f3ed452465d0ce7df commit: 12bd62a0066c71a35b4ee35b064a6f79270839ac Author: Marc Schiffbauer gentoo org> AuthorDate: Thu Sep 2 10:41:17 2021 +0000 Commit: Marc Schiffbauer gentoo org> CommitDate: Thu Sep 2 10:45:00 2021 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=12bd62a0 net-dns/unbound: add tfo USE flag Package-Manager: Portage-3.0.20, Repoman-3.0.3 Signed-off-by: Marc Schiffbauer gentoo.org> net-dns/unbound/metadata.xml | 3 ++- net-dns/unbound/unbound-1.13.2.ebuild | 6 +++--- 2 files changed, 5 insertions(+), 4 deletions(-) diff --git a/net-dns/unbound/metadata.xml b/net-dns/unbound/metadata.xml index b125fb7df61..844b7d8ad1d 100644 --- a/net-dns/unbound/metadata.xml +++ b/net-dns/unbound/metadata.xml @@ -30,7 +30,8 @@ Enable EDNS client subnet support Enable GOST support Enable HTTP/2 support for DoHnet-libs/nghttp2 - Enable cache db backend which uses dev-libs/hiredis + Enable cache db backend which usesdev-libs/hiredis + Enable TCP Fast Open client+server NLnetLabs/unbound diff --git a/net-dns/unbound/unbound-1.13.2.ebuild b/net-dns/unbound/unbound-1.13.2.ebuild index 83b74f7345d..4e61650bf38 100644 --- a/net-dns/unbound/unbound-1.13.2.ebuild +++ b/net-dns/unbound/unbound-1.13.2.ebuild @@ -14,7 +14,7 @@ SRC_URI="https://nlnetlabs.nl/downloads/unbound/${MY_P}.tar.gz" LICENSE="BSD GPL-2" SLOT="0/8" # ABI version of libunbound.so KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~mips ~ppc ~ppc64 ~x86" -IUSE="debug dnscrypt dnstap +ecdsa ecs gost +http2 python redis selinux static-libs systemd test threads" +IUSE="debug dnscrypt dnstap +ecdsa ecs gost +http2 python redis selinux static-libs systemd test +tfo threads" REQUIRED_USE="python? ( ${PYTHON_REQUIRED_USE} )" RESTRICT="!test? ( test )" @@ -100,12 +100,12 @@ multilib_src_configure() { $(multilib_native_use_with python pyunbound) \ $(use_with threads pthreads) \ $(use_with http2 libnghttp2) \ + $(use_enable tfo tfo-client) \ + $(use_enable tfo tfo-server) \ --disable-flto \ --disable-rpath \ --enable-event-api \ --enable-ipsecmod \ - --enable-tfo-client \ - --enable-tfo-server \ --with-libevent="${EPREFIX}"/usr \ $(multilib_native_usex redis --with-libhiredis="${EPREFIX}/usr" --without-libhiredis) \ --with-pidfile="${EPREFIX}"/run/unbound.pid \