commit 4238a42eda84aeb5f805b2d10dd231f651500f0a
Author: Clark Boylan <clark.boylan@gmail.com>
Date:   Thu Nov 15 10:11:44 2012 -0800

    Fix gerrit create-project option order.
    
    If the require change ID option was set the gerritlib create project
    method would put the require change ID option between --name and the new
    project's name. This failed to execute on Gerrit properly. Fix the
    ordering of the options so that --name is inserted with the project's
    name.
    
    Change-Id: I68ff45fe5815f228fcc707abfe6d0d6147f7dac1

 gerritlib/gerrit.py |    4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

commit f8e6f0325885eed76503ce7663574c7cdf98f1ef
Author: Monty Taylor <mordred@inaugust.com>
Date:   Tue Nov 13 08:32:35 2012 -0800

    Ignore versioninfo file.
    
    Change-Id: I502fab510495fa0421acdd61d3af662f9d8608a2

 .gitignore |    1 +
 1 file changed, 1 insertion(+)

commit 52a662521d577a51b2071ac1e2cd5867f54d0f5c
Author: Monty Taylor <mordred@inaugust.com>
Date:   Tue Nov 13 08:31:59 2012 -0800

    Add createGroup and require_change_id option.
    
    Change-Id: I221030431075485b1eafd8510b402fefa0d9517d

 gerritlib/gerrit.py |   15 +++++++++++++--
 1 file changed, 13 insertions(+), 2 deletions(-)

commit 93212a33bee03d0d6ac3244ded49bd91a6993369
Merge: 38749df f790603
Author: Jenkins <jenkins@review.openstack.org>
Date:   Sun Nov 11 02:55:30 2012 +0000

    Merge "Add create and list projects calls."

commit f79060343b2e5d71d6f630c802becd2e5190b139
Author: Monty Taylor <mordred@inaugust.com>
Date:   Thu Nov 1 15:38:27 2012 +0100

    Add create and list projects calls.
    
    Change-Id: Idc71411dfc63a074d828782d9afe2ff7d15534ac

 gerritlib/gerrit.py |   10 ++++++++++
 1 file changed, 10 insertions(+)

commit 38749dfb1e7d5e0ef3881f1ae2d2ee0ec763734b
Author: Clark Boylan <clark.boylan@gmail.com>
Date:   Fri Nov 9 13:38:21 2012 -0800

    Add Gerrit DB query method to gerritlib.
    
    Sometimes you need to query the Gerrit DB directly instead of using the
    Gerrit query abstraction layer. Add api method to communicate directly
    to the DB.
    
    Change-Id: I3ef3173cbe62741bb9d37f49abda1cf0eacbceff

 gerritlib/gerrit.py |   16 ++++++++++++++++
 1 file changed, 16 insertions(+)

commit 900136ec1e6f5c9085ea0e41382b0ad58153b7f2
Author: Erik Dalén <dalen@spotify.com>
Date:   Wed Oct 31 15:07:35 2012 -0400

    Supply port to GerritWatcher
    
    Fix if gerrit is running on non default port
    
    Change-Id: Ifdc29a106eb07cdf514811be3293cd97a5f80068

 gerritlib/gerrit.py |    1 +
 1 file changed, 1 insertion(+)

commit 15895e831e30cfee25fdb50ed085d115427c75a9
Author: James E. Blair <jeblair@hp.com>
Date:   Tue Jul 24 13:19:37 2012 -0700

    Fix description.
    
    Change-Id: I6f966a3c781b35eaeb019943c896e12633429ac3

 setup.py |    2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

commit 8557854d55c3c856b7167ec048d65454659da5a7
Merge: 3f74a19 86a69ed
Author: Jenkins <jenkins@review.openstack.org>
Date:   Thu Jul 19 16:35:59 2012 +0000

    Merge "Add Apache2 license file to the project."

commit 86a69ed1e50d10f516d00df16b0b1ec4c48af6ab
Author: Clark Boylan <clark.boylan@gmail.com>
Date:   Wed Jul 11 14:36:15 2012 -0700

    Add Apache2 license file to the project.
    
    Project had been missing the full text of the Apache2 license. Add
    this file.
    
    Change-Id: Icb33680459cde8596b73c5954a57a3a9cd1fda7d

 LICENSE |  202 +++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
 1 file changed, 202 insertions(+)

commit 3f74a198c87be706947163f0030cb2f4201ed41a
Author: Clark Boylan <clark.boylan@gmail.com>
Date:   Tue Jul 10 15:17:41 2012 -0700

    Add a project wide .gitignore.
    
    Add a .gitignore file to the project. Ignore: .pyc, build/*, and
    tox/venv stuff.
    
    Change-Id: I66ca2b023a555e520dd4f5f7e2a24a9624a934f2

 .gitignore |    3 +++
 1 file changed, 3 insertions(+)

commit eeeaadf66cc42a0a781b3fd8be8a987081a3273f
Author: Clark Boylan <clark.boylan@gmail.com>
Date:   Tue Jul 10 15:14:30 2012 -0700

    Add setup.py to project.
    
    Add a setup.py for the gerritlib project. This incorporates
    openstack.common.setup/version as well for versioning. This change
    also adds a tox.ini file and its lists of dependencies to gerritlib.
    This was not done in a separate commit as tox depends on setup.py and
    setup depends on tox for gate tests.
    
    Change-Id: I101471e836802b1c38796d8d3c570ce5f00c793e

 MANIFEST.in                           |    8 +
 gerrit.py                             |  161 ---------------
 gerritlib/gerrit.py                   |  161 +++++++++++++++
 gerritlib/openstack/common/setup.py   |  351 +++++++++++++++++++++++++++++++++
 gerritlib/openstack/common/version.py |  149 ++++++++++++++
 gerritlib/version.py                  |   20 ++
 openstack-common.conf                 |    7 +
 setup.cfg                             |   15 ++
 setup.py                              |   56 ++++++
 tools/pip-requires                    |    1 +
 tools/test-requires                   |   10 +
 tox.ini                               |   29 +++
 12 files changed, 807 insertions(+), 161 deletions(-)

commit 4da6ce52fd6443fa6e3208c1b063d1a16a77faac
Author: James E. Blair <jeblair@hp.com>
Date:   Mon Jul 9 15:17:04 2012 -0700

    Add gitreview

 .gitreview |    4 ++++
 1 file changed, 4 insertions(+)

commit 5909d0cc00199839819350c0575557efb2de7ea6
Author: James E. Blair <jeblair@hp.com>
Date:   Wed Jun 13 17:12:42 2012 -0700

    Add start actions.
    
    Add the ability to specify a report to gerrit on start.  This
    can be used to clear the verified column.
    
    Fixes bug #1012730.
    
    Change-Id: I8dd2a60c3a16a8fa0046675437c750948af99577

 gerrit.py |    5 +++--
 1 file changed, 3 insertions(+), 2 deletions(-)

commit a41dd7df9d786d2001477c2f2668fcc6c2ea72a7
Author: James E. Blair <jeblair@hp.com>
Date:   Tue Jun 5 14:03:18 2012 -0700

    Use paramiko for stream-events.
    
    The hope is that error detection/recovery will be more robust.
    
    Change-Id: I28d51a9d977943ba94c9674123de95a1ab742f05

 gerrit.py |   77 +++++++++++++++++++++++++------------------------------------
 1 file changed, 31 insertions(+), 46 deletions(-)

commit c2b38030d52375e7db39b5b53ea214895d7c9640
Author: James E. Blair <jeblair@hp.com>
Date:   Wed May 30 09:15:05 2012 -0700

    Remove stray print statements.
    
    Add tox.ini with pep8 section.
    
    Fix pep8 errors.
    
    Change-Id: I6c171104359b16bcb130fdd56697d0663d8ec562

 gerrit.py |   14 +++++++++-----
 1 file changed, 9 insertions(+), 5 deletions(-)

commit b8646dab67311d2133728b3c7784f233fd17620e
Author: James E. Blair <jeblair@hp.com>
Date:   Wed May 30 11:59:58 2012 -0700

    Fix logic error in reporting
    
    Change-Id: I0444353eb753387fd792605371ad25ffe0e8990e

 gerrit.py |    2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

commit 3303eb8382b910b424555fa2451bb3d1312cd9d5
Author: James E. Blair <jeblair@hp.com>
Date:   Tue May 29 14:49:32 2012 -0700

    Initial commit.

 gerrit.py |  171 +++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
 1 file changed, 171 insertions(+)