Gentoo Archives: gentoo-commits

From: Brian Dolbec <dolsen@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] proj/catalyst:pending commit in: catalyst/
Date: Tue, 01 Sep 2015 05:59:19
Message-Id: 1441082979.b0e860c4b5c218729d344a821814071b4392ed61.dolsen@gentoo
1 commit: b0e860c4b5c218729d344a821814071b4392ed61
2 Author: Brian Dolbec <dolsen <AT> gentoo <DOT> org>
3 AuthorDate: Tue Sep 1 04:48:45 2015 +0000
4 Commit: Brian Dolbec <dolsen <AT> gentoo <DOT> org>
5 CommitDate: Tue Sep 1 04:49:39 2015 +0000
6 URL: https://gitweb.gentoo.org/proj/catalyst.git/commit/?id=b0e860c4
7
8 main.py: Add 'local_overlay' to the overridable defaults in the catalyst.conf file
9
10 catalyst/main.py | 3 ++-
11 1 file changed, 2 insertions(+), 1 deletion(-)
12
13 diff --git a/catalyst/main.py b/catalyst/main.py
14 index dd3c517..3ab4166 100644
15 --- a/catalyst/main.py
16 +++ b/catalyst/main.py
17 @@ -116,7 +116,8 @@ def parse_config(myconfig):
18 if opt in option_messages:
19 print option_messages[opt]
20
21 - for key in ["digests", "envscript", "var_tmpfs_portage", "port_logdir"]:
22 + for key in ["digests", "envscript", "var_tmpfs_portage", "port_logdir",
23 + "local_overlay"]:
24 if key in myconf:
25 conf_values[key] = myconf[key]