Bug 1428214 - Prune unnecessary packages from mozboot bootstrappers. - r=gps

MozReview-Commit-ID: GwNfUFFwkBQ

--HG--
extra : rebase_source : d6a464d6591de3a171984882b2729b18a33092a4
This commit is contained in:
Jeff Gilbert 2018-01-04 15:51:45 -08:00
parent 8e30040533
commit d4045513ea
6 changed files with 1 additions and 10 deletions

View File

@ -20,10 +20,7 @@ class ArchlinuxBootstrapper(StyloInstall, BaseBootstrapper):
SYSTEM_PACKAGES = [
'autoconf2.13',
'base-devel',
'ccache',
'mercurial',
'nodejs',
'npm',
'python2',
'python2-setuptools',
'unzip',
@ -57,7 +54,6 @@ class ArchlinuxBootstrapper(StyloInstall, BaseBootstrapper):
'yasm',
'gst-libav',
'gst-plugins-good',
'networkmanager',
]
BROWSER_AUR_PACKAGES = [

View File

@ -22,7 +22,6 @@ class CentOSFedoraBootstrapper(StyloInstall, BaseBootstrapper):
self.packages = [
'autoconf213',
'mercurial',
'nodejs',
'npm',
'which',

View File

@ -34,7 +34,6 @@ class DebianBootstrapper(StyloInstall, BaseBootstrapper):
COMMON_PACKAGES = [
'autoconf2.13',
'build-essential',
'ccache',
'nodejs',
'python-dev',
'python-pip',

View File

@ -18,7 +18,6 @@ class FreeBSDBootstrapper(BaseBootstrapper):
'autoconf213',
'gmake',
'gtar',
'mercurial',
'npm',
'pkgconf',
'py%s%s-sqlite3' % sys.version_info[0:2],

View File

@ -16,8 +16,7 @@ class GentooBootstrapper(StyloInstall, BaseBootstrapper):
self.dist_id = dist_id
def install_system_packages(self):
self.run_as_root(['emerge', '--noreplace', '--quiet', 'dev-vcs/git',
'mercurial', 'nodejs'])
self.run_as_root(['emerge', '--noreplace', '--quiet', 'nodejs'])
def install_browser_packages(self):
self.ensure_browser_packages()

View File

@ -12,7 +12,6 @@ class OpenBSDBootstrapper(BaseBootstrapper):
BaseBootstrapper.__init__(self, **kwargs)
self.packages = [
'mercurial',
'autoconf-2.13',
'gmake',
'gtar',