From: Erik Faye-Lund Date: Tue, 30 Jun 2020 09:05:42 +0000 (+0200) Subject: gallium/docs: update to recent sphinx X-Git-Url: https://git.libre-soc.org/?p=mesa.git;a=commitdiff_plain;h=7f5061c0b78631e76e4086daf89d45f07782aabf gallium/docs: update to recent sphinx add_description_unit has been deprectated for a really long time, and was finally removed (seemingly in Sphinx 2.0, but this doesn't seem to be properly documented anywhere I can find), so we shouldn't be using this any more. Anyway, let's update the code. Acked-by: Alyssa Rosenzweig Acked-by: Eric Engestrom Part-of: --- diff --git a/src/gallium/docs/source/exts/formatting.py b/src/gallium/docs/source/exts/formatting.py index 14865f36033..bc50c98051c 100644 --- a/src/gallium/docs/source/exts/formatting.py +++ b/src/gallium/docs/source/exts/formatting.py @@ -25,7 +25,7 @@ def parse_opcode(env, sig, signode): return opcode def setup(app): - app.add_description_unit("envvar", "envvar", "%s (environment variable)", + app.add_object_type("envvar", "envvar", "%s (environment variable)", parse_envvar) - app.add_description_unit("opcode", "opcode", "%s (TGSI opcode)", + app.add_object_type("opcode", "opcode", "%s (TGSI opcode)", parse_opcode)