settings = trees[trees._target_eroot]['vartree'].settings
mtimedbfile = os.path.join(settings['EROOT'], portage.CACHE_PATH, "mtimedb")
mtimedb = portage.MtimeDB(mtimedbfile)
- portage.output._init(config_root=settings['PORTAGE_CONFIGROOT'])
- # The portage_uid initialization here must happen before
- # the _init_dirs() calls below.
- portage.data._init(settings)
QueryCommand._db = trees
for root, root_trees in trees.items():
del portage._initializing_globals
settings = portage.db[portage.db._target_eroot]["vartree"].settings
- portage.output._init(config_root=settings['PORTAGE_CONFIGROOT'])
- portage.data._init(settings)
portage.settings = settings
constructed.add('settings')
initialize global variables. This allows settings to come from make.conf
instead of requiring them to be set in the calling environment.
"""
- if '_portage_grpname' not in _initialized_globals:
+ if '_portage_grpname' not in _initialized_globals and \
+ '_portage_uname' not in _initialized_globals:
+
v = settings.get('PORTAGE_GRPNAME')
if v is not None:
globals()['_portage_grpname'] = v
_initialized_globals.add('_portage_grpname')
- if '_portage_uname' not in _initialized_globals:
v = settings.get('PORTAGE_USERNAME')
if v is not None:
globals()['_portage_uname'] = v
self[k] = self[k].lower()
self.backup_changes(k)
+ # The first constructed config object initializes these modules,
+ # and subsequent calls to the _init() functions have no effect.
+ portage.output._init(config_root=self['PORTAGE_CONFIGROOT'])
+ portage.data._init(self)
+
if mycpv:
self.setcpv(mycpv)