WI and SA to keep track of maint branch as well
[git.git] / dodoc.sh
1 #!/bin/sh
2 #
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
7
8 $ cat >hooks/post-update
9 #!/bin/sh
10 case " $* " in
11 *' refs/heads/master '*)
12         echo $HOME/git-doc/dodoc.sh | at now
13         ;;
14 esac
15 exec git-update-server-info
16 $ chmod +x hooks/post-update
17
18 END_OF_COMMENTARY
19
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.
27
28 ID=`git-rev-parse --verify refs/heads/master` || exit $?
29
30 unset GIT_DIR
31
32 PUBLIC=/pub/software/scm/git/docs &&
33 MASTERREPO=`pwd` &&
34 DOCREPO=`dirname "$0"` &&
35 test "$DOCREPO" != "" &&
36 cd "$DOCREPO" || exit $?
37
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 $?
43
44 # Set up subrepositories
45 test -d doc-htmlpages || (
46         mkdir doc-htmlpages &&
47         cd doc-htmlpages &&
48         git init-db || exit $?
49
50         if SID=$(git fetch-pack "$MASTERREPO" html)
51         then
52                 git update-ref HEAD `expr "$SID" : '\(.*\) .*'` &&
53                 git checkout || exit $?
54         fi
55 )
56 test -d doc-manpages || (
57         mkdir doc-manpages &&
58         cd doc-manpages &&
59         git init-db || exit $?
60
61         if SID=$(git fetch-pack "$MASTERREPO" man)
62         then
63                 git update-ref HEAD `expr "$SID" : '\(.*\) .*'` &&
64                 git checkout || exit $?
65         fi
66 )
67 find doc-htmlpages doc-manpages -type d -name '.git' -prune -o \
68         -type f -print0 | xargs -0 rm -f
69
70 cd Documentation &&
71 make WEBDOC_DEST="$DOCREPO/doc-htmlpages" install-webdoc >../:html.log 2>&1 &&
72
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 $?
79
80 cd ../doc-htmlpages &&
81     git add . &&
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
87         }
88     else
89         echo "* No changes in html docs"
90     fi
91
92 cd ../Documentation &&
93 make man1="$DOCREPO/doc-manpages/man1" man7="$DOCREPO/doc-manpages/man7" \
94         install >../:man.log 2>&1 &&
95
96 cd ../doc-manpages &&
97     git add . &&
98     if git commit -a -m "Autogenerated man pages for $NID"
99     then
100         git-send-pack "$MASTERREPO" master:refs/heads/man || {
101             echo "* man failure"
102             exit 1
103         }
104     else
105         echo "* No changes in manual pages"
106     fi
107