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 ECC35138334 for ; Tue, 2 Jul 2019 20:57:14 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 1D99BE087B; Tue, 2 Jul 2019 20:57:14 +0000 (UTC) Received: from smtp.gentoo.org (woodpecker.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 E4BD9E087B for ; Tue, 2 Jul 2019 20:57:13 +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 3E946346E3B for ; Tue, 2 Jul 2019 20:57:12 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 0C7F6606 for ; Tue, 2 Jul 2019 20:57:10 +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: <1562101022.221570031a37bcab9e4d27521d6749f73d0d25e5.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.15.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: 221570031a37bcab9e4d27521d6749f73d0d25e5 X-VCS-Branch: master Date: Tue, 2 Jul 2019 20:57: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: 6b1bc63b-9af2-4ef5-bf49-a3a61d8a4f27 X-Archives-Hash: f5b9440f3b3dfd0257330394711d6678 commit: 221570031a37bcab9e4d27521d6749f73d0d25e5 Author: Craig Andrews gentoo org> AuthorDate: Tue Jul 2 20:54:11 2019 +0000 Commit: Craig Andrews gentoo org> CommitDate: Tue Jul 2 20:57:02 2019 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=22157003 net-analyzer/netdata: add support for dbengine Closes: https://bugs.gentoo.org/687436 Package-Manager: Portage-2.3.68, Repoman-2.3.16 Signed-off-by: Craig Andrews gentoo.org> net-analyzer/netdata/metadata.xml | 1 + .../netdata/{netdata-9999.ebuild => netdata-1.15.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 06a8ae53618..f12bf742e15 100644 --- a/net-analyzer/netdata/metadata.xml +++ b/net-analyzer/netdata/metadata.xml @@ -7,6 +7,7 @@ Enable compression via zlib + Enable the Netdata database engine Install sys-apps/ipmitool required for monitoring IPMI sensors. Enable the nfacct plugin Enable use of nodejs (which some plugins use) diff --git a/net-analyzer/netdata/netdata-9999.ebuild b/net-analyzer/netdata/netdata-1.15.0-r1.ebuild similarity index 92% copy from net-analyzer/netdata/netdata-9999.ebuild copy to net-analyzer/netdata/netdata-1.15.0-r1.ebuild index 54d150969d3..19ed4f693a0 100644 --- a/net-analyzer/netdata/netdata-9999.ebuild +++ b/net-analyzer/netdata/netdata-1.15.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 cups ipmi mysql nfacct nodejs postgres +python tor xen" +IUSE="caps +compression cpu_flags_x86_sse2 cups dbengine ipmi mysql nfacct nodejs postgres +python tor xen" REQUIRED_USE=" mysql? ( python ) python? ( ${PYTHON_REQUIRED_USE} ) @@ -41,6 +41,12 @@ RDEPEND=" virtual/awk caps? ( sys-libs/libcap ) cups? ( net-print/cups ) + dbengine? ( + dev-libs/libuv + app-arch/lz4 + dev-libs/judy + dev-libs/openssl:= + ) compression? ( sys-libs/zlib ) ipmi? ( sys-libs/freeipmi ) nfacct? ( @@ -91,6 +97,7 @@ src_configure() { --localstatedir="${EPREFIX}"/var \ --with-user=${NETDATA_USER} \ $(use_enable cups plugin-cups) \ + $(use_enable dbengine) \ $(use_enable nfacct plugin-nfacct) \ $(use_enable ipmi plugin-freeipmi) \ $(use_enable xen plugin-xenstat) \ diff --git a/net-analyzer/netdata/netdata-9999.ebuild b/net-analyzer/netdata/netdata-9999.ebuild index 54d150969d3..19ed4f693a0 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 cups ipmi mysql nfacct nodejs postgres +python tor xen" +IUSE="caps +compression cpu_flags_x86_sse2 cups dbengine ipmi mysql nfacct nodejs postgres +python tor xen" REQUIRED_USE=" mysql? ( python ) python? ( ${PYTHON_REQUIRED_USE} ) @@ -41,6 +41,12 @@ RDEPEND=" virtual/awk caps? ( sys-libs/libcap ) cups? ( net-print/cups ) + dbengine? ( + dev-libs/libuv + app-arch/lz4 + dev-libs/judy + dev-libs/openssl:= + ) compression? ( sys-libs/zlib ) ipmi? ( sys-libs/freeipmi ) nfacct? ( @@ -91,6 +97,7 @@ src_configure() { --localstatedir="${EPREFIX}"/var \ --with-user=${NETDATA_USER} \ $(use_enable cups plugin-cups) \ + $(use_enable dbengine) \ $(use_enable nfacct plugin-nfacct) \ $(use_enable ipmi plugin-freeipmi) \ $(use_enable xen plugin-xenstat) \