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 4D565158020 for ; Fri, 18 Nov 2022 18:00:09 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 8955AE0837; Fri, 18 Nov 2022 18:00:08 +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 6E9DCE0837 for ; Fri, 18 Nov 2022 18:00:08 +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 67B353409A4 for ; Fri, 18 Nov 2022 18:00:07 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id CC0AB6FE for ; Fri, 18 Nov 2022 18:00:05 +0000 (UTC) From: "Matt Turner" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Matt Turner" Message-ID: <1668794400.586a0333a5703eb759fa8472faf947074b3a74d0.mattst88@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: sys-power/powertop/ X-VCS-Repository: repo/gentoo X-VCS-Files: sys-power/powertop/powertop-2.15.ebuild X-VCS-Directories: sys-power/powertop/ X-VCS-Committer: mattst88 X-VCS-Committer-Name: Matt Turner X-VCS-Revision: 586a0333a5703eb759fa8472faf947074b3a74d0 X-VCS-Branch: master Date: Fri, 18 Nov 2022 18:00:05 +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: 938b9c72-9bca-412b-8027-4da38a6f7298 X-Archives-Hash: 34722b567c1b5c1588526680766ed448 commit: 586a0333a5703eb759fa8472faf947074b3a74d0 Author: Matt Turner gentoo org> AuthorDate: Fri Nov 18 17:59:22 2022 +0000 Commit: Matt Turner gentoo org> CommitDate: Fri Nov 18 18:00:00 2022 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=586a0333 sys-power/powertop: Drop IUSE=unicode - and add append-lfs-flags Signed-off-by: Matt Turner gentoo.org> sys-power/powertop/powertop-2.15.ebuild | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/sys-power/powertop/powertop-2.15.ebuild b/sys-power/powertop/powertop-2.15.ebuild index 4398073e6d2e..4833a907c70d 100644 --- a/sys-power/powertop/powertop-2.15.ebuild +++ b/sys-power/powertop/powertop-2.15.ebuild @@ -13,19 +13,19 @@ else KEYWORDS="~amd64 ~arm ~arm64 ~ppc ~sparc ~x86 ~amd64-linux ~x86-linux" fi -inherit autotools ${GIT_ECLASS} linux-info +inherit autotools ${GIT_ECLASS} flag-o-matic linux-info DESCRIPTION="tool to diagnose issues with power consumption and power management" HOMEPAGE="https://01.org/powertop/ https://github.com/fenrus75/powertop/" LICENSE="GPL-2" SLOT="0" -IUSE="nls unicode X" +IUSE="nls X" DEPEND=" dev-libs/libnl:3 sys-apps/pciutils - sys-libs/ncurses:=[unicode(+)?] + sys-libs/ncurses:=[unicode(+)] " BDEPEND=" @@ -108,6 +108,6 @@ src_prepare() { } src_configure() { - export ac_cv_search_delwin=$(usex unicode -lncursesw -lncurses) + append-lfs-flags econf $(use_enable nls) }