diff options
author | W. Trevor King <wking@drexel.edu> | 2010-01-27 08:22:22 -0500 |
---|---|---|
committer | W. Trevor King <wking@drexel.edu> | 2010-01-27 08:22:22 -0500 |
commit | d2752cde56e7cf67abc2e7f0a0fc91612016585f (patch) | |
tree | 59ca62c69452b7a9a1e130d0d26ff2be4fe55e03 /README | |
parent | 2cc9755aef6a7b36bf1b32519b5997b5221f4e5a (diff) | |
download | bugseverywhere-d2752cde56e7cf67abc2e7f0a0fc91612016585f.tar.gz |
Encourage a run of `make` to build auto-generated files.
Fixes Ben's "unintuitive test procedure" bug:
Date: Wed, 27 Jan 2010 14:09:14 +1100
From: Ben Finney
Subject: [Be-devel] Re: Test suite on Trevor's development branch
...
> $ python ./test.py
> Traceback (most recent call last):
[...]
> ImportError: No module named _version
So it's not possible to simply get a copy of the branch and try running
the test suite.
...
Diffstat (limited to 'README')
-rw-r--r-- | README | 26 |
1 files changed, 25 insertions, 1 deletions
@@ -1,6 +1,7 @@ Bugs Everywhere =============== -This is Bugs Everywhere, a bugtracker built on distributed revision + +This is Bugs Everywhere (BE), a bugtracker built on distributed revision control. It works with Arch, Bazaar, Darcs, Git, and Mercurial at the moment, but is easily extensible. It can also function with no RCS at all. @@ -9,9 +10,32 @@ The idea is to package the bug information with the source code, so that bugs can be marked "fixed" in the branches that fix them. So, instead of numbers, bugs have globally unique ids. +Getting BE +========== + +BE is available as a bzr repository:: + + $ bzr branch http://bzr.bugseverywhere.org/be + +See the homepage_ for details. If you do branch the bzr repo, you'll +need to run:: + + $ make + +to build some auto-generated files (e.g. ``libbe/_version.py``), and:: + + $ make install + +to install BE. By default BE will install into your home directory, +but you can tweak the ``PREFIX`` variable in ``Makefile`` to install +to another location. + +.. _homepage: http://bugseverywhere.org/ + Getting started =============== + To get started, you must set the bugtracker root. Typically, you will want to set the bug root to your project root, so that Bugs Everywhere works in any part of your project tree. |