~bzr-pqm/bzr/bzr.dev

« back to all changes in this revision

Viewing changes to bzr

  • Committer: Erik Bågfors
  • Date: 2006-02-03 19:50:59 UTC
  • mto: (1185.50.77 bzr-jam-integration)
  • mto: This revision was merged to the branch mainline in revision 1554.
  • Revision ID: erik@bagfors.nu-20060203195059-1cf8ff5aa68de0ea
Support for plugins to register log formatters and set default formatter
Also, change one command line option for "log"

Show diffs side-by-side

added added

removed removed

Lines of Context:
15
15
# You should have received a copy of the GNU General Public License
16
16
# along with this program; if not, write to the Free Software
17
17
# Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA
18
 
 
 
18
"""Bazaar-NG -- a free distributed version-control tool"""
19
19
import os, sys
20
 
 
 
20
if __doc__ is None:
 
21
    print "bzr does not support python -OO."
 
22
    sys.exit(2)
21
23
try:
22
24
    version_info = sys.version_info
23
25
except AttributeError:
24
26
    version_info = 1, 5 # 1.5 or older
25
27
 
26
 
 
27
 
REINVOKE = "__BZR_REINVOKE"    
28
 
NEED_VERS = (2, 3)
 
28
REINVOKE = "__BZR_REINVOKE"
 
29
NEED_VERS = (2, 4)
 
30
KNOWN_PYTHONS = ('python2.4',)
29
31
 
30
32
if version_info < NEED_VERS:
31
33
    if not os.environ.has_key(REINVOKE):
32
34
        # mutating os.environ doesn't work in old Pythons
33
35
        os.putenv(REINVOKE, "1")
34
 
        for python in 'python2.4', 'python2.3':
 
36
        for python in KNOWN_PYTHONS:
35
37
            try:
36
38
                os.execvp(python, [python] + sys.argv)
37
39
            except OSError:
39
41
    print >>sys.stderr, "bzr: error: cannot find a suitable python interpreter"
40
42
    print >>sys.stderr, "  (need %d.%d or later)" % NEED_VERS
41
43
    sys.exit(1)
42
 
os.unsetenv(REINVOKE)
43
 
 
44
 
import bzrlib, bzrlib.commands
 
44
if hasattr(os, "unsetenv"):
 
45
    os.unsetenv(REINVOKE)
 
46
 
 
47
try:
 
48
    import bzrlib
 
49
    import bzrlib.commands
 
50
    import bzrlib.trace
 
51
except ImportError, e:
 
52
    sys.stderr.write("bzr: ERROR: "
 
53
                     "Couldn't import bzrlib and dependencies.\n"
 
54
                     "Please check bzrlib is on your PYTHONPATH.\n"
 
55
                     "\n")
 
56
    raise
 
57
 
 
58
if bzrlib.version_info[:3] != (0, 8, 0):
 
59
    sys.stderr.write("bzr: WARNING: bzrlib version doesn't match the bzr program.\n"
 
60
            "This may indicate an installation problem.\n"
 
61
            "bzrlib from %s is version %r\n"
 
62
            % (bzrlib.__path__, bzrlib.version_info))
45
63
 
46
64
if __name__ == '__main__':
 
65
    bzrlib.trace.enable_default_logging()
47
66
    sys.exit(bzrlib.commands.main(sys.argv))
 
67
else:
 
68
    pass    # should this give an error? - it can't be used as a lib