Gentoo Archives: gentoo-commits

From: "Robin H. Johnson" <robbat2@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] proj/releng:master commit in: tools/
Date: Wed, 27 Apr 2016 21:34:26
Message-Id: 1461792847.fadbc54d952765619e7cab35e294cbfe172d8eaf.robbat2@gentoo
1 commit: fadbc54d952765619e7cab35e294cbfe172d8eaf
2 Author: Robin H. Johnson <robbat2 <AT> gentoo <DOT> org>
3 AuthorDate: Wed Apr 27 21:33:38 2016 +0000
4 Commit: Robin H. Johnson <robbat2 <AT> gentoo <DOT> org>
5 CommitDate: Wed Apr 27 21:34:07 2016 +0000
6 URL: https://gitweb.gentoo.org/proj/releng.git/commit/?id=fadbc54d
7
8 tools: Add a config that filters to stage4 only.
9
10 Signed-off-by: Robin H. Johnson <robbat2 <AT> gentoo.org>
11
12 ...-amd64-stage4.conf => catalyst-auto-filter-stage4only.conf} | 10 ++--------
13 1 file changed, 2 insertions(+), 8 deletions(-)
14
15 diff --git a/tools/catalyst-auto-amd64-stage4.conf b/tools/catalyst-auto-filter-stage4only.conf
16 similarity index 64%
17 rename from tools/catalyst-auto-amd64-stage4.conf
18 rename to tools/catalyst-auto-filter-stage4only.conf
19 index 7341046..a41e4bd 100644
20 --- a/tools/catalyst-auto-amd64-stage4.conf
21 +++ b/tools/catalyst-auto-filter-stage4only.conf
22 @@ -1,13 +1,8 @@
23 # This is the config file for the catalyst-auto script. It should be pretty
24 # self-explanatory.
25
26 -B=`readlink -f $0`
27 -BASECONF=${B/-daily}
28 -if [ ! -e $BASECONF ]; then
29 - echo "Could not find base config from $B" 1>&2
30 - exit 1
31 -fi
32 -source ${BASECONF}
33 +# This configuration does not set any builds of it's own, but rather removes
34 +# everything EXCEPT stage4 builds.
35 for s in $SETS ; do
36 var=SET_${s}_SPECS
37 val=${!var}
38 @@ -19,6 +14,5 @@ for s in $SETS ; do
39 done
40 eval "export $var='${newval}'"
41 done
42 -printenv |grep SET
43
44 # vim:ft=sh: