blob: 0efc55733c99bf99e3e8b4e453d1e74468ea1849 [file] [log] [blame]
# 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/.
import os
from mozboot.base import BaseBootstrapper
class FedoraBootstrapper(BaseBootstrapper):
def __init__(self, version, dist_id):
BaseBootstrapper.__init__(self)
self.version = version
self.dist_id = dist_id
def install_system_packages(self):
self.yum_groupinstall(
'Development Tools',
'Development Libraries',
'GNOME Software Development')
self.yum_install(
'alsa-lib-devel',
'autoconf213',
'glibc-static',
'gstreamer-devel',
'gstreamer-plugins-base-devel',
'libstdc++-static',
'libXt-devel',
'mercurial',
'mesa-libGL-devel',
'wireless-tools-devel',
'yasm')
def upgrade_mercurial(self, current):
self.yum_update('mercurial')