3 # This script is called from the post-update hook, and when
4 # the master branch is updated, run in $HOME/git-doc, like
8 $ cat >hooks/post-update
11 *' refs/heads/master '*)
12 echo $HOME/git-doc/dodoc.sh | at now
15 exec git-update-server-info
16 $ chmod +x hooks/post-update
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 $?
32 PUBLIC=/pub/software/scm/git/docs &&
34 DOCREPO=`dirname "$0"` &&
35 test "$DOCREPO" != "" &&
36 cd "$DOCREPO" || exit $?
38 git pull "$MASTERREPO" master &&
39 test $(git-rev-parse --verify refs/heads/master) == "$ID" &&
40 NID=$(git-describe --abbrev=4 "$ID") &&
41 test '' != "$NID" || exit $?
43 # Set up subrepositories
44 test -d doc-htmlpages || (
45 mkdir doc-htmlpages &&
47 git init-db || exit $?
49 if SID=$(git fetch-pack "$MASTERREPO" html)
51 git update-ref HEAD `expr "$SID" : '\(.*\) .*'` &&
52 git checkout || exit $?
55 test -d doc-manpages || (
58 git init-db || exit $?
60 if SID=$(git fetch-pack "$MASTERREPO" man)
62 git update-ref HEAD `expr "$SID" : '\(.*\) .*'` &&
63 git checkout || exit $?
66 find doc-htmlpages doc-manpages -type d -name '.git' -prune -o \
67 -type f -print0 | xargs -0 rm -f
70 make WEBDOC_DEST="$DOCREPO/doc-htmlpages" install-webdoc >../:html.log 2>&1 &&
74 make WEBDOC_DEST="$PUBLIC" install-webdoc >>../:html.log 2>&1
76 echo "* No public html at $PUBLIC"
79 cd ../doc-htmlpages &&
81 if git commit -a -m "Autogenerated HTML docs for $NID"
83 git-send-pack "$MASTERREPO" master:refs/heads/html || {
88 echo "* No changes in html docs"
91 cd ../Documentation &&
92 make man1="$DOCREPO/doc-manpages/man1" man7="$DOCREPO/doc-manpages/man7" \
93 install >../:man.log 2>&1 &&
97 if git commit -a -m "Autogenerated man pages for $NID"
99 git-send-pack "$MASTERREPO" master:refs/heads/man || {
104 echo "* No changes in manual pages"