From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from lists.gentoo.org (pigeon.gentoo.org [208.92.234.80]) by finch.gentoo.org (Postfix) with ESMTP id 002B11381FB for ; Sat, 29 Dec 2012 03:56:18 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id AE3EAE0678; Sat, 29 Dec 2012 03:56:11 +0000 (UTC) Received: from smtp.gentoo.org (smtp.gentoo.org [140.211.166.183]) (using TLSv1 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id 1C5A7E0678 for ; Sat, 29 Dec 2012 03:56:11 +0000 (UTC) Received: from hornbill.gentoo.org (hornbill.gentoo.org [94.100.119.163]) (using TLSv1 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id 2E58B33CB84 for ; Sat, 29 Dec 2012 03:56:10 +0000 (UTC) Received: from localhost.localdomain (localhost [127.0.0.1]) by hornbill.gentoo.org (Postfix) with ESMTP id 81727E543D for ; Sat, 29 Dec 2012 03:56:07 +0000 (UTC) From: "Anthony G. Basile" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Anthony G. Basile" Message-ID: <1356753350.282958563d016e462c33381081095a0728311d95.blueness@gentoo> Subject: [gentoo-commits] proj/releng:master commit in: tools-uclibc/ X-VCS-Repository: proj/releng X-VCS-Files: tools-uclibc/run-armv7a.sh tools-uclibc/run-mips32r2.sh tools-uclibc/run.sh X-VCS-Directories: tools-uclibc/ X-VCS-Committer: blueness X-VCS-Committer-Name: Anthony G. Basile X-VCS-Revision: 282958563d016e462c33381081095a0728311d95 X-VCS-Branch: master Date: Sat, 29 Dec 2012 03:56:07 +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-Archives-Salt: a3b557c0-75e0-4e75-a575-289c3df9adb6 X-Archives-Hash: 18dda9896d73bbe021a0e35f0a6006b2 commit: 282958563d016e462c33381081095a0728311d95 Author: Anthony G. Basile gentoo org> AuthorDate: Fri Dec 28 18:08:36 2012 +0000 Commit: Anthony G. Basile gentoo org> CommitDate: Sat Dec 29 03:55:50 2012 +0000 URL: http://git.overlays.gentoo.org/gitweb/?p=proj/releng.git;a=commit;h=28295856 tools-uclibc/run.sh: pretty up the output --- tools-uclibc/run-armv7a.sh | 10 ++++++++++ tools-uclibc/run-mips32r2.sh | 10 ++++++++++ tools-uclibc/run.sh | 10 ++++++++++ 3 files changed, 30 insertions(+), 0 deletions(-) diff --git a/tools-uclibc/run-armv7a.sh b/tools-uclibc/run-armv7a.sh index 3cb6ae0..957e756 100755 --- a/tools-uclibc/run-armv7a.sh +++ b/tools-uclibc/run-armv7a.sh @@ -21,6 +21,15 @@ prepare_confs() { done } +banner() { + echo + echo "************************************************************************" + echo "* $1" + echo "************************************************************************" + echo +} + + do_stages() { local arch=$1 local flavor=$2 @@ -40,6 +49,7 @@ do_stages() { fi if [[ "x${pretend}" != "xtest" ]]; then + banner "stage${s}-${arch}-uclibc-${flavor}" catalyst -f stage${s}-${arch}-uclibc-${flavor}.conf \ | tee -a zzz.log \ > stage${s}-${arch}-uclibc-${flavor}.log \ diff --git a/tools-uclibc/run-mips32r2.sh b/tools-uclibc/run-mips32r2.sh index 5b0830b..381465f 100755 --- a/tools-uclibc/run-mips32r2.sh +++ b/tools-uclibc/run-mips32r2.sh @@ -21,6 +21,15 @@ prepare_confs() { done } +banner() { + echo + echo "************************************************************************" + echo "* $1" + echo "************************************************************************" + echo +} + + do_stages() { local arch=$1 local flavor=$2 @@ -40,6 +49,7 @@ do_stages() { fi if [[ "x${pretend}" != "xtest" ]]; then + banner "stage${s}-${arch}-uclibc-${flavor}" catalyst -f stage${s}-${arch}-uclibc-${flavor}.conf \ | tee -a zzz.log \ > stage${s}-${arch}-uclibc-${flavor}.log \ diff --git a/tools-uclibc/run.sh b/tools-uclibc/run.sh index d9c410b..ffcc8dc 100755 --- a/tools-uclibc/run.sh +++ b/tools-uclibc/run.sh @@ -27,6 +27,15 @@ prepare_confs() { done } +banner() { + echo + echo "************************************************************************" + echo "* $1" + echo "************************************************************************" + echo +} + + do_stages() { local arch=$1 local flavor=$2 @@ -46,6 +55,7 @@ do_stages() { fi if [[ "x${pretend}" != "xtest" ]]; then + banner "stage${s}-${arch}-uclibc-${flavor}" catalyst -f stage${s}-${arch}-uclibc-${flavor}.conf \ | tee -a zzz.log \ > stage${s}-${arch}-uclibc-${flavor}.log \