summaryrefslogtreecommitdiff
path: root/eclass/ruby-fakegem.eclass
diff options
context:
space:
mode:
Diffstat (limited to 'eclass/ruby-fakegem.eclass')
-rw-r--r--eclass/ruby-fakegem.eclass9
1 files changed, 3 insertions, 6 deletions
diff --git a/eclass/ruby-fakegem.eclass b/eclass/ruby-fakegem.eclass
index 690709f20752..41dbb1e16340 100644
--- a/eclass/ruby-fakegem.eclass
+++ b/eclass/ruby-fakegem.eclass
@@ -501,20 +501,17 @@ all_ruby_unpack() {
# one .gem file, since we won't support that at all.
[[ -d "${S}" ]] && die "Unable to unpack ${archive}, ${S} exists"
- ebegin "Unpacking .gem file..."
+ einfo "Unpacking .gem file..."
tar -mxf "${DISTDIR}"/${archive} || die
- eend $?
- ebegin "Uncompressing metadata"
+ einfo "Uncompressing metadata"
gunzip metadata.gz || die
- eend $?
mkdir "${S}"
pushd "${S}" &>/dev/null || die
- ebegin "Unpacking data.tar.gz"
+ einfo "Unpacking data.tar.gz"
tar -mxf "${my_WORKDIR}"/data.tar.gz || die
- eend $?
popd &>/dev/null || die
;;