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 679D6158041 for ; Sun, 24 Mar 2024 08:29:08 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 4DD63E2A1E; Sun, 24 Mar 2024 08:29:07 +0000 (UTC) Received: from smtp.gentoo.org (woodpecker.gentoo.org [140.211.166.183]) (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 2D6B2E2A1E for ; Sun, 24 Mar 2024 08:29:07 +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 2B1DC341B52 for ; Sun, 24 Mar 2024 08:29:06 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 8BC92B91 for ; Sun, 24 Mar 2024 08:29:04 +0000 (UTC) From: "Patrick Lauer" 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 Lauer" Message-ID: <1711268943.c26039d783061d7f8344835ec5b43c07672c6df4.patrick@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: net-analyzer/netdata/ X-VCS-Repository: repo/gentoo X-VCS-Files: net-analyzer/netdata/netdata-1.45.0.ebuild X-VCS-Directories: net-analyzer/netdata/ X-VCS-Committer: patrick X-VCS-Committer-Name: Patrick Lauer X-VCS-Revision: c26039d783061d7f8344835ec5b43c07672c6df4 X-VCS-Branch: master Date: Sun, 24 Mar 2024 08:29:04 +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: ac0303d0-a0f6-42b7-a47f-ce004c5dc019 X-Archives-Hash: 366ba29b465a05bf9b43ea5876cdf0a8 commit: c26039d783061d7f8344835ec5b43c07672c6df4 Author: Patrick Lauer gentoo org> AuthorDate: Sun Mar 24 08:27:44 2024 +0000 Commit: Patrick Lauer gentoo org> CommitDate: Sun Mar 24 08:29:03 2024 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=c26039d7 net-analyzer/netdata: Fix implicit systemd dependency Otherwise fails to build if systemd/journald not present Signed-off-by: Patrick Lauer gentoo.org> net-analyzer/netdata/netdata-1.45.0.ebuild | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/net-analyzer/netdata/netdata-1.45.0.ebuild b/net-analyzer/netdata/netdata-1.45.0.ebuild index 56ca10202a2c..2d2fe2aeb560 100644 --- a/net-analyzer/netdata/netdata-1.45.0.ebuild +++ b/net-analyzer/netdata/netdata-1.45.0.ebuild @@ -20,7 +20,7 @@ HOMEPAGE="https://github.com/netdata/netdata https://my-netdata.io/" LICENSE="GPL-3+ MIT BSD" SLOT="0" -IUSE="aclk bpf cloud cups +dbengine ipmi mongodb mysql nfacct nodejs postgres prometheus +python tor xen" +IUSE="aclk bpf cloud cups +dbengine ipmi mongodb mysql nfacct nodejs postgres prometheus +python systemd tor xen" REQUIRED_USE=" mysql? ( python ) python? ( ${PYTHON_REQUIRED_USE} ) @@ -78,7 +78,8 @@ RDEPEND=" xen? ( app-emulation/xen-tools dev-libs/yajl - )" + ) + systemd? ( sys-apps/systemd )" DEPEND="${RDEPEND} virtual/pkgconfig" @@ -108,6 +109,7 @@ src_configure() { -DENABLE_PLUGIN_XENSTAT=$(usex xen) -DENABLE_PLUGIN_EBPF=$(usex bpf) -DENABLE_PLUGIN_GO=FALSE + -DENABLE_PLUGIN_SYSTEMD_JOURNAL=$(usex systemd) ) cmake_src_configure }