RETIRED, Utilities for projects using pbr
Go to file
David Shrewsbury ed9b3f98d2 Handle no arguments
Running 'pbrx' with no arguments is a thing folks may do. We shouldn't
throw exceptions at them in this case, but, instead, some help text.

Change-Id: Ibed0da165f062125cf298e2d9b3dce54c4b93420
2018-07-11 12:57:30 -04:00
doc/source Add install-siblings command 2018-04-21 16:07:14 +02:00
pbrx Handle no arguments 2018-07-11 12:57:30 -04:00
releasenotes Rename build-containers to build-images 2018-07-08 17:41:16 -04:00
tools Add install-siblings command 2018-04-21 16:07:14 +02:00
.coveragerc Initial Cookiecutter Commit 2018-04-04 16:58:36 -05:00
.gitignore Initial Cookiecutter Commit 2018-04-04 16:58:36 -05:00
.gitreview Initial Cookiecutter Commit 2018-04-04 16:58:36 -05:00
.mailmap Initial Cookiecutter Commit 2018-04-04 16:58:36 -05:00
.stestr.conf Initial Cookiecutter Commit 2018-04-04 16:58:36 -05:00
.zuul.yaml Remove python2 2018-07-10 16:27:11 -05:00
CONTRIBUTING.rst Initial Cookiecutter Commit 2018-04-04 16:58:36 -05:00
HACKING.rst Initial Cookiecutter Commit 2018-04-04 16:58:36 -05:00
LICENSE Initial Cookiecutter Commit 2018-04-04 16:58:36 -05:00
README.rst Add install-siblings command 2018-04-21 16:07:14 +02:00
babel.cfg Initial Cookiecutter Commit 2018-04-04 16:58:36 -05:00
requirements.txt Add support for building container images from pbr source 2018-04-27 16:17:33 -05:00
setup.cfg Remove python2 2018-07-10 16:27:11 -05:00
setup.py Initial Cookiecutter Commit 2018-04-04 16:58:36 -05:00
test-requirements.txt Initial Cookiecutter Commit 2018-04-04 16:58:36 -05:00
tox.ini Remove python2 2018-07-10 16:27:11 -05:00

README.rst

pbrx

Utilities for projects using pbr.

pbr is very opinionated about how things should be done. As a result, there are a set of actions that become easy to deal with generically for any pbr based project. pbrx is a collection of utilities that contain support for such actions.

Note

Each of the utilities has a primary focus of working for projects using pbr. However, some of them will also work just fine for non-pbr-based projects. When that is the case, the utility will be marked appropriately.

Features

Each utility is implemented as a subcommand on the pbrx command.

install-siblings

Updates an installation with local from-source versions of dependencies. For any dependency that the normal installation installed from pip/PyPI, install-siblings will look for an adjacent git repository that provides the same package. If one exists, the source version will be installed to replace the released version. This is done in such a way that any given constraints will be honored and not get messed up by transitive depends.