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 AA79915852A for ; Thu, 22 Aug 2024 21:50:13 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id ECAECE2A6E; Thu, 22 Aug 2024 21:50:12 +0000 (UTC) Received: from smtp.gentoo.org (woodpecker.gentoo.org [IPv6:2001:470:ea4a:1:5054:ff:fec7:86e4]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (4096 bits) server-digest SHA256) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id CF531E2A6E for ; Thu, 22 Aug 2024 21:50:12 +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) server-digest SHA256) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id E1B67335D1C for ; Thu, 22 Aug 2024 21:50:11 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 4B2CD1038 for ; Thu, 22 Aug 2024 21:50:10 +0000 (UTC) From: "William Hubbs" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "William Hubbs" Message-ID: <1724363090.8b92b6315a96341f3bff2a7913d55683fda8b5b6.williamh@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: net-vpn/tailscale/ X-VCS-Repository: repo/gentoo X-VCS-Files: net-vpn/tailscale/tailscale-1.72.0.ebuild X-VCS-Directories: net-vpn/tailscale/ X-VCS-Committer: williamh X-VCS-Committer-Name: William Hubbs X-VCS-Revision: 8b92b6315a96341f3bff2a7913d55683fda8b5b6 X-VCS-Branch: master Date: Thu, 22 Aug 2024 21:50:10 +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: 069ce7c4-ac84-4248-85a9-afbd5f4652ec X-Archives-Hash: 79b2649245bfd0a6107c00289e58c206 commit: 8b92b6315a96341f3bff2a7913d55683fda8b5b6 Author: Ryan Li ryanli org> AuthorDate: Fri Jul 26 20:04:15 2024 +0000 Commit: William Hubbs gentoo org> CommitDate: Thu Aug 22 21:44:50 2024 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=8b92b631 net-vpn/tailscale: Add CONFIG_CHECK="~TUN". Closes: https://github.com/gentoo/gentoo/pull/37738 Signed-off-by: Ryan Li ryanli.org> Signed-off-by: William Hubbs gentoo.org> net-vpn/tailscale/tailscale-1.72.0.ebuild | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/net-vpn/tailscale/tailscale-1.72.0.ebuild b/net-vpn/tailscale/tailscale-1.72.0.ebuild index 9953b94ae170..8e7f0dd0cdf3 100644 --- a/net-vpn/tailscale/tailscale-1.72.0.ebuild +++ b/net-vpn/tailscale/tailscale-1.72.0.ebuild @@ -2,7 +2,7 @@ # Distributed under the terms of the GNU General Public License v2 EAPI=8 -inherit go-module systemd tmpfiles +inherit go-module linux-info systemd tmpfiles # These settings are obtained by running ./build_dist.sh shellvars` in # the upstream repo. @@ -20,6 +20,8 @@ LICENSE="MIT" SLOT="0" KEYWORDS="~amd64 ~arm ~arm64 ~riscv ~x86" +CONFIG_CHECK="~TUN" + RDEPEND="net-firewall/iptables" BDEPEND=">=dev-lang/go-1.22"