Files
tubestation/python/mozboot/mozboot/gentoo.py
Mike Hommey 3d894925ae Bug 1186229 - Enable Gtk+3 builds by default. r=gps
Note Gtk+3 builds need both Gtk+2 *and* Gtk+3.
2015-07-23 10:24:31 +09:00

27 lines
923 B
Python

# This Source Code Form is subject to the terms of the Mozilla Public
# License, v. 2.0. If a copy of the MPL was not distributed with this
# file, You can obtain one at http://mozilla.org/MPL/2.0/.
from mozboot.base import BaseBootstrapper
class GentooBootstrapper(BaseBootstrapper):
def __init__(self, version, dist_id, **kwargs):
BaseBootstrapper.__init__(self, **kwargs)
self.version = version
self.dist_id = dist_id
def install_system_packages(self):
self.run_as_root(['emerge', '--quiet', 'git', 'mercurial'])
def install_browser_packages(self):
self.run_as_root(['emerge', '--onlydeps', '--quiet', 'firefox'])
self.run_as_root(['emerge', '--quiet', 'gtk+'])
def _update_package_manager(self):
self.run_as_root(['emerge', '--sync'])
def upgrade_mercurial(self, current):
self.run_as_root(['emerge', '--update', 'mercurial'])