~bzr-pqm/bzr/bzr.dev

« back to all changes in this revision

Viewing changes to bzr

  • Committer: Canonical.com Patch Queue Manager
  • Date: 2010-02-17 08:59:19 UTC
  • mfrom: (5037.2.1 doc)
  • Revision ID: pqm@pqm.ubuntu.com-20100217085919-23vc62bvq8848q65
(mbp) rest markup fixes

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
1
#! /usr/bin/env python
2
2
 
3
 
# Copyright (C) 2005-2013, 2016, 2017 Canonical Ltd
 
3
# Copyright (C) 2005, 2006, 2007, 2008, 2009, 2010 Canonical Ltd
4
4
#
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
18
18
 
19
 
from __future__ import absolute_import
20
 
 
21
19
"""Bazaar -- a free distributed version-control tool"""
22
20
 
23
21
import os
25
23
import warnings
26
24
 
27
25
# update this on each release
28
 
_script_version = (2, 8, 0)
29
 
 
30
 
NEED_VERS = (2, 6)
31
 
 
32
 
if sys.version_info < NEED_VERS:
 
26
_script_version = (2, 2, 0)
 
27
 
 
28
if __doc__ is None:
 
29
    print "bzr does not support python -OO."
 
30
    sys.exit(2)
 
31
try:
 
32
    version_info = sys.version_info
 
33
except AttributeError:
 
34
    version_info = 1, 5 # 1.5 or older
 
35
 
 
36
REINVOKE = "__BZR_REINVOKE"
 
37
NEED_VERS = (2, 4)
 
38
KNOWN_PYTHONS = ('python2.4', 'python2.5', 'python2.6')
 
39
 
 
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:
 
45
            try:
 
46
                os.execvp(python, [python] + sys.argv)
 
47
            except OSError:
 
48
                pass
33
49
    sys.stderr.write("bzr: error: cannot find a suitable python interpreter\n")
34
50
    sys.stderr.write("  (need %d.%d or later)\n" % NEED_VERS)
35
51
    sys.exit(1)
 
52
if hasattr(os, "unsetenv"):
 
53
    os.unsetenv(REINVOKE)
36
54
 
37
55
 
38
56
profiling = False
39
57
if '--profile-imports' in sys.argv:
 
58
    sys.argv.remove('--profile-imports')
40
59
    import profile_imports
41
60
    profile_imports.install()
42
61
    profiling = True
43
62
 
44
 
 
45
 
if os.name == "posix":
 
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.
 
67
    #
 
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."
 
71
    #
 
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'
 
75
    try:
 
76
        import locale
 
77
    finally:
 
78
        sys.platform = 'darwin'
 
79
else:
46
80
    import locale
47
 
    try:
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"
59
81
 
60
82
 
61
83
# The python2.6 release includes some libraries that have deprecation warnings
68
90
    )
69
91
 
70
92
 
 
93
try:
 
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'
 
102
                     % e)
 
103
 
71
104
# instruct bzrlib/__init__.py to install lazy_regex
72
105
sys._bzr_lazy_regex = True
73
106
try:
80
113
    raise
81
114
 
82
115
if bzrlib.version_info[:3] != _script_version:
83
 
    sys.stderr.write(
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),
89
 
        bzrlib.__path__[0],
90
 
        bzrlib._format_version_tuple(_script_version),
91
 
        __file__))
92
 
 
 
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))
93
120
 
94
121
import bzrlib.inspect_for_copy
95
122
bzrlib.inspect_for_copy.import_copy_with_hacked_inspect()
111
138
 
112
139
 
113
140
if __name__ == '__main__':
114
 
    library_state = bzrlib.initialize()
115
 
    library_state.__enter__()
116
 
    try:
117
 
        exit_val = bzrlib.commands.main()
118
 
        if profiling:
119
 
            profile_imports.log_stack_info(sys.stderr)
120
 
    finally:
121
 
        library_state.__exit__(None, None, None)
 
141
    bzrlib.initialize()
 
142
    exit_val = bzrlib.commands.main()
 
143
 
 
144
    if profiling:
 
145
        profile_imports.log_stack_info(sys.stderr)
122
146
 
123
147
    # By this point we really have completed everything we want to do, and
124
148
    # there's no point doing any additional cleanup.  Abruptly exiting here