X-Git-Url: https://gerrit.linuxfoundation.org/infra/gitweb?a=blobdiff_plain;f=docs%2Fconf.py;h=c8325f7c44a98ccf69764a818d3fba8c968ca5ba;hb=0ff7cbacb76c80c8e2222d6d5917de5119c0d8fd;hp=d5decd537bc2f718d85d324649db233a2630a35b;hpb=dfd0ba35507b0bd3deeec5309c224970bd968a64;p=releng%2Fglobal-jjb.git diff --git a/docs/conf.py b/docs/conf.py index d5decd53..c8325f7c 100644 --- a/docs/conf.py +++ b/docs/conf.py @@ -18,10 +18,24 @@ # documentation root, use os.path.abspath to make it absolute, like shown here. # import os +import subprocess import sys import sphinx_bootstrap_theme + sys.path.insert(0, os.path.abspath('..')) + +def format_version(version): + fmt = '{tag}.dev{commitcount}+{gitsha}' + parts = version.split('-') + assert len(parts) in (3, 4) + dirty = len(parts) == 4 + tag, count, sha = parts[:3] + if count == '0' and not dirty: + return tag + return fmt.format(tag=tag, commitcount=count, gitsha=sha.lstrip('g')) + + # -- General configuration ------------------------------------------------ # If your documentation needs a minimal Sphinx version, state it here. @@ -32,6 +46,7 @@ sys.path.insert(0, os.path.abspath('..')) # extensions coming with Sphinx (named 'sphinx.ext.*') or your custom # ones. extensions = [ + 'reno.sphinxext', 'sphinx.ext.autodoc', 'sphinx.ext.doctest', 'sphinx.ext.intersphinx', @@ -59,7 +74,7 @@ master_doc = 'index' # General information about the project. project = 'lf-releng-global-jjb' -copyright = '2017, The Linux Foundation' +copyright = '2019, The Linux Foundation' author = 'Linux Foundation Releng' # The version info for the project you're documenting, acts as replacement for @@ -67,7 +82,13 @@ author = 'Linux Foundation Releng' # built documents. # # The short X.Y version. -version = '0.21.0-dev' +command = 'git describe --tags --long --dirty' +try: + git_version = format_version( + subprocess.check_output(command.split()).decode('utf-8').strip()) +except subprocess.CalledProcessError: # Handle docs builds from tarball + git_version = "v0.0.9999-local" +version = git_version # The full version, including alpha/beta/rc tags. release = version @@ -255,7 +276,8 @@ htmlhelp_basename = 'LinuxFoundationReleaseEngineeringGJJBdoc' # Example configuration for intersphinx: refer to the Python standard library. intersphinx_mapping = { - 'jjb': ('https://docs.openstack.org/infra/jenkins-job-builder/', None), + 'jjb': ('https://jenkins-job-builder.readthedocs.io/en/latest/', None), + 'lfdocs': ('http://docs.releng.linuxfoundation.org/en/latest/', None), 'lftools': ('http://lftools.releng.linuxfoundation.org/en/latest/', None), 'python': ('https://docs.python.org/', None), }