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 EDDA31393E9 for ; Wed, 4 Jun 2014 14:56:01 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 19AB4E0982; Wed, 4 Jun 2014 14:56:01 +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 80A6DE0974 for ; Wed, 4 Jun 2014 14:56:00 +0000 (UTC) Received: from spoonbill.gentoo.org (spoonbill.gentoo.org [81.93.255.5]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id 8C77D33FD75 for ; Wed, 4 Jun 2014 14:55:59 +0000 (UTC) Received: from localhost.localdomain (localhost [127.0.0.1]) by spoonbill.gentoo.org (Postfix) with ESMTP id 1B2B5182D4 for ; Wed, 4 Jun 2014 14:55:58 +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: <1401893305.80afff4de68935f6a93bdcf9b49cfde601bca2ee.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: 80afff4de68935f6a93bdcf9b49cfde601bca2ee X-VCS-Branch: master Date: Wed, 4 Jun 2014 14:55:58 +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: b2aaa2d3-1855-453d-aee2-774cfe2e187b X-Archives-Hash: 21dc07e5dcf92cf55f7fc50207545d32 commit: 80afff4de68935f6a93bdcf9b49cfde601bca2ee Author: Michael Palimaka gentoo org> AuthorDate: Wed Jun 4 14:43:53 2014 +0000 Commit: Michael Palimaka gentoo org> CommitDate: Wed Jun 4 14:48:25 2014 +0000 URL: http://git.overlays.gentoo.org/gitweb/?p=proj/qa-scripts.git;a=commit;h=80afff4d tinderbox: remove references to pkgcore-checks, repoman, and DESCRIPTION. These will now be collected at a different stage of the process. --- tinderbox/bashrc | 9 --------- 1 file changed, 9 deletions(-) diff --git a/tinderbox/bashrc b/tinderbox/bashrc index 47bb19e..85bd691 100644 --- a/tinderbox/bashrc +++ b/tinderbox/bashrc @@ -27,7 +27,6 @@ # - Install desktop-file-utils (strongly recommended) # - Install pax-utils (strongly recommended) # - Install depcheck (optional) -# - Install pkgcore-checks (optional) # # CURRENT QA CHECKS # Portage provided: @@ -51,8 +50,6 @@ # # External provided: # - depcheck -# - pcheck -# - repoman # # Todo: # - am_maintainer_mode @@ -71,7 +68,6 @@ BUILD_DATA_DIR="${PACKAGE_DATA_DIR}/${PF}/$(uuidgen)" tinderbox_setup_common() { SANDBOX_ON=0 mkdir -p "${BUILD_DATA_DIR}" > /dev/null write_data arch ${ARCH} - write_data description ${DESCRIPTION} write_data profile $(eselect profile show | tail -1) write_data timestamp $(date --utc "+%F %T %Z") } @@ -117,11 +113,6 @@ tinderbox_postinst_checks() { if type -P depcheck > /dev/null ; then SANDBOX_ON=0 depcheck ${PF} > "${BUILD_DATA_DIR}"/depcheck fi - - #pushd "$(dirname ${FILESDIR})" > /dev/null - #SANDBOX_ON=0 repoman > "${PACKAGE_DATA_DIR}"/repoman - #SANDBOX_ON=0 pcheck --license-dir "${PORTDIR}"/licenses > "${PACKAGE_DATA_DIR}"/pchecks - #popd > /dev/null } write_data() {