Preparing for v1.5.0-rc4
[git/spearce.git] / dodoc.sh
blobd6571ba7c62890b0f408ed578e7b9cd7c672e7d8
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 git pull "$MASTERREPO" master &&
39 git fetch --tags "$MASTERREPO" || exit $?
40 test $(git-rev-parse --verify refs/heads/master) == "$ID" &&
41 NID=$(git-describe --abbrev=4 "$ID") &&
42 test '' != "$NID" || exit $?
44 # Set up subrepositories
45 test -d doc-htmlpages || (
46 mkdir doc-htmlpages &&
47 cd doc-htmlpages &&
48 git init-db || exit $?
50 if SID=$(git fetch-pack "$MASTERREPO" html)
51 then
52 git update-ref HEAD `expr "$SID" : '\(.*\) .*'` &&
53 git checkout || exit $?
56 test -d doc-manpages || (
57 mkdir doc-manpages &&
58 cd doc-manpages &&
59 git init-db || exit $?
61 if SID=$(git fetch-pack "$MASTERREPO" man)
62 then
63 git update-ref HEAD `expr "$SID" : '\(.*\) .*'` &&
64 git checkout || exit $?
67 find doc-htmlpages doc-manpages -type d -name '.git' -prune -o \
68 -type f -print0 | xargs -0 rm -f
70 cd Documentation &&
71 make WEBDOC_DEST="$DOCREPO/doc-htmlpages" install-webdoc >../:html.log 2>&1 &&
73 if test -d $PUBLIC
74 then
75 make WEBDOC_DEST="$PUBLIC" install-webdoc >>../:html.log 2>&1
76 else
77 echo "* No public html at $PUBLIC"
78 fi || exit $?
80 cd ../doc-htmlpages &&
81 (git add . || echo no new files -- not a big deal) &&
82 if git commit -a -m "Autogenerated HTML docs for $NID"
83 then
84 git-send-pack "$MASTERREPO" master:refs/heads/html || {
85 echo "* HTML failure"
86 exit 1
88 else
89 echo "* No changes in html docs"
92 cd ../Documentation &&
93 make \
94 man1="$DOCREPO/doc-manpages/man1" \
95 man7="$DOCREPO/doc-manpages/man7" \
96 man1dir="$DOCREPO/doc-manpages/man1" \
97 man7dir="$DOCREPO/doc-manpages/man7" \
98 install >../:man.log 2>&1 &&
100 cd ../doc-manpages &&
101 (git add . || echo no new files -- not a big deal) &&
102 if git commit -a -m "Autogenerated man pages for $NID"
103 then
104 git-send-pack "$MASTERREPO" master:refs/heads/man || {
105 echo "* man failure"
106 exit 1
108 else
109 echo "* No changes in manual pages"