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 9AA80158451 for ; Fri, 12 Jan 2024 19:08:25 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 87492E2A2F; Fri, 12 Jan 2024 19:08:24 +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)) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id 6842FE2A2F for ; Fri, 12 Jan 2024 19:08:24 +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 7674C343183 for ; Fri, 12 Jan 2024 19:08:23 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id CB24214A8 for ; Fri, 12 Jan 2024 19:08:21 +0000 (UTC) From: "Michał Górny" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Michał Górny" Message-ID: <1705086496.3484d2aa661c41594c54bb32b2f3b97cf0a2e172.mgorny@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.44.0.ebuild X-VCS-Directories: net-analyzer/netdata/ X-VCS-Committer: mgorny X-VCS-Committer-Name: Michał Górny X-VCS-Revision: 3484d2aa661c41594c54bb32b2f3b97cf0a2e172 X-VCS-Branch: master Date: Fri, 12 Jan 2024 19:08:21 +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: 1c12b600-26df-4e4e-bb3a-8eb5773237ed X-Archives-Hash: 27a1c10bdfb24a0c2a89ac9d8a665def commit: 3484d2aa661c41594c54bb32b2f3b97cf0a2e172 Author: Michał Górny gentoo org> AuthorDate: Sun Jan 7 13:55:42 2024 +0000 Commit: Michał Górny gentoo org> CommitDate: Fri Jan 12 19:08:16 2024 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=3484d2aa net-analyzer/netdata: [QA] Remove invalid USE=lto USE=lto is only used to append -flto. Remove it. Signed-off-by: Michał Górny gentoo.org> net-analyzer/netdata/netdata-1.44.0.ebuild | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) diff --git a/net-analyzer/netdata/netdata-1.44.0.ebuild b/net-analyzer/netdata/netdata-1.44.0.ebuild index f0470bbdd4ca..a85bf1232c4b 100644 --- a/net-analyzer/netdata/netdata-1.44.0.ebuild +++ b/net-analyzer/netdata/netdata-1.44.0.ebuild @@ -2,7 +2,7 @@ # Distributed under the terms of the GNU General Public License v2 EAPI=8 -PYTHON_COMPAT=( python{3_9,3_10,3_11} ) +PYTHON_COMPAT=( python3_{10..11} ) inherit autotools fcaps flag-o-matic linux-info optfeature python-single-r1 systemd toolchain-funcs @@ -20,7 +20,7 @@ HOMEPAGE="https://github.com/netdata/netdata https://my-netdata.io/" LICENSE="GPL-3+ MIT BSD" SLOT="0" -IUSE="caps cloud +compression cpu_flags_x86_sse2 cups +dbengine ipmi +jsonc +lto mongodb mysql nfacct nodejs postgres prometheus +python tor xen" +IUSE="caps cloud +compression cpu_flags_x86_sse2 cups +dbengine ipmi +jsonc mongodb mysql nfacct nodejs postgres prometheus +python tor xen" REQUIRED_USE=" mysql? ( python ) python? ( ${PYTHON_REQUIRED_USE} ) @@ -105,6 +105,7 @@ src_configure() { [[ $(tc-endian) == big ]] && append-flags -mno-vsx fi + # --enable-lto only appends -flto econf \ --localstatedir="${EPREFIX}"/var \ --with-user=netdata \ @@ -116,7 +117,7 @@ src_configure() { $(use_enable nfacct plugin-nfacct) \ $(use_enable ipmi plugin-freeipmi) \ --disable-exporting-kinesis \ - $(use_enable lto lto) \ + --disable-lto \ $(use_enable mongodb exporting-mongodb) \ $(use_enable prometheus exporting-prometheus-remote-write) \ $(use_enable xen plugin-xenstat) \