commit f6f3717328f612b012daad08245ec8b391de0279
Author: Monty Taylor <mordred@inaugust.com>
Date:   Fri Jul 13 17:05:36 2012 -0500

    Fix build failures.
    
    pep8 violation in tests
    doc build failure due to lack of docs
    
    Change-Id: I0d7b38f32d06aed8c04708908df31650b60b74f2

 doc/source/conf.py         |   60 ++++++++++++++++++
 doc/source/index.rst       |  147 ++++++++++++++++++++++++++++++++++++++++++++
 pbr/tests/test_requires.py |    4 +-
 3 files changed, 209 insertions(+), 2 deletions(-)

commit 1f58ca481f0ab812e7f41990e439f960e338c122
Author: Monty Taylor <mordred@inaugust.com>
Date:   Thu Jul 12 13:29:39 2012 -0500

    Initial commit of PBR.
    
    PBR is a library to automatically do a bunch of standard things you want
    in your setup.py without you having to repeat them every time. It will
    set versions, process requirements files and generate AUTHORS and
    ChangeLog file all from git information.

 .coveragerc                |    6 ++
 .gitignore                 |   22 ++++++
 .gitreview                 |    4 +
 MANIFEST.in                |    6 ++
 README.rst                 |  138 +++++++++++++++++++++++++++++++++++
 pbr/__init__.py            |   20 +++++
 pbr/cmdclass.py            |  163 +++++++++++++++++++++++++++++++++++++++++
 pbr/requires.py            |   95 ++++++++++++++++++++++++
 pbr/setup.py               |  134 ++++++++++++++++++++++++++++++++++
 pbr/tests/test_requires.py |   58 +++++++++++++++
 pbr/util.py                |   29 ++++++++
 pbr/version.py             |  173 ++++++++++++++++++++++++++++++++++++++++++++
 setup.cfg                  |   16 ++++
 setup.py                   |   47 ++++++++++++
 tools/pip-requires         |    1 +
 tools/test-requires        |    9 +++
 tox.ini                    |   28 +++++++
 17 files changed, 949 insertions(+)