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 EC07413835C for ; Mon, 12 Apr 2021 22:50:38 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 40289E0AC1; Mon, 12 Apr 2021 22:50:38 +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 28230E0AC1 for ; Mon, 12 Apr 2021 22:50:38 +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 26B7D335DC2 for ; Mon, 12 Apr 2021 22:50:37 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 1F94964D for ; Mon, 12 Apr 2021 22:50:34 +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: <1618267811.ad650aa03e628de3b66849d7a21e1aaf1402a113.sam@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: dev-util/radare2/ X-VCS-Repository: repo/gentoo X-VCS-Files: dev-util/radare2/radare2-4.5.1-r1.ebuild dev-util/radare2/radare2-5.1.1.ebuild dev-util/radare2/radare2-9999.ebuild X-VCS-Directories: dev-util/radare2/ X-VCS-Committer: sam X-VCS-Committer-Name: Sam James X-VCS-Revision: ad650aa03e628de3b66849d7a21e1aaf1402a113 X-VCS-Branch: master Date: Mon, 12 Apr 2021 22:50:34 +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: 4af48ee6-0d1f-4d73-95d8-027f9e01a1b3 X-Archives-Hash: 3ad29bd815da2b164b249454bc8a38e4 commit: ad650aa03e628de3b66849d7a21e1aaf1402a113 Author: Sam James gentoo org> AuthorDate: Fri Apr 2 06:26:46 2021 +0000 Commit: Sam James gentoo org> CommitDate: Mon Apr 12 22:50:11 2021 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=ad650aa0 dev-util/radare2: fix variable references, eutils-- Signed-off-by: Sam James gentoo.org> dev-util/radare2/radare2-4.5.1-r1.ebuild | 8 ++++---- dev-util/radare2/radare2-5.1.1.ebuild | 6 +++--- dev-util/radare2/radare2-9999.ebuild | 8 ++++---- 3 files changed, 11 insertions(+), 11 deletions(-) diff --git a/dev-util/radare2/radare2-4.5.1-r1.ebuild b/dev-util/radare2/radare2-4.5.1-r1.ebuild index 963c0b6b6e7..5dc5b337d6a 100644 --- a/dev-util/radare2/radare2-4.5.1-r1.ebuild +++ b/dev-util/radare2/radare2-4.5.1-r1.ebuild @@ -1,9 +1,9 @@ -# Copyright 1999-2020 Gentoo Authors +# Copyright 1999-2021 Gentoo Authors # Distributed under the terms of the GNU General Public License v2 EAPI=7 -inherit bash-completion-r1 eutils toolchain-funcs +inherit bash-completion-r1 toolchain-funcs DESCRIPTION="unix-like reverse engineering framework and commandline tools" HOMEPAGE="http://www.radare.org" @@ -67,8 +67,8 @@ src_install() { # a workaround for unstable $(INSTALL) call, bug #574866 local d for d in doc/*; do - if [[ -d $d ]]; then - rm -rfv "$d" || die "failed to delete '$d'" + if [[ -d ${d} ]]; then + rm -rfv "${d}" || die "failed to delete '${d}'" fi done diff --git a/dev-util/radare2/radare2-5.1.1.ebuild b/dev-util/radare2/radare2-5.1.1.ebuild index fb93a9ece98..5dc5b337d6a 100644 --- a/dev-util/radare2/radare2-5.1.1.ebuild +++ b/dev-util/radare2/radare2-5.1.1.ebuild @@ -3,7 +3,7 @@ EAPI=7 -inherit bash-completion-r1 eutils toolchain-funcs +inherit bash-completion-r1 toolchain-funcs DESCRIPTION="unix-like reverse engineering framework and commandline tools" HOMEPAGE="http://www.radare.org" @@ -67,8 +67,8 @@ src_install() { # a workaround for unstable $(INSTALL) call, bug #574866 local d for d in doc/*; do - if [[ -d $d ]]; then - rm -rfv "$d" || die "failed to delete '$d'" + if [[ -d ${d} ]]; then + rm -rfv "${d}" || die "failed to delete '${d}'" fi done diff --git a/dev-util/radare2/radare2-9999.ebuild b/dev-util/radare2/radare2-9999.ebuild index 963c0b6b6e7..5dc5b337d6a 100644 --- a/dev-util/radare2/radare2-9999.ebuild +++ b/dev-util/radare2/radare2-9999.ebuild @@ -1,9 +1,9 @@ -# Copyright 1999-2020 Gentoo Authors +# Copyright 1999-2021 Gentoo Authors # Distributed under the terms of the GNU General Public License v2 EAPI=7 -inherit bash-completion-r1 eutils toolchain-funcs +inherit bash-completion-r1 toolchain-funcs DESCRIPTION="unix-like reverse engineering framework and commandline tools" HOMEPAGE="http://www.radare.org" @@ -67,8 +67,8 @@ src_install() { # a workaround for unstable $(INSTALL) call, bug #574866 local d for d in doc/*; do - if [[ -d $d ]]; then - rm -rfv "$d" || die "failed to delete '$d'" + if [[ -d ${d} ]]; then + rm -rfv "${d}" || die "failed to delete '${d}'" fi done