mirror of
https://github.com/mozilla/gecko-dev.git
synced 2024-11-28 23:31:56 +00:00
Bug 1428214 - Prune unnecessary packages from mozboot bootstrappers. - r=gps
MozReview-Commit-ID: GwNfUFFwkBQ --HG-- extra : rebase_source : d6a464d6591de3a171984882b2729b18a33092a4
This commit is contained in:
parent
8e30040533
commit
d4045513ea
@ -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 = [
|
||||
|
@ -22,7 +22,6 @@ class CentOSFedoraBootstrapper(StyloInstall, BaseBootstrapper):
|
||||
|
||||
self.packages = [
|
||||
'autoconf213',
|
||||
'mercurial',
|
||||
'nodejs',
|
||||
'npm',
|
||||
'which',
|
||||
|
@ -34,7 +34,6 @@ class DebianBootstrapper(StyloInstall, BaseBootstrapper):
|
||||
COMMON_PACKAGES = [
|
||||
'autoconf2.13',
|
||||
'build-essential',
|
||||
'ccache',
|
||||
'nodejs',
|
||||
'python-dev',
|
||||
'python-pip',
|
||||
|
@ -18,7 +18,6 @@ class FreeBSDBootstrapper(BaseBootstrapper):
|
||||
'autoconf213',
|
||||
'gmake',
|
||||
'gtar',
|
||||
'mercurial',
|
||||
'npm',
|
||||
'pkgconf',
|
||||
'py%s%s-sqlite3' % sys.version_info[0:2],
|
||||
|
@ -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()
|
||||
|
@ -12,7 +12,6 @@ class OpenBSDBootstrapper(BaseBootstrapper):
|
||||
BaseBootstrapper.__init__(self, **kwargs)
|
||||
|
||||
self.packages = [
|
||||
'mercurial',
|
||||
'autoconf-2.13',
|
||||
'gmake',
|
||||
'gtar',
|
||||
|
Loading…
Reference in New Issue
Block a user