mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2025-02-12 09:15:29 +00:00
With this patch, configure time is identical no matter whether doc is enabled or not. The configuration files also now contain explicitly-listed sources with no wildcards. For the four libraries where hotdoc needs to use clang to generate the documentation (as opposed to the rest of the libraries where hotdoc uses the gir), the script will call pkg-config to determine the appropriate C flags. This means a side effect of this patch is that pkg-config files are now generated for the gstadaptivedemux and gstopencv libraries. Part-of: <https://gitlab.freedesktop.org/gstreamer/gstreamer/-/merge_requests/8312>
66 lines
2 KiB
Python
Executable file
66 lines
2 KiB
Python
Executable file
#!/usr/bin/env python3
|
|
import os
|
|
import sys
|
|
from argparse import ArgumentParser
|
|
from pathlib import Path as P
|
|
import json
|
|
|
|
if __name__ == "__main__":
|
|
parser = ArgumentParser()
|
|
parser.add_argument('--input-sitemap', type=P)
|
|
parser.add_argument('--output-sitemap', type=P)
|
|
parser.add_argument('--markdown-index', type=P)
|
|
parser.add_argument('--libs', type=str)
|
|
parser.add_argument('--plugins', type=str)
|
|
parser.add_argument('--plugin-configs', nargs='*', default=[])
|
|
parser.add_argument('--lib-configs', nargs='*', default=[])
|
|
|
|
args = parser.parse_args()
|
|
|
|
in_ = args.input_sitemap
|
|
out = args.output_sitemap
|
|
index_md = args.markdown_index
|
|
plugins = args.plugins
|
|
plugin_configs = args.plugin_configs
|
|
lib_configs = args.lib_configs
|
|
|
|
with open(in_) as f:
|
|
index = f.read()
|
|
index = '\n'.join(line for line in index.splitlines())
|
|
|
|
if args.libs is None:
|
|
libs = []
|
|
else:
|
|
libs = args.libs.split(os.pathsep)
|
|
for config in lib_configs:
|
|
with open(config) as f:
|
|
libs += json.load(f)
|
|
plugins = plugins.replace('\n', '').split(os.pathsep)
|
|
for config in plugin_configs:
|
|
with open(config) as f:
|
|
plugins += json.load(f)
|
|
plugins = sorted(plugins, key=lambda x: os.path.basename(x))
|
|
|
|
if libs:
|
|
index += '\n\tlibs.md'
|
|
for lib in libs:
|
|
if not lib:
|
|
continue
|
|
name = lib
|
|
if not name.endswith('.json'):
|
|
name += '.json'
|
|
index += "\n\t\t" + name
|
|
if plugins:
|
|
index += '\n\tgst-index'
|
|
for plugin in plugins:
|
|
if not plugin:
|
|
continue
|
|
fname = plugin
|
|
if not fname.endswith('.json'):
|
|
fname += '.json'
|
|
index += "\n\t\t" + fname
|
|
|
|
index = '%s\n%s' % (index_md, index)
|
|
|
|
with open(out, 'w') as fw:
|
|
fw.write(index)
|