diff options
author | Tristan Van Berkom <tristan.vanberkom@codethink.co.uk> | 2017-05-03 19:23:26 +0900 |
---|---|---|
committer | Tristan Van Berkom <tristan.vanberkom@codethink.co.uk> | 2017-05-03 19:23:26 +0900 |
commit | 640a734ec1db923b5a0025acdd0a1e8e031a013b (patch) | |
tree | 90bee641207b0bd2905cddeabb4e58036685c81c /HACKING.rst | |
parent | bcd88c9cfbec6c9fa6702d00eb291dd1bec255b2 (diff) | |
download | buildstream-640a734ec1db923b5a0025acdd0a1e8e031a013b.tar.gz |
HACKING.rst: Added some additional notes about generating documentation and man pages
Diffstat (limited to 'HACKING.rst')
-rw-r--r-- | HACKING.rst | 41 |
1 files changed, 40 insertions, 1 deletions
diff --git a/HACKING.rst b/HACKING.rst index c6a350eed..022d8a5fa 100644 --- a/HACKING.rst +++ b/HACKING.rst @@ -115,7 +115,25 @@ Useful links: Building Docs ~~~~~~~~~~~~~ -To build the current set of docs, just:: +The documentation build is not integrated into the ``setup.py`` and is +difficult (or impossible) to do so, so there is a little bit of setup +you need to take care of first. + +Before you can build the BuildStream documentation yourself, you need +to first install ``sphinx`` and ``sphinx-click``, using pip or some +other mechanism:: + + pip install --user sphinx + pip install --user sphinx-click + +Furthermore, the documentation build requires that BuildStream itself +be installed first, this can be a developer installation as described +at the top of this text:: + + cd buildstream + pip install --user -e . + +Finally, to build the current set of docs, just run the following:: cd doc make @@ -123,6 +141,27 @@ To build the current set of docs, just:: This will give you a build/html directory with the html docs. +Man Pages +~~~~~~~~~ +Unfortunately it is quite difficult to integrate the man pages build +into the ``setup.py``, as such, whenever the frontend command line +interface changes, the static man pages should be regenerated and +committed with that. + +To do this, first ensure you have ``click_man`` installed, possibly +with:: + + pip install --user click_man + +Then, in the toplevel directory of buildstream, run the following:: + + python3 setup.py --command-packages=click_man.commands man_pages + +And commit the result, ensuring that you have added anything in +the ``man/`` subdirectory, which will be automatically included +in the buildstream distribution. + + Documenting Conventions ~~~~~~~~~~~~~~~~~~~~~~~ When adding a new class to the buildstream core, an entry referring to |