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 0865F139360 for ; Wed, 11 Aug 2021 02:05:38 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 3C481E084A; Wed, 11 Aug 2021 02:05:37 +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 1D303E084A for ; Wed, 11 Aug 2021 02:05:37 +0000 (UTC) Received: from oystercatcher.gentoo.org (oystercatcher.gentoo.org [148.251.78.52]) (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 2B672342EE5 for ; Wed, 11 Aug 2021 02:05:35 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 7A09D898 for ; Wed, 11 Aug 2021 02:05:33 +0000 (UTC) From: "Sam James" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Sam James" Message-ID: <1628647515.795a50c8b29f5433e22b873c1af9cdb07987b079.sam@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: sys-process/htop/ X-VCS-Repository: repo/gentoo X-VCS-Files: sys-process/htop/htop-3.0.2-r1.ebuild sys-process/htop/htop-3.0.4-r2.ebuild sys-process/htop/htop-3.0.5-r1.ebuild X-VCS-Directories: sys-process/htop/ X-VCS-Committer: sam X-VCS-Committer-Name: Sam James X-VCS-Revision: 795a50c8b29f5433e22b873c1af9cdb07987b079 X-VCS-Branch: master Date: Wed, 11 Aug 2021 02:05:33 +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: 437cd795-8893-4d75-a95c-5881b06a2028 X-Archives-Hash: d80f051618e98fd63aaef2089d64ebf4 commit: 795a50c8b29f5433e22b873c1af9cdb07987b079 Author: Sam James gentoo org> AuthorDate: Wed Aug 11 01:31:14 2021 +0000 Commit: Sam James gentoo org> CommitDate: Wed Aug 11 02:05:15 2021 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=795a50c8 sys-process/htop: [QA] fix named variable style See https://projects.gentoo.org/qa/policy-guide/ebuild-format.html#pg0101. Signed-off-by: Sam James gentoo.org> sys-process/htop/htop-3.0.2-r1.ebuild | 2 +- sys-process/htop/htop-3.0.4-r2.ebuild | 2 +- sys-process/htop/htop-3.0.5-r1.ebuild | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/sys-process/htop/htop-3.0.2-r1.ebuild b/sys-process/htop/htop-3.0.2-r1.ebuild index 183f2f04fbc..13b5c03ad25 100644 --- a/sys-process/htop/htop-3.0.2-r1.ebuild +++ b/sys-process/htop/htop-3.0.2-r1.ebuild @@ -46,7 +46,7 @@ src_prepare() { } src_configure() { - [[ $CBUILD != $CHOST ]] && export ac_cv_file__proc_{meminfo,stat}=yes #328971 + [[ ${CBUILD} != ${CHOST} ]] && export ac_cv_file__proc_{meminfo,stat}=yes #328971 local myeconfargs=( # fails to build against recent hwloc versions diff --git a/sys-process/htop/htop-3.0.4-r2.ebuild b/sys-process/htop/htop-3.0.4-r2.ebuild index 8ce3e79b56e..65e53029fa2 100644 --- a/sys-process/htop/htop-3.0.4-r2.ebuild +++ b/sys-process/htop/htop-3.0.4-r2.ebuild @@ -50,7 +50,7 @@ src_prepare() { } src_configure() { - [[ $CBUILD != $CHOST ]] && export ac_cv_file__proc_{meminfo,stat}=yes #328971 + [[ ${CBUILD} != ${CHOST} ]] && export ac_cv_file__proc_{meminfo,stat}=yes #328971 local myeconfargs=( $(use_enable debug) diff --git a/sys-process/htop/htop-3.0.5-r1.ebuild b/sys-process/htop/htop-3.0.5-r1.ebuild index 61702bf269c..82648c71eff 100644 --- a/sys-process/htop/htop-3.0.5-r1.ebuild +++ b/sys-process/htop/htop-3.0.5-r1.ebuild @@ -46,7 +46,7 @@ src_prepare() { } src_configure() { - [[ $CBUILD != $CHOST ]] && export ac_cv_file__proc_{meminfo,stat}=yes #328971 + [[ ${CBUILD} != ${CHOST} ]] && export ac_cv_file__proc_{meminfo,stat}=yes #328971 local myeconfargs=( $(use_enable debug)