~bzr-pqm/bzr/bzr.dev

« back to all changes in this revision

Viewing changes to bzr

  • Committer: Robert Collins
  • Date: 2006-01-05 22:30:59 UTC
  • mto: (1534.1.4 integration)
  • mto: This revision was merged to the branch mainline in revision 1536.
  • Revision ID: robertc@robertcollins.net-20060105223059-a8b64f7b47cf12fb
 * bzrlib.osutils.safe_unicode now exists to provide parameter coercion
   for functions that need unicode strings. (Robert Collins)

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
REINVOKE = "__BZR_REINVOKE"
28
29
NEED_VERS = (2, 4)
29
30
KNOWN_PYTHONS = ('python2.4',)
30
31
 
40
41
    print >>sys.stderr, "bzr: error: cannot find a suitable python interpreter"
41
42
    print >>sys.stderr, "  (need %d.%d or later)" % NEED_VERS
42
43
    sys.exit(1)
43
 
os.unsetenv(REINVOKE)
44
 
 
45
 
import bzrlib
46
 
import bzrlib.commands
47
 
import bzrlib.trace
 
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, 7, 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))
48
63
 
49
64
if __name__ == '__main__':
50
65
    bzrlib.trace.enable_default_logging()
51
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