summaryrefslogtreecommitdiff
path: root/Master/tlpkg/bin/tl-update-man
blob: b2b3a2cf4a909907dcd34be73e5640618289e62a (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
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
#!/bin/sh
# $Id$
# Public domain.  Originally written 2008, Karl Berry.
# 
# This script is run by hand at the end of a release cycle to copy the
# man pages from the temporary install tree resulting from a normal
# build to the live Master hierarchy.

mydir=`cd \`dirname $0\` && pwd`
Master=`cd $mydir/../.. && pwd`
Build=`cd $Master/../Build && pwd`
Build_inst=`cd $Build/source/inst && pwd`

: ${TMPDIR=/tmp}

for sect in 1 5; do
  # existing:
  rundir=$Master/texmf/doc/man/man$sect
  (cd $rundir && ls) >$TMPDIR/now

  # from a current build:
  cd $Build_inst/texmf/doc/man/man$sect || exit 1
  ls >$TMPDIR/new

  # copy files from build to runtime:
  find -type f | sort | xargs tar cf - | (cd $rundir && tar xf -)
  if test -n "`find -type l`"; then
    echo "$0: unexpected man symlinks in `pwd`" >&2
    echo "$0: everything should use .so; goodbye" >&2
    exit 1
  fi

  # add new:
  needed=$TMPDIR/needed.$sect
  comm -13 $TMPDIR/now $TMPDIR/new >$needed
  test -s $needed && (cd $rundir && svn add `cat $needed`) 

  # do not delete, since many man pages aren't installed from the build,
  # but just in case we want to look:
  comm -23 $TMPDIR/now $TMPDIR/new | grep -v '\.pdf$' >>$TMPDIR/extraman.$sect
  #
  # and we can check against the binaries.
  if test $sect = 1; then
    bindir=$Master/bin/i386-linux
    for m in *; do
      f=`basename $m .1`
      test -r "$bindir/$f" || echo "$0: $f in man but not bin"
    done
  fi

  # for man1, generate make fragment for checking against man1/Makefile.
  (cd $rundir/.. && make so.rules >$TMPDIR/so.rules)
  echo "$0: check $TMPDIR/so.rules against `pwd`"
  
  # see what we've done:
  (cd $rundir && svn status)
done