summaryrefslogtreecommitdiff
path: root/Master/tlpkg/bin/tl-update-auto
blob: a78586b4569962214b9151ee4f5bf8a80c138dc3 (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
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
#!/bin/sh
# $Id$
# Public domain.  Originally written 2003, Karl Berry.
# 
# Deal with files that are automatically updated in one way or another.
# New files need to be added manually, doesn't happen often enough.

PATH=/usr/local/gnu/bin:/usr/local/bin:$PATH; export PATH
umask 0

chicken=echo
chicken=
cp="cp -fv"
mv="mv -fv"
diff="diff -U 2"

mydir=`cd \`dirname $0\` && /bin/pwd`
Master=`cd $mydir/../.. && /bin/pwd`
cd $Master || exit 1

temp=/tmp/ua$$
trap "rm -f $temp*" 0 1 2 15

update_list=

#  autogenerate README.EN from readme.html.
# 
$mydir/htmltext <readme-html.dir/readme.en.html >$temp
if $diff readme-txt.dir/README.EN $temp >$temp.en.diff; then
  echo "  README.EN ok."
else
  $chicken $cp $temp readme-txt.dir/README.EN
  update_list="$update_list readme-txt.dir/README.EN"
fi

#  modes.mf from elsewhere on tug.org.
#
modesmaster=/home/ftp/tex/modes.mf
modesslave=texmf-dist/metafont/misc/modes.mf
#
if $diff $modesslave $modesmaster >$temp.modes.diff; then
  echo "  $modesslave ok."
else
  $chicken $cp $modesmaster $modesslave
  update_list="$update_list $modesslave"
fi


#  texinfo.tex from elsewhere on tug.org.
#
tximaster=/home/ftp/tex/texinfo.tex
txislave=texmf-dist/tex/texinfo/texinfo.tex
#
if $diff $txislave $tximaster >$temp.txi.diff; then
  echo "  $txislave ok."
else
  $chicken $cp $tximaster $txislave
  update_list="$update_list $txislave"
fi


#  fontname from elsewhere on tug.org.
#
fontnamemaster=/home/httpd/html/fontname
fontnamedocslave=texmf-dist/doc/fontname
#
for basef in ChangeLog Makefile bitstrea.aka \
             fontname.pdf fontname.html fontname.texi; do
  fontnameslavef=$fontnamedocslave/$basef
  if $diff $fontnamemaster/$basef $fontnameslavef >$temp.$basef.diff; then
    echo "   $fontnameslavef ok."
  else
    $chicken $cp $fontnamemaster/$basef $fontnameslavef
    update_list="$update_list $fontnameslavef"
  fi
done

# fontname runtime files.
#
fontnamemapslave=texmf-dist/fonts/map/fontname
#
files=`cd $fontnamemaster && ls *.map`
for basef in $files; do
  test $basef = wolfram.map && continue   # obsolete for TL
  fontnamemapslavef=$fontnamemapslave/$basef
  if $diff $fontnamemaster/$basef $fontnamemapslavef >$temp.$basef.diff; then
    echo "   $fontnamemapslavef ok."
  else
    $chicken $cp $fontnamemaster/$basef $fontnamemapslavef
    update_list="$update_list $fontnamemapslavef"
  fi
done

fontnameencslave=texmf-dist/fonts/enc/dvips/base
#
files=`cd $fontnamemaster && ls *.enc | egrep -vw '(groff|t5).enc'`
for basef in $files; do
  fontnameencslavef=$fontnameencslave/$basef
  if $diff $fontnameencslavef $fontnamemaster/$basef >$temp.$basef.diff; then
    echo "   $fontnameencslavef ok."
  else
    $chicken $cp $fontnamemaster/$basef $fontnameencslavef
    update_list="$update_list $fontnameencslavef"
  fi
done
 

#  config.guess/sub from GNU.
# 
for gnuconf in config.guess config.sub; do
  url="http://git.savannah.gnu.org/gitweb/?p=config.git;a=blob_plain;f=$gnuconf;hb=HEAD"
  wget -O $temp $url >$temp.2 2>&1
  if test ! -s $temp; then
    echo "$0: skipping, could not retrieve $gnuconf:" >&2
    cat $temp.2
    continue
  fi
  #
  # we have no need for config.sub in the installer, so check elsewhere.
  case $gnuconf in 
    config.guess) gnuconffile=tlpkg/installer/$gnuconf;;
    config.sub)   gnuconffile=../Build/source/config/config.sub;;
    *)            echo "$0: impossible $gnuconf" >&2; exit 1;;
  esac
  #
  if $diff $gnuconffile $temp >$temp.$gnuconf.diff; then
    echo "  $gnuconf ok."
    rm -f $temp
  else
    # redundant in the case of config.sub, but doesn't hurt.
    $chicken $mv $temp $gnuconffile
    update_list="$update_list $gnuconffile"

    # find all copies in source.
    alldev="`find ../Build/source -name $gnuconf`"
    for f in $alldev; do
      $chicken $cp $gnuconffile $f
    done
    update_list="$update_list $alldev"
  fi
done


#  tlmgr man page autogenerated.  Arrange to ignore date differences.
# 
# return 0 if files $1 and $2 are the same except for the first lines.
# (we need to ignore the timestamps in the generation lines.)
same_except_for_th ()
{
  rm -f /tmp/seft1 /tmp/seft2
  sed '/^\.TH/d' <"$1" >/tmp/seft1
  sed '/^\.TH/d' <"$2" >/tmp/seft2
  cmp -s /tmp/seft1 /tmp/seft2
}

mandir=texmf/doc/man
manfile=$mandir/man1/tlmgr.1
tlmgr=texmf/scripts/texlive/tlmgr.pl 
#
pod2man $tlmgr >$temp
if same_except_for_th $manfile $temp; then
  echo "    `basename $manfile` ok."
  rm -f $manfile.new
else
  $chicken $mv $temp $manfile
  (cd $mandir && make)  # remake pdfs, should do always but it's something
  update_list="$update_list $mandir"
fi

# Update the version on the web site; since these aren't checked in, we
# can do it unconditionally.
# 
pod2html $tlmgr >/home/httpd/html/texlive/doc/tlmgr.html
pod2html install-tl >/home/httpd/html/texlive/doc/install-tl.html


#  doc.html.
#
$mydir/tl-update-docindex | tee $temp.doc \
| grep -v '<small>Generated' >$temp.doc.new
cp $temp.doc.new /tmp/x

#
grep -v '<small>Generated' doc.html >$temp.doc.cur
if $diff $temp.doc.cur $temp.doc.new >$temp.doc.diff; then
  echo "  doc.html ok."
else
  $chicken $cp $temp.doc.new doc.html
  update_list="$update_list doc.html"
fi


if test -z "$update_list"; then
  echo "$0: nothing to update."
else
  test x"$chicken" != xecho && echo "$0: committing $update_list"
  $chicken svn commit --force-log -m$0 $update_list
fi

echo "$0: done `date`."
exit 0