commit:     ad650aa03e628de3b66849d7a21e1aaf1402a113
Author:     Sam James <sam <AT> gentoo <DOT> org>
AuthorDate: Fri Apr  2 06:26:46 2021 +0000
Commit:     Sam James <sam <AT> gentoo <DOT> 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 <sam <AT> 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
 

Reply via email to