1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
|
***********************************
Release notes for Bazaar-NG (pre-0)
***********************************
mbp@sourcefrog.net, March 2005, Canberra
Caveats
-------
* There is little locking or transaction control here; if you
interrupt it the tree may be arbitrarily broken. This will be
fixed.
* Don't use this for critical data; at the very least keep separate
regular snapshots of your tree.
Dependencies
------------
This is mostly developed on Linux (Ubuntu); it should work on Unix,
Windows, or OS X with relatively little trouble.
bzr requires a fairly recent Python, say after 2.2. 2.4 is recommended.
You must install either cElementTree_ or ElementTree_ first.
.. _cElementTree: http://effbot.org/zone/celementtree.htm
.. _ElementTree: http://effbot.org/zone/element-index.htm
Installation
------------
bzr has a standard python ``setup.py`` script.
To install it system-wide::
# python ./setup.py install
Alternatively you can simply put the source directory on $PYTHONPATH
and $PATH.
|