class AbstractEbuildProcess(SpawnProcess):
- __slots__ = ('fakeroot_state', 'phase', 'settings',) + \
+ __slots__ = ('phase', 'settings',) + \
('_ipc_daemon', '_exit_command',)
_phases_without_builddir = ('clean', 'cleanrm', 'depend', 'help',)
- _spawn_kwarg_names = SpawnProcess._spawn_kwarg_names + \
- ('fakeroot_state',)
# The EbuildIpcDaemon support is well tested, but this variable
# is left so we can temporarily disable it if any issues arise.
"""
Used by doebuild.spawn() to manage the spawned process.
"""
+ _spawn_kwarg_names = AbstractEbuildProcess._spawn_kwarg_names + \
+ ('fakeroot_state',)
- __slots__ = ('spawn_func',)
+ __slots__ = ('fakeroot_state', 'spawn_func')
def _spawn(self, args, **kwargs):
return self.spawn_func(args, env=self.settings.environ(), **kwargs)