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 4FBDF138334 for ; Mon, 5 Nov 2018 13:48:38 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 1AEEDE0A9C; Mon, 5 Nov 2018 13:48:37 +0000 (UTC) Received: from smtp.gentoo.org (dev.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 E1B47E0A9C for ; Mon, 5 Nov 2018 13:48:35 +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 7BE2B335C8D for ; Mon, 5 Nov 2018 13:48:32 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id A03B23DB for ; Mon, 5 Nov 2018 13:48:29 +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: <1541425701.9f8bcf968ad5c2032221e4a1f8c5682f94107154.candrews@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: net-analyzer/netdata/ X-VCS-Repository: repo/gentoo X-VCS-Files: net-analyzer/netdata/metadata.xml 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: 9f8bcf968ad5c2032221e4a1f8c5682f94107154 X-VCS-Branch: master Date: Mon, 5 Nov 2018 13:48:29 +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-Archives-Salt: 3b733865-40bb-43a1-82ef-d0349a10ed7c X-Archives-Hash: 1e77aab3812869e46b01ab6a66bd4a75 commit: 9f8bcf968ad5c2032221e4a1f8c5682f94107154 Author: Craig Andrews gentoo org> AuthorDate: Fri Nov 2 16:59:46 2018 +0000 Commit: Craig Andrews gentoo org> CommitDate: Mon Nov 5 13:48:21 2018 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=9f8bcf96 net-analyzer/netdata: Add tor support See https://github.com/netdata/netdata/pull/4546 Signed-off-by: Craig Andrews gentoo.org> Package-Manager: Portage-2.3.51, Repoman-2.3.11 net-analyzer/netdata/metadata.xml | 1 + net-analyzer/netdata/netdata-9999.ebuild | 7 +++++-- 2 files changed, 6 insertions(+), 2 deletions(-) diff --git a/net-analyzer/netdata/metadata.xml b/net-analyzer/netdata/metadata.xml index 80172c7cf07..04af360a6e2 100644 --- a/net-analyzer/netdata/metadata.xml +++ b/net-analyzer/netdata/metadata.xml @@ -10,6 +10,7 @@ Install sys-apps/ipmitool required for monitoring IPMI sensors. Enable the nfacct plugin Enable use of nodejs (which some plugins use) + Enable monitoring of tor netdata/netdata diff --git a/net-analyzer/netdata/netdata-9999.ebuild b/net-analyzer/netdata/netdata-9999.ebuild index 8d23470a368..3b95eb4ed55 100644 --- a/net-analyzer/netdata/netdata-9999.ebuild +++ b/net-analyzer/netdata/netdata-9999.ebuild @@ -19,10 +19,12 @@ HOMEPAGE="https://github.com/netdata/netdata https://my-netdata.io/" LICENSE="GPL-3+ MIT BSD" SLOT="0" -IUSE="caps +compression cpu_flags_x86_sse2 ipmi mysql nfacct nodejs postgres +python" +IUSE="caps +compression cpu_flags_x86_sse2 ipmi mysql nfacct nodejs postgres +python tor" REQUIRED_USE=" mysql? ( python ) - python? ( ${PYTHON_REQUIRED_USE} )" + python? ( ${PYTHON_REQUIRED_USE} ) + tor? ( python )" + # most unconditional dependencies are for plugins.d/charts.d.plugin: RDEPEND=" >=app-shells/bash-4:0 @@ -55,6 +57,7 @@ RDEPEND=" ) ) postgres? ( dev-python/psycopg:2[${PYTHON_USEDEP}] ) + tor? ( net-libs/stem[${PYTHON_USEDEP}] ) )" DEPEND="${RDEPEND} virtual/pkgconfig"