From 90e13cbf14068144036f282b7796c7401d9d4483 Mon Sep 17 00:00:00 2001 From: Zac Medico Date: Sat, 29 Aug 2009 07:58:22 +0000 Subject: Use KeyValuePairFileLoader intead on getconfig(), since getconfig() is too strict about variable names now. svn path=/main/trunk/; revision=14169 --- pym/portage/dispatch_conf.py | 14 +++++++++----- 1 file changed, 9 insertions(+), 5 deletions(-) (limited to 'pym') diff --git a/pym/portage/dispatch_conf.py b/pym/portage/dispatch_conf.py index df3134c75..49e53c2ee 100644 --- a/pym/portage/dispatch_conf.py +++ b/pym/portage/dispatch_conf.py @@ -21,15 +21,19 @@ RCS_MERGE = "rcsmerge -p -r" + RCS_BRANCH + " '%s' > '%s'" DIFF3_MERGE = "diff3 -mE '%s' '%s' '%s' > '%s'" def read_config(mandatory_opts): - try: - opts = portage.getconfig('/etc/dispatch-conf.conf') - except: - opts = None - + loader = portage.env.loaders.KeyValuePairFileLoader( + '/etc/dispatch-conf.conf', None) + opts, errors = loader.load() if not opts: print >> sys.stderr, _('dispatch-conf: Error reading /etc/dispatch-conf.conf; fatal') sys.exit(1) + # Handle quote removal here, since KeyValuePairFileLoader doesn't do that. + quotes = "\"'" + for k, v in opts.iteritems(): + if v[:1] in quotes and v[:1] == v[-1:]: + opts[k] = v[1:-1] + for key in mandatory_opts: if key not in opts: if key == "merge": -- cgit v1.2.3-1-g7c22