~jelmer/brz/print-warnings

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
47
48
49
50
51
52
53
54
55
56
57
58
59
Breezy install instructions
***************************

Dependencies
------------

Breezy requires Python 2.7 or newer, or Python 3.4 or newer.

It also requires the `configobj` Python module to be installed. It can be
installed either from your operating system's package manager, using pip
or by downloading it from:

  https://github.com/DiffSK/configobj

Optional dependencies
~~~~~~~~~~~~~~~~~~~~~

If you wish to access branches over sftp, you will need paramiko and
pycrypto:

  http://www.lag.net/paramiko/

To PGP sign commits and verify PGP signatures on commits, install
python-gpg.

brz can optionally use compiled versions of some parts of the code
for increased speed. When installing brz you need the ability to
build C extensions. Some GNU/Linux distributions package the necessary
headers separately from the main Python package. This package is
probably named something like python-dev or python-devel. FreeBSD,
Windows, source-based GNU/Linux distributions, and possibly other operating
systems, have the required files installed by default.

If you are installing brz from a brz branch rather than a release tarball,
then you should also have the Cython package installed. This is not necessary
for release tarballs as they already contain the C files that Cython is needed
to create.

  http://www.cython.org/

Installation
------------

When upgrading using setup.py, it is recommended that you first delete the
bzrlib directory from the install target.

To install brz as a user, run

  python setup.py install --home ~ 

To install system-wide, run (as root)

  python setup.py install

For more information on installation, see
<http://wiki.bazaar.canonical.com/InstallationFaq> for the Bazaar installation FAQ
(that also applies to Breezy)
or write to bazaar@lists.canonical.com mentioning you use Breezy, or ask a
question at <https://answers.launchpad.net/brz/>.