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 D53FC138334 for ; Sat, 20 Apr 2019 23:24:40 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 2B276E0990; Sat, 20 Apr 2019 23:20:26 +0000 (UTC) Received: from smtp.gentoo.org (smtp.gentoo.org [140.211.166.183]) (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 BE87AE0995 for ; Sat, 20 Apr 2019 23:20:25 +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 9298A341C82 for ; Fri, 19 Apr 2019 18:43:07 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 049CD580 for ; Fri, 19 Apr 2019 18:43:06 +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: <1555699378.28efa0b57547e2784ae33d273b500fe4aab84e52.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-1.14.0-r1.ebuild 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: 28efa0b57547e2784ae33d273b500fe4aab84e52 X-VCS-Branch: master Date: Fri, 19 Apr 2019 18:43:06 +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: 5d88083b-f510-449e-8717-7a4d3475de3f X-Archives-Hash: 727d9b6b9c1b23f2e542f32127b43c87 commit: 28efa0b57547e2784ae33d273b500fe4aab84e52 Author: Craig Andrews gentoo org> AuthorDate: Fri Apr 19 18:42:29 2019 +0000 Commit: Craig Andrews gentoo org> CommitDate: Fri Apr 19 18:42:58 2019 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=28efa0b5 net-analyzer/netdata: Make xen and cups plugins optional Closes: https://bugs.gentoo.org/683838 Package-Manager: Portage-2.3.64, Repoman-2.3.12 Signed-off-by: Craig Andrews gentoo.org> net-analyzer/netdata/metadata.xml | 1 + .../netdata/{netdata-9999.ebuild => netdata-1.14.0-r1.ebuild} | 9 ++++++++- net-analyzer/netdata/netdata-9999.ebuild | 9 ++++++++- 3 files changed, 17 insertions(+), 2 deletions(-) diff --git a/net-analyzer/netdata/metadata.xml b/net-analyzer/netdata/metadata.xml index 04af360a6e2..06a8ae53618 100644 --- a/net-analyzer/netdata/metadata.xml +++ b/net-analyzer/netdata/metadata.xml @@ -11,6 +11,7 @@ Enable the nfacct plugin Enable use of nodejs (which some plugins use) Enable monitoring of tor + Enable monitoring of xen netdata/netdata diff --git a/net-analyzer/netdata/netdata-9999.ebuild b/net-analyzer/netdata/netdata-1.14.0-r1.ebuild similarity index 91% copy from net-analyzer/netdata/netdata-9999.ebuild copy to net-analyzer/netdata/netdata-1.14.0-r1.ebuild index 59396a96cc0..54d150969d3 100644 --- a/net-analyzer/netdata/netdata-9999.ebuild +++ b/net-analyzer/netdata/netdata-1.14.0-r1.ebuild @@ -19,7 +19,7 @@ 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 tor" +IUSE="caps +compression cpu_flags_x86_sse2 cups ipmi mysql nfacct nodejs postgres +python tor xen" REQUIRED_USE=" mysql? ( python ) python? ( ${PYTHON_REQUIRED_USE} ) @@ -40,6 +40,7 @@ RDEPEND=" sys-apps/util-linux virtual/awk caps? ( sys-libs/libcap ) + cups? ( net-print/cups ) compression? ( sys-libs/zlib ) ipmi? ( sys-libs/freeipmi ) nfacct? ( @@ -58,6 +59,10 @@ RDEPEND=" ) postgres? ( dev-python/psycopg:2[${PYTHON_USEDEP}] ) tor? ( net-libs/stem[${PYTHON_USEDEP}] ) + ) + xen? ( + app-emulation/xen-tools + dev-libs/yajl )" DEPEND="${RDEPEND} virtual/pkgconfig" @@ -85,8 +90,10 @@ src_configure() { econf \ --localstatedir="${EPREFIX}"/var \ --with-user=${NETDATA_USER} \ + $(use_enable cups plugin-cups) \ $(use_enable nfacct plugin-nfacct) \ $(use_enable ipmi plugin-freeipmi) \ + $(use_enable xen plugin-xenstat) \ $(use_enable cpu_flags_x86_sse2 x86-sse) \ $(use_with compression zlib) } diff --git a/net-analyzer/netdata/netdata-9999.ebuild b/net-analyzer/netdata/netdata-9999.ebuild index 59396a96cc0..54d150969d3 100644 --- a/net-analyzer/netdata/netdata-9999.ebuild +++ b/net-analyzer/netdata/netdata-9999.ebuild @@ -19,7 +19,7 @@ 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 tor" +IUSE="caps +compression cpu_flags_x86_sse2 cups ipmi mysql nfacct nodejs postgres +python tor xen" REQUIRED_USE=" mysql? ( python ) python? ( ${PYTHON_REQUIRED_USE} ) @@ -40,6 +40,7 @@ RDEPEND=" sys-apps/util-linux virtual/awk caps? ( sys-libs/libcap ) + cups? ( net-print/cups ) compression? ( sys-libs/zlib ) ipmi? ( sys-libs/freeipmi ) nfacct? ( @@ -58,6 +59,10 @@ RDEPEND=" ) postgres? ( dev-python/psycopg:2[${PYTHON_USEDEP}] ) tor? ( net-libs/stem[${PYTHON_USEDEP}] ) + ) + xen? ( + app-emulation/xen-tools + dev-libs/yajl )" DEPEND="${RDEPEND} virtual/pkgconfig" @@ -85,8 +90,10 @@ src_configure() { econf \ --localstatedir="${EPREFIX}"/var \ --with-user=${NETDATA_USER} \ + $(use_enable cups plugin-cups) \ $(use_enable nfacct plugin-nfacct) \ $(use_enable ipmi plugin-freeipmi) \ + $(use_enable xen plugin-xenstat) \ $(use_enable cpu_flags_x86_sse2 x86-sse) \ $(use_with compression zlib) }