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 86496138206 for ; Wed, 27 Apr 2016 21:34:26 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id E871E21C004; Wed, 27 Apr 2016 21:34:23 +0000 (UTC) Received: from smtp.gentoo.org (smtp.gentoo.org [140.211.166.183]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id 274B9E080C for ; Wed, 27 Apr 2016 21:34:23 +0000 (UTC) Received: from oystercatcher.gentoo.org (oystercatcher.gentoo.org [148.251.78.52]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id 136F7340CEE for ; Wed, 27 Apr 2016 21:34:22 +0000 (UTC) Received: from localhost.localdomain (localhost [127.0.0.1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 5933715F for ; Wed, 27 Apr 2016 21:34:15 +0000 (UTC) From: "Robin H. Johnson" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Robin H. Johnson" Message-ID: <1461792847.fadbc54d952765619e7cab35e294cbfe172d8eaf.robbat2@gentoo> Subject: [gentoo-commits] proj/releng:master commit in: tools/ X-VCS-Repository: proj/releng X-VCS-Files: tools/catalyst-auto-amd64-stage4.conf tools/catalyst-auto-filter-stage4only.conf X-VCS-Directories: tools/ X-VCS-Committer: robbat2 X-VCS-Committer-Name: Robin H. Johnson X-VCS-Revision: fadbc54d952765619e7cab35e294cbfe172d8eaf X-VCS-Branch: master Date: Wed, 27 Apr 2016 21:34:15 +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: 7bae9ab3-6282-4901-90cc-9de8a28e5bab X-Archives-Hash: 16bf194685ca667c68886906624ee309 commit: fadbc54d952765619e7cab35e294cbfe172d8eaf Author: Robin H. Johnson gentoo org> AuthorDate: Wed Apr 27 21:33:38 2016 +0000 Commit: Robin H. Johnson gentoo org> CommitDate: Wed Apr 27 21:34:07 2016 +0000 URL: https://gitweb.gentoo.org/proj/releng.git/commit/?id=fadbc54d tools: Add a config that filters to stage4 only. Signed-off-by: Robin H. Johnson gentoo.org> ...-amd64-stage4.conf => catalyst-auto-filter-stage4only.conf} | 10 ++-------- 1 file changed, 2 insertions(+), 8 deletions(-) diff --git a/tools/catalyst-auto-amd64-stage4.conf b/tools/catalyst-auto-filter-stage4only.conf similarity index 64% rename from tools/catalyst-auto-amd64-stage4.conf rename to tools/catalyst-auto-filter-stage4only.conf index 7341046..a41e4bd 100644 --- a/tools/catalyst-auto-amd64-stage4.conf +++ b/tools/catalyst-auto-filter-stage4only.conf @@ -1,13 +1,8 @@ # This is the config file for the catalyst-auto script. It should be pretty # self-explanatory. -B=`readlink -f $0` -BASECONF=${B/-daily} -if [ ! -e $BASECONF ]; then - echo "Could not find base config from $B" 1>&2 - exit 1 -fi -source ${BASECONF} +# This configuration does not set any builds of it's own, but rather removes +# everything EXCEPT stage4 builds. for s in $SETS ; do var=SET_${s}_SPECS val=${!var} @@ -19,6 +14,5 @@ for s in $SETS ; do done eval "export $var='${newval}'" done -printenv |grep SET # vim:ft=sh: