~bzr-pqm/bzr/bzr.dev

« back to all changes in this revision

Viewing changes to bzr

  • Committer: Patch Queue Manager
  • Date: 2012-03-16 14:15:06 UTC
  • mfrom: (6503.3.1 typo-fix)
  • Revision ID: pqm@pqm.ubuntu.com-20120316141506-30gdc3wkbgmwkdus
(jelmer) Fix a typo: extention -> extension. (Jelmer Vernooij)

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
1
#! /usr/bin/env python
2
2
 
3
 
# Copyright (C) 2005, 2006, 2007, 2008, 2009, 2010 Canonical Ltd
 
3
# Copyright (C) 2005-2012 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
 
19
21
"""Bazaar -- a free distributed version-control tool"""
20
22
 
21
23
import os
23
25
import warnings
24
26
 
25
27
# update this on each release
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
 
28
_script_version = (2, 6, 0)
 
29
 
 
30
NEED_VERS = (2, 6)
 
31
 
 
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)
51
35
    sys.exit(1)
52
 
if hasattr(os, "unsetenv"):
53
 
    os.unsetenv(REINVOKE)
54
36
 
55
37
 
56
38
profiling = False
57
39
if '--profile-imports' in sys.argv:
58
 
    sys.argv.remove('--profile-imports')
59
40
    import profile_imports
60
41
    profile_imports.install()
61
42
    profiling = True
62
43
 
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:
 
44
 
 
45
if os.name == "posix":
80
46
    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"
81
59
 
82
60
 
83
61
# The python2.6 release includes some libraries that have deprecation warnings
90
68
    )
91
69
 
92
70
 
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
 
 
104
71
# instruct bzrlib/__init__.py to install lazy_regex
105
72
sys._bzr_lazy_regex = True
106
73
try:
113
80
    raise
114
81
 
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))
 
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
 
120
93
 
121
94
import bzrlib.inspect_for_copy
122
95
bzrlib.inspect_for_copy.import_copy_with_hacked_inspect()
138
111
 
139
112
 
140
113
if __name__ == '__main__':
141
 
    bzrlib.initialize()
142
 
    exit_val = bzrlib.commands.main()
143
 
 
144
 
    if profiling:
145
 
        profile_imports.log_stack_info(sys.stderr)
 
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)
146
122
 
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