~abentley/bzrtools/bzrtools.dev

« back to all changes in this revision

Viewing changes to INSTALL

  • Committer: Aaron Bentley
  • Date: 2005-05-13 21:09:37 UTC
  • Revision ID: abentley@troll-20050513210937-e08341a7a2795e6b
Got tree check working with new API

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
 
How to install bzrtools:
2
 
All the tools are plugins, so you can install them in your plugins directory.
3
 
IT IS IMPORTANT TO MOVE/COPY THE BZRTOOLS DIRECTORY, NOT ITS CONTENTS.
4
 
 
5
 
$ mv ~/bzrtools ~/.bazaar/plugins/
6
 
You may have to create the plugins directory first.
7
 
 
8
 
Alternatively, you can install them at the system-wide plugin location:
9
 
$ sudo python2.4 setup.py install
10
 
 
11
 
You can test whether they are successfully installed by doing 
12
 
"bzr clean-tree -h"
13
 
 
14
 
Optional Dependencies:
15
 
rsync          - used by rspush
16
 
diff           - used by shelve and unshelve
17
 
patch          - used by shelve, unshelve and patch
18
 
baz and pybaz  - used by baz-import
19
 
testresources  - used by the baz-import test suite
20
 
 
21
 
Getting 
22
 
If you want to use baz-import, stick a pybaz symlink in the bzrtools tree:
 
1
How to install bzrtools
 
2
 
 
3
An easier install method will come.  For now...
 
4
 
 
5
If you don't want to use baz2bzr, you can skip to step 3
 
6
 
 
7
1. Get a copy of my bzr devel tree:
 
8
$ baz register-archive http://push.sourcecontrol.net/~abentley/archives/baz/
 
9
$ baz get aaron.bentley@utoronto.ca--baz/bazaar-ng--0 bzr
 
10
(Use this in step 3)
 
11
 
 
12
2. If you want to use baz2bzr, stick a pybaz symlink in the bzrtools tree:
23
13
$ baz register-archive http://ddaa.net/arch/2004
24
14
$ baz get ddaa@ddaa.net--2004/pybaz--devo--0 pybaz
25
 
$ cd ~/bzrbzrtools/external
 
15
$ cd bzrtools
26
16
$ ln -s ../pybaz/pybaz
27
17
 
28
 
If you want to test your install:
29
 
/path/to/bzrtools/test.py [/path/to/bzr]
 
18
3. In the bzrtools directory, create a symlink to the bzrlib directory
 
19
(e.g. ln -s ../bzr/bzrlib)
30
20
 
31
 
To perform a complete baz-import test, you'll also need testresources:
32
 
$ cd ~/bzrtools/external
33
 
$ bzr get http://www.robertcollins.net/unittest/testresources/
 
21
4. Create a symlink to the scripts in your path
 
22
(e.g. cd ~/bin; ln -s ~/bzr-pull)