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 4E99B158041 for ; Wed, 28 Feb 2024 21:58:04 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 72C3EE2A0E; Wed, 28 Feb 2024 21:58:03 +0000 (UTC) Received: from smtp.gentoo.org (mail.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 57BE5E2A0E for ; Wed, 28 Feb 2024 21:58:03 +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)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id 8B8DE343016 for ; Wed, 28 Feb 2024 21:58:02 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id D2B3AD96 for ; Wed, 28 Feb 2024 21:58:00 +0000 (UTC) From: "Craig Andrews" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Craig Andrews" Message-ID: <1709157477.bfc6b932596c006c32ea1f47925cd657037e001c.candrews@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: net-analyzer/netdata/ X-VCS-Repository: repo/gentoo X-VCS-Files: net-analyzer/netdata/netdata-9999.ebuild X-VCS-Directories: net-analyzer/netdata/ X-VCS-Committer: candrews X-VCS-Committer-Name: Craig Andrews X-VCS-Revision: bfc6b932596c006c32ea1f47925cd657037e001c X-VCS-Branch: master Date: Wed, 28 Feb 2024 21:58:00 +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: 84727412-24e9-42a6-a6e1-b4aad2e096d9 X-Archives-Hash: e4104bdaf2dc1d3f0e1806e9ed1a0ce0 commit: bfc6b932596c006c32ea1f47925cd657037e001c Author: Craig Andrews gentoo org> AuthorDate: Wed Feb 28 21:56:11 2024 +0000 Commit: Craig Andrews gentoo org> CommitDate: Wed Feb 28 21:57:57 2024 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=bfc6b932 net-analyzer/netdata: disable go plugin Netdata integrated the go plugin with the main netdata build system, but this ebuild doesn't get handle that. Until the ebuild is updated to support building the go plugin, disable it. See: https://github.com/netdata/netdata/commit/4b7d920b44302adcc7c733bcea3bc5cf8fc3c63f Signed-off-by: Craig Andrews gentoo.org> net-analyzer/netdata/netdata-9999.ebuild | 1 + 1 file changed, 1 insertion(+) diff --git a/net-analyzer/netdata/netdata-9999.ebuild b/net-analyzer/netdata/netdata-9999.ebuild index e6d230c74a3e..56ca10202a2c 100644 --- a/net-analyzer/netdata/netdata-9999.ebuild +++ b/net-analyzer/netdata/netdata-9999.ebuild @@ -107,6 +107,7 @@ src_configure() { -DENABLE_EXPORTER_PROMETHEUS_REMOTE_WRITE=$(usex prometheus) -DENABLE_PLUGIN_XENSTAT=$(usex xen) -DENABLE_PLUGIN_EBPF=$(usex bpf) + -DENABLE_PLUGIN_GO=FALSE ) cmake_src_configure }