summaryrefslogtreecommitdiffstats
path: root/TOOLS
diff options
context:
space:
mode:
authorThomas Weißschuh <thomas@t-8ch.de>2023-01-05 23:28:16 +0000
committerDudemanguy <random342@airmail.cc>2023-01-08 01:55:40 +0000
commit8a0fa62b5845fb512c2608580da65564270da1ce (patch)
treef89d1c84b41d6fa07b09ff640f288ff247c6cac4 /TOOLS
parentc8a90001f237b8b0393638c7846000d0c3ee93b8 (diff)
downloadmpv-8a0fa62b5845fb512c2608580da65564270da1ce.tar.bz2
mpv-8a0fa62b5845fb512c2608580da65564270da1ce.tar.xz
meson: dynamically compute dependencies for manpage and html build
This allows us to rebuild the manpages and html documentation only when necessary. It is not necessary to manually keep the list of dependencies up to date. Unfortunately rst2pdf does not yet support this feature, see https://github.com/rst2pdf/rst2pdf/issues/1108
Diffstat (limited to 'TOOLS')
-rw-r--r--TOOLS/docutils-wrapper.py56
1 files changed, 56 insertions, 0 deletions
diff --git a/TOOLS/docutils-wrapper.py b/TOOLS/docutils-wrapper.py
new file mode 100644
index 0000000000..9d6304fc45
--- /dev/null
+++ b/TOOLS/docutils-wrapper.py
@@ -0,0 +1,56 @@
+#!/usr/bin/env python3
+"""
+Wrapper around docutils rst2x commands,
+converting their dependency files to a format understood by meson/ninja.
+"""
+
+#
+# This file is part of mpv.
+#
+# mpv is free software; you can redistribute it and/or
+# modify it under the terms of the GNU Lesser General Public
+# License as published by the Free Software Foundation; either
+# version 2.1 of the License, or (at your option) any later version.
+#
+# mpv is distributed in the hope that it will be useful,
+# but WITHOUT ANY WARRANTY; without even the implied warranty of
+# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
+# GNU Lesser General Public License for more details.
+#
+# You should have received a copy of the GNU Lesser General Public
+# License along with mpv. If not, see <http://www.gnu.org/licenses/>.
+#
+
+import os
+import subprocess
+import sys
+
+
+def convert_depfile(output, depfile):
+ with open(depfile, 'r') as f:
+ deps = f.readlines()
+
+ with open(depfile, 'w') as f:
+ f.write(os.path.abspath(output))
+ f.write(': \\\n')
+ for dep in deps:
+ dep = dep[:-1]
+ f.write('\t')
+ f.write(os.path.abspath(dep))
+ f.write(' \\\n')
+
+argv = sys.argv[1:]
+
+depfile = None
+output = argv[-1]
+
+for opt, optarg in zip(argv, argv[1:]):
+ if opt == '--record-dependencies':
+ depfile = optarg
+
+try:
+ subprocess.run(argv)
+ convert_depfile(output, depfile)
+except:
+ os.remove(output)
+ os.remove(depfile)