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 B13A613877A for ; Thu, 28 Aug 2014 04:51:05 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id A0655E0841; Thu, 28 Aug 2014 04:51:03 +0000 (UTC) Received: from smtp.gentoo.org (smtp.gentoo.org [140.211.166.183]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id 5CFC0E0841 for ; Thu, 28 Aug 2014 04:51:03 +0000 (UTC) Received: from oystercatcher.gentoo.org (oystercatcher.gentoo.org [148.251.78.52]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id 87C6133F077 for ; Thu, 28 Aug 2014 04:51:02 +0000 (UTC) Received: from localhost.localdomain (localhost [127.0.0.1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 1C8C141A4 for ; Thu, 28 Aug 2014 04:51:01 +0000 (UTC) From: "Michael Palimaka" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Michael Palimaka" Message-ID: <1409201452.26cae8488b7a38fb8577952572868a03fd415709.kensington@gentoo> Subject: [gentoo-commits] proj/qa-scripts:master commit in: tinderbox/ X-VCS-Repository: proj/qa-scripts X-VCS-Files: tinderbox/bashrc X-VCS-Directories: tinderbox/ X-VCS-Committer: kensington X-VCS-Committer-Name: Michael Palimaka X-VCS-Revision: 26cae8488b7a38fb8577952572868a03fd415709 X-VCS-Branch: master Date: Thu, 28 Aug 2014 04:51:01 +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: 31c2adf3-c9bf-465c-85d5-77afef9e1b89 X-Archives-Hash: 9d6804611850174f97ce18cdf0862fba commit: 26cae8488b7a38fb8577952572868a03fd415709 Author: Michael Palimaka gentoo org> AuthorDate: Thu Aug 28 04:50:52 2014 +0000 Commit: Michael Palimaka gentoo org> CommitDate: Thu Aug 28 04:50:52 2014 +0000 URL: http://sources.gentoo.org/gitweb/?p=proj/qa-scripts.git;a=commit;h=26cae848 tinderbox: add an option to be more verbose --- tinderbox/bashrc | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/tinderbox/bashrc b/tinderbox/bashrc index 71da78e..560c3fd 100644 --- a/tinderbox/bashrc +++ b/tinderbox/bashrc @@ -62,6 +62,7 @@ : ${DEPCHECK_BIN:="/usr/bin/depcheck"} : ${TINDERBOX_DIR:="/var/log/tinderbox"} +: ${TINDERBOX_VERBOSE:=true} PACKAGE_DATA_DIR="${TINDERBOX_DIR}/${CATEGORY}/${PN}" BUILD_DATA_DIR="${PACKAGE_DATA_DIR}/${PF}/$(cat /proc/sys/kernel/random/uuid)" @@ -115,6 +116,9 @@ tinderbox_postinst_checks() { if type -P "${DEPCHECK_BIN}" > /dev/null ; then SANDBOX_ON=0 "${DEPCHECK_BIN}" ${PF} > "${BUILD_DATA_DIR}"/depcheck + if [[ "${TINDERBOX_VERBOSE}" == true ]] ; then + cat "${BUILD_DATA_DIR}"/depcheck + fi fi }