blob: 9588357bc9a10e0b646fe1cc0dd850bf1152fc27 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
|
#!/bin/sh
#
# Generate documentation
#
basedir="$(dirname "$0")"
[ "$(echo "$basedir" | cut -c1)" = '/' ] || basedir="$PWD/$basedir"
srcdir="$basedir/.."
die()
{
echo "$*" >&2
exit 1
}
gen()
{
local rst="$1"
local docname="$(basename "$rst" .rst)"
local dir="$(dirname "$rst")"
local html="$dir/$docname.html"
local tmpfile="$(mktemp --tmpdir=/tmp --suffix=.rst)"
echo "Generating $(realpath --relative-to="$srcdir" "$html") from $(realpath --relative-to="$srcdir" "$rst") ..."
sed -e 's|\.rst>`_|.html>`_|g' "$rst" > "$tmpfile" ||\
die "Failed to generate"
python3 -m readme_renderer -o "$html" "$tmpfile" ||\
die "Failed to generate"
rm "$tmpfile" ||\
die "Failed to delete temporary file"
}
for i in $(find "$srcdir" \( -name submodules -prune \) -o \( -name release-archives -prune \) -o \( -name build -prune \) -o \( -name toolchain-build -prune \) -o \( -name crcgen -prune \) -o \( -name '*.rst' -print \)); do
gen "$i"
done
exit 0
|