1
1
#! /usr/bin/env python
3
# Copyright (C) 2005, 2006, 2007, 2008, 2009, 2010 Canonical Ltd
3
# Copyright (C) 2005-2012 Canonical Ltd
5
5
# This program is free software; you can redistribute it and/or modify
6
6
# it under the terms of the GNU General Public License as published by
16
16
# along with this program; if not, write to the Free Software
17
17
# Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
19
from __future__ import absolute_import
19
21
"""Bazaar -- a free distributed version-control tool"""
25
27
# update this on each release
26
_script_version = (2, 2, 0)
29
print "bzr does not support python -OO."
32
version_info = sys.version_info
33
except AttributeError:
34
version_info = 1, 5 # 1.5 or older
36
REINVOKE = "__BZR_REINVOKE"
38
KNOWN_PYTHONS = ('python2.4', 'python2.5', 'python2.6')
40
if version_info < NEED_VERS:
41
if not os.environ.has_key(REINVOKE):
42
# mutating os.environ doesn't work in old Pythons
43
os.putenv(REINVOKE, "1")
44
for python in KNOWN_PYTHONS:
46
os.execvp(python, [python] + sys.argv)
28
_script_version = (2, 6, 0)
32
if sys.version_info < NEED_VERS:
49
33
sys.stderr.write("bzr: error: cannot find a suitable python interpreter\n")
50
34
sys.stderr.write(" (need %d.%d or later)\n" % NEED_VERS)
52
if hasattr(os, "unsetenv"):
57
39
if '--profile-imports' in sys.argv:
58
sys.argv.remove('--profile-imports')
59
40
import profile_imports
60
41
profile_imports.install()
63
if sys.platform == 'darwin':
64
# jameinel says this hack is to force python to honor the LANG setting,
65
# even on Darwin. Otherwise it is apparently hardcoded to Mac-Roman,
66
# which is incorrect for the normal Terminal.app which wants UTF-8.
68
# "It might be that I should be setting the "system locale" somewhere else
69
# on the system, rather than setting LANG=en_US.UTF-8 in .bashrc.
70
# Switching to 'posix' and setting LANG worked for me."
72
# So we can remove this if someone works out the right way to tell Mac
73
# Python which encoding to use. -- mbp 20080703
74
sys.platform = 'posix'
78
sys.platform = 'darwin'
45
if os.name == "posix":
48
locale.setlocale(locale.LC_ALL, '')
49
except locale.Error, e:
50
sys.stderr.write('bzr: warning: %s\n'
51
' bzr could not set the application locale.\n'
52
' Although this should be no problem for bzr itself, it might\n'
53
' cause problems with some plugins. To investigate the issue,\n'
54
' look at the output of the locale(1p) tool.\n' % e)
55
# Use better default than ascii with posix filesystems that deal in bytes
56
# natively even when the C locale or no locale at all is given. Note that
57
# we need an immortal string for the hack, hence the lack of a hyphen.
58
sys._bzr_default_fs_enc = "utf8"
83
61
# The python2.6 release includes some libraries that have deprecation warnings
94
locale.setlocale(locale.LC_ALL, '')
95
except locale.Error, e:
96
sys.stderr.write('bzr: warning: %s\n'
97
' bzr could not set the application locale.\n'
98
' Although this should be no problem for bzr itself,\n'
99
' it might cause problems with some plugins.\n'
100
' To investigate the issue, look at the output\n'
101
' of the locale(1p) tool available on POSIX systems.\n'
104
71
# instruct bzrlib/__init__.py to install lazy_regex
105
72
sys._bzr_lazy_regex = True
115
82
if bzrlib.version_info[:3] != _script_version:
116
sys.stderr.write("bzr: WARNING: bzrlib version doesn't match the bzr program.\n"
117
"This may indicate an installation problem.\n"
118
"bzrlib from %s is version %r\n"
119
% (bzrlib.__path__, bzrlib.version_info))
84
"bzr: WARNING: bzrlib version doesn't match the bzr program.\n"
85
"This may indicate an installation problem.\n"
86
"bzrlib is version %s from %s\n"
87
"bzr is version %s from %s\n" % (
88
bzrlib._format_version_tuple(bzrlib.version_info),
90
bzrlib._format_version_tuple(_script_version),
121
94
import bzrlib.inspect_for_copy
122
95
bzrlib.inspect_for_copy.import_copy_with_hacked_inspect()
140
113
if __name__ == '__main__':
142
exit_val = bzrlib.commands.main()
145
profile_imports.log_stack_info(sys.stderr)
114
library_state = bzrlib.initialize()
115
library_state.__enter__()
117
exit_val = bzrlib.commands.main()
119
profile_imports.log_stack_info(sys.stderr)
121
library_state.__exit__(None, None, None)
147
123
# By this point we really have completed everything we want to do, and
148
124
# there's no point doing any additional cleanup. Abruptly exiting here