[all-commits] [llvm/llvm-project] bab121: [lldb][docs] Use sphinx instead of epydoc to gener...

Raphael Isemann via All-commits all-commits at lists.llvm.org
Fri Jan 15 04:27:18 PST 2021


  Branch: refs/heads/main
  Home:   https://github.com/llvm/llvm-project
  Commit: bab121a1b66e85390cad019ec921febcba35519d
      https://github.com/llvm/llvm-project/commit/bab121a1b66e85390cad019ec921febcba35519d
  Author: Raphael Isemann <teemperor at gmail.com>
  Date:   2021-01-15 (Fri, 15 Jan 2021)

  Changed paths:
    M .gitignore
    M lldb/docs/CMakeLists.txt
    A lldb/docs/_lldb/__init__.py
    M lldb/docs/conf.py
    M lldb/docs/index.rst
    A lldb/docs/python_api.rst
    M llvm/cmake/modules/AddSphinxTarget.cmake

  Log Message:
  -----------
  [lldb][docs] Use sphinx instead of epydoc to generate LLDB's Python reference

Currently LLDB uses epydoc to generate the Python API reference for the website.
epydoc however is unmaintained since more than a decade and no longer works with
Python 3. Also whatever setup we had once for generating the documentation on
the website server no longer seems to work, so the current website documentation
has been stale since more than a year.

This patch replaces epydoc with sphinx and its automodapi plugin that can
generate Python API references. LLVM already uses sphinx for the rest of the
documentation, so this way we are more consistent with the rest of LLVM. The
only new dependency is the automodapi plugin for sphinx.

This patch effectively does the following things:
* Remove the epydoc code.
* Make a new dummy Python API page in our website that just calls the Sphinx
  command for generated the API documentation.
* Add a mock _lldb module that is only used when generating the Python API.
 This way we don't have to build all of LLDB to generate the API reference.

Some notes:
* The long list of skips is necessary due to boilerplate functions that SWIG
  is generating. Sadly automodapi is not really scriptable from what I can see,
  so we have to blacklist this stuff manually.
* The .gitignore change because automodapi wants a subfolder of our
  documentation directory to place generated documentation files there. The path
  is also what is used on the website, so we can't really workaround this
  (without copying the whole `docs` dir somewhere else when we build).
* We have to use environment variables to pass our build path to our sphinx
  configuration. Sphinx doesn't support passing variables onto that script.

Reviewed By: JDevlieghere

Differential Revision: https://reviews.llvm.org/D94489




More information about the All-commits mailing list