blob: 8aa2d26b70b48c5f426f9722298ecc2aaa95590c [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/.
from __future__ import print_function, unicode_literals
import os
import re
import subprocess
import sys
import tempfile
try:
from urllib2 import urlopen
except ImportError:
from urllib.request import urlopen
from distutils.version import StrictVersion
from mozboot.base import BaseBootstrapper
HOMEBREW_BOOTSTRAP = 'http://raw.github.com/mxcl/homebrew/go'
XCODE_APP_STORE = 'macappstore://itunes.apple.com/app/id497799835?mt=12'
XCODE_LEGACY = 'https://developer.apple.com/downloads/download.action?path=Developer_Tools/xcode_3.2.6_and_ios_sdk_4.3__final/xcode_3.2.6_and_ios_sdk_4.3.dmg'
HOMEBREW_AUTOCONF213 = 'https://raw.github.com/Homebrew/homebrew-versions/master/autoconf213.rb'
MACPORTS_URL = {'8': 'https://distfiles.macports.org/MacPorts/MacPorts-2.1.3-10.8-MountainLion.pkg',
'7': 'https://distfiles.macports.org/MacPorts/MacPorts-2.1.3-10.7-Lion.pkg',
'6': 'https://distfiles.macports.org/MacPorts/MacPorts-2.1.3-10.6-SnowLeopard.pkg',}
MACPORTS_CLANG_PACKAGE = 'clang-3.2'
RE_CLANG_VERSION = re.compile('Apple (?:clang|LLVM) version (\d+\.\d+)')
APPLE_CLANG_MINIMUM_VERSION = StrictVersion('4.0')
XCODE_REQUIRED = '''
Xcode is required to build Firefox. Please complete the install of Xcode
through the App Store.
'''
XCODE_REQUIRED_LEGACY = '''
You will need to download and install Xcode to build Firefox.
Please complete the Xcode download and then relaunch this script.
'''
XCODE_COMMAND_LINE_TOOLS_MISSING = '''
The Xcode command line tools are required to build Firefox.
'''
INSTALL_XCODE_COMMAND_LINE_TOOLS_STEPS = '''
Perform the following steps to install the Xcode command line tools:
1) Open Xcode.app
2) Click through any first-run prompts
3) From the main Xcode menu, select Preferences (Command ,)
4) Go to the Download tab (near the right)
5) Install the "Command Line Tools"
When that has finished installing, please relaunch this script.
'''
UPGRADE_XCODE_COMMAND_LINE_TOOLS = '''
An old version of the Xcode command line tools is installed. You will need to
install a newer version in order to compile Firefox.
'''
PACKAGE_MANAGER_INSTALL = '''
We will install the %s package manager to install required packages.
You will be prompted to install %s with its default settings. If you
would prefer to do this manually, hit CTRL+c, install %s yourself, ensure
"%s" is in your $PATH, and relaunch bootstrap.
'''
PACKAGE_MANAGER_PACKAGES = '''
We are now installing all required packages via %s. You will see a lot of
output as packages are built.
'''
PACKAGE_MANAGER_OLD_CLANG = '''
We require a newer compiler than what is provided by your version of Xcode.
We will install a modern version of Clang through %s.
'''
PACKAGE_MANAGER_CHOICE = '''
Please choose a package manager you'd like:
1. Homebrew
2. MacPorts
Your choice:
'''
NO_PACKAGE_MANAGER_WARNING = '''
It seems you don't have any supported package manager installed.
'''
PACKAGE_MANAGER_EXISTS = '''
Looks like you have %s installed. We will install all required packages via %s.
'''
MULTI_PACKAGE_MANAGER_EXISTS = '''
It looks like you have multiple package managers installed.
'''
# May add support for other package manager on os x.
PACKAGE_MANAGER = {'Homebrew': 'brew',
'MacPorts': 'port'}
PACKAGE_MANAGER_CHOICES = ['Homebrew', 'MacPorts']
MACPORTS_POSTINSTALL_RESTART_REQUIRED = '''
MacPorts was installed successfully. However, you'll need to start a new shell
to pick up the environment changes so MacPorts can be found by your tools.
Please start a new shell or terminal window and run this bootstrapper again.
'''
class OSXBootstrapper(BaseBootstrapper):
def __init__(self, version):
BaseBootstrapper.__init__(self)
self.os_version = StrictVersion(version)
if self.os_version < StrictVersion('10.6'):
raise Exception('OS X 10.6 or above is required.')
self.minor_version = version.split('.')[1]
def install_system_packages(self):
self.ensure_xcode()
choice = self.ensure_package_manager()
self.package_manager = choice
getattr(self, 'ensure_%s_packages' % choice)()
def ensure_xcode(self):
if self.os_version < StrictVersion('10.7'):
if not os.path.exists('/Developer/Applications/Xcode.app'):
print(XCODE_REQUIRED_LEGACY)
subprocess.check_call(['open', XCODE_LEGACY])
sys.exit(1)
elif self.os_version >= StrictVersion('10.7'):
if not os.path.exists('/Applications/Xcode.app'):
print(XCODE_REQUIRED)
subprocess.check_call(['open', XCODE_APP_STORE])
print('Once the install has finished, please relaunch this script.')
sys.exit(1)
# Once Xcode is installed, you need to agree to the license before you can
# use it.
try:
output = self.check_output(['/usr/bin/xcrun', 'clang'],
stderr=subprocess.STDOUT)
except subprocess.CalledProcessError as e:
if 'license' in e.output:
xcodebuild = self.which('xcodebuild')
subprocess.check_call([xcodebuild, '-license'])
# Even then we're not done! We need to install the Xcode command line tools.
# As of Mountain Lion, apparently the only way to do this is to go through a
# menu dialog inside Xcode itself. We're not making this up.
if self.os_version >= StrictVersion('10.7'):
if not os.path.exists('/usr/bin/clang'):
print(XCODE_COMMAND_LINE_TOOLS_MISSING)
print(INSTALL_XCODE_COMMAND_LINE_TOOLS_STEPS)
sys.exit(1)
output = self.check_output(['/usr/bin/clang', '--version'])
match = RE_CLANG_VERSION.search(output)
if match is None:
raise Exception('Could not determine Clang version.')
version = StrictVersion(match.group(1))
if version < APPLE_CLANG_MINIMUM_VERSION:
print(UPGRADE_XCODE_COMMAND_LINE_TOOLS)
print(INSTALL_XCODE_COMMAND_LINE_TOOLS_STEPS)
sys.exit(1)
def ensure_homebrew_packages(self):
self.brew = self.which('brew')
assert self.brew is not None
installed = self.check_output([self.brew, 'list']).split()
packages = [
# We need to install Python because Mercurial requires the Python
# development headers which are missing from OS X (at least on
# 10.8).
('python', 'python'),
('mercurial', 'mercurial'),
('git', 'git'),
('yasm', 'yasm'),
('autoconf213', HOMEBREW_AUTOCONF213),
]
printed = False
for name, package in packages:
if name in installed:
continue
if not printed:
print(PACKAGE_MANAGER_PACKAGES % ('Homebrew',))
printed = True
subprocess.check_call([self.brew, '-v', 'install', package])
if self.os_version < StrictVersion('10.7') and 'llvm' not in installed:
print(PACKAGE_MANAGER_OLD_CLANG % ('Homebrew',))
subprocess.check_call([self.brew, '-v', 'install', 'llvm',
'--with-clang', '--all-targets'])
def ensure_macports_packages(self):
self.port = self.which('port')
assert self.port is not None
installed = set(self.check_output([self.port, 'installed']).split())
packages = ['python27',
'mercurial',
'yasm',
'libidl',
'autoconf213']
missing = [package for package in packages if package not in installed]
if missing:
print(PACKAGE_MANAGER_PACKAGES % ('MacPorts',))
self.run_as_root([self.port, '-v', 'install'] + missing)
if self.os_version < StrictVersion('10.7') and MACPORTS_CLANG_PACKAGE not in installed:
print(PACKAGE_MANAGER_OLD_CLANG % ('MacPorts',))
self.run_as_root([self.port, '-v', 'install', MACPORTS_CLANG_PACKAGE])
self.run_as_root([self.port, 'select', '--set', 'python', 'python27'])
self.run_as_root([self.port, 'select', '--set', 'clang', 'mp-' + MACPORTS_CLANG_PACKAGE])
def ensure_package_manager(self):
'''
Search package mgr in sys.path, if none is found, prompt the user to install one.
If only one is found, use that one. If both are found, prompt the user to choose
one.
'''
installed = []
for name, cmd in PACKAGE_MANAGER.iteritems():
if self.which(cmd) is not None:
installed.append(name)
if not installed:
print(NO_PACKAGE_MANAGER_WARNING)
choice = self.prompt_int(prompt=PACKAGE_MANAGER_CHOICE, low=1, high=2)
getattr(self, 'install_%s' % PACKAGE_MANAGER_CHOICES[choice - 1].lower())()
return PACKAGE_MANAGER_CHOICES[choice - 1].lower()
elif len(installed) == 1:
print(PACKAGE_MANAGER_EXISTS % (installed[0], installed[0]))
return installed[0].lower()
else:
print(MULTI_PACKAGE_MANAGER_EXISTS)
choice = self.prompt_int(prompt=PACKAGE_MANAGER_CHOICE, low=1, high=2)
return PACKAGE_MANAGER_CHOICES[choice - 1].lower()
def install_homebrew(self):
print(PACKAGE_MANAGER_INSTALL % ('Homebrew', 'Homebrew', 'Homebrew', 'brew'))
bootstrap = urlopen(url=HOMEBREW_BOOTSTRAP, timeout=20).read()
with tempfile.NamedTemporaryFile() as tf:
tf.write(bootstrap)
tf.flush()
subprocess.check_call(['ruby', tf.name])
def install_macports(self):
url = MACPORTS_URL.get(self.minor_version, None)
if not url:
raise Exception('We do not have a MacPorts install URL for your '
'OS X version. You will need to install MacPorts manually.')
print(PACKAGE_MANAGER_INSTALL % ('MacPorts', 'MacPorts', 'MacPorts', 'port'))
pkg = urlopen(url=url, timeout=300).read()
with tempfile.NamedTemporaryFile(suffix='.pkg') as tf:
tf.write(pkg)
tf.flush()
self.run_as_root(['installer', '-pkg', tf.name, '-target', '/'])
# MacPorts installs itself into a location likely not on the PATH. If
# we can't find it, prompt to restart.
if self.which('port') is None:
print(MACPORTS_POSTINSTALL_RESTART_REQUIRED)
sys.exit(1)
def _update_package_manager(self):
if self.package_manager == 'homebrew':
subprocess.check_call([self.brew, '-v', 'update'])
else:
assert self.package_manager == 'macports'
self.run_as_root([self.port, 'selfupdate'])
def _upgrade_package(self, package):
self._ensure_package_manager_updated()
if self.package_manager == 'homebrew':
subprocess.check_call([self.brew, '-v', 'upgrade', package])
else:
assert self.package_manager == 'macports'
self.run_as_root([self.port, 'upgrade', package])
def upgrade_mercurial(self, current):
self._upgrade_package('mercurial')
def upgrade_python(self, current):
if self.package_manager == 'homebrew':
self._upgrade_package('python')
else:
self._upgrade_package('python27')