Meta/Reintegrate: make generated scripts support -u/-d options themselves
[alt-git.git] / dodoc.sh
blob0c064ce42663228784d6823319248e01c9e0a1fe
1 #!/bin/sh
3 # This script is called from the post-update hook, and when
4 # the master branch is updated, run in $HOME/git-doc, like
5 # this:
6 : <<\END_OF_COMMENTARY
8 $ cat >hooks/post-update
9 #!/bin/sh
10 case " $* " in
11 *' refs/heads/master '*)
12 echo $HOME/git-doc/dodoc.sh | at now
14 esac
15 exec git update-server-info
16 $ chmod +x hooks/post-update
18 END_OF_COMMENTARY
20 # $HOME/git-doc is a clone of the git.git repository and
21 # has the master branch checkd out. We update the working
22 # tree and build pre-formatted documentation pages, install
23 # in doc-htmlpages and doc-manapges subdirectory here.
24 # These two are their own git repository, and when they are
25 # updated the updates are pushed back into their own branches
26 # in git.git repository.
28 ID=`git rev-parse --verify refs/heads/master` || exit $?
30 unset GIT_DIR
32 : ${PUBLIC=/pub/software/scm/git/docs} &&
33 : ${MASTERREPO=`pwd`} &&
34 : ${DOCREPO=`dirname "$0"`} &&
35 test "$DOCREPO" != "" &&
36 cd "$DOCREPO" || exit $?
38 DOCREPO=`pwd`
40 tmp=`pwd`/.doctmp-$$
41 trap 'rm -f "$tmp".*' 0
44 git pull "$MASTERREPO" master &&
45 git fetch --tags "$MASTERREPO"
46 ) >/dev/null 2>/dev/null || exit $?
47 test $(git rev-parse --verify refs/heads/master) == "$ID" &&
48 NID=$(git describe --abbrev=4 "$ID") &&
49 test '' != "$NID" || exit $?
51 # Set up subrepositories
52 for type in man html
54 test -d doc-${type}pages || (
55 mkdir doc-${type}pages &&
56 cd doc-${type}pages &&
57 git init-db || exit $?
59 git fetch-pack "$MASTERREPO" ${type} |
60 while read sha1 name
62 case "$name" in
63 refs/heads/${type})
64 git update-ref HEAD $sha1 &&
65 git checkout || exit $?
66 break
68 esac
69 done || exit $?
70 ) || exit
71 rm -fr doc-$type-inst
72 done
74 dd='ASCIIDOC_NO_ROFF=YesPlease
75 ASCIIDOC8=YesPlease
76 MAN_BASE_URL="http://www.kernel.org/pub/software/scm/git/docs/"
77 BLK_SHA1=YesPlease
78 GNU_ROFF=YesPlease'
80 case "$NID" in
81 ?*-?*) ;;
82 ?*)
83 make clean &&
84 rm -fr doc-html-inst doc-man-inst &&
85 mkdir doc-html-inst doc-man-inst || exit
87 esac
89 make >./:html.log 2>&1 \
90 -C Documentation -j 2 $dd \
91 WEBDOC_DEST="$DOCREPO/doc-html-inst" install-webdoc || exit
93 make >./:man.log 2>&1 \
94 -C Documentation -j 2 $dd \
95 man1="$DOCREPO/doc-man-inst/man1" \
96 man5="$DOCREPO/doc-man-inst/man5" \
97 man7="$DOCREPO/doc-man-inst/man7" \
98 man1dir="$DOCREPO/doc-man-inst/man1" \
99 man5dir="$DOCREPO/doc-man-inst/man5" \
100 man7dir="$DOCREPO/doc-man-inst/man7" install || exit
102 for type in html man
104 find doc-$type-inst -type f |
105 while read path
107 it=$(expr "$path" : doc-$type-inst/'\(.*\)') || continue
108 t="doc-${type}pages/$it"
109 test -f "$t" && diff -q "$path" "$t" && continue
110 mkdir -p "$(dirname "$t")" &&
111 echo ": $t" && rm -f "$t" && ln "$path" "$t" || exit
112 ( cd doc-${type}pages && git add "$it" )
113 done || exit
115 find doc-$type-inst -type f |
116 sed -e 's|^doc-'$type'-inst/||' | sort >"$tmp.1" &&
117 (cd doc-${type}pages && git ls-files | sort) >"$tmp.2" &&
118 comm -13 "$tmp.1" "$tmp.2" |
119 ( cd doc-${type}pages && xargs rm -f -- ) || exit
122 cd doc-${type}pages
124 case "$type" in
125 html)
126 TYPE='HTML docs'
127 rm -f index.html
128 ln -sf git.html index.html
129 git add index.html
131 man)
132 TYPE='manpages'
134 esac
136 if git commit -a -m "Autogenerated $TYPE for $NID"
137 then
138 git send-pack "$MASTERREPO" master:refs/heads/$type \
139 >/dev/null 2>&1
140 else
141 echo "* No changes in $type docs"
143 ) || exit
144 done
146 if test -d $PUBLIC
147 then
148 # This is iffy...
149 mv Documentation/git.html Documentation/saved-git-html
150 make >>./:html.log 2>&1 \
151 -C Documentation \
152 WEBDOC_DEST="$PUBLIC" ASCIIDOC_EXTRA='-a stalenotes' \
153 install-webdoc &&
154 mv Documentation/saved-git-html Documentation/git.html
155 else
156 echo "* No public html at $PUBLIC"
157 fi || exit $?
159 echo '
161 *** ALL DONE ***
162 ' >>./:html.log