summaryrefslogtreecommitdiff
path: root/Master/tlpkg/bin/tl-update-auto
blob: 9352e749c4c89e20665f9dc72706db010488ee77 (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
202
203
204
205
206
207
208
209
210
211
#!/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=
#
verbose=echo
verbose=false
#
cp="cp -fv"
mv="mv -fv"
diff="diff -U 2"

# maybe someday we'll make real options.
config_scripts_only=false

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.
# 
if $config_scripts_only; then :; else
$mydir/htmltext <readme-html.dir/readme.en.html >$temp
if $diff readme-txt.dir/README.EN $temp >$temp.en.diff; then
  $verbose "  README.EN ok."
else
  $chicken $cp $temp readme-txt.dir/README.EN
  update_list="$update_list readme-txt.dir/README.EN"
fi
fi

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

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

#  fontname from elsewhere on tug.org.
#
if $config_scripts_only; then :; else
fontnamemaster=/home/httpd/html/fontname
fontnamedocslave=texmf-dist/doc/fonts/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
    $verbose "   $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
    $verbose "   $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
    $verbose "   $fontnameencslavef ok."
  else
    $chicken $cp $fontnamemaster/$basef $fontnameencslavef
    update_list="$update_list $fontnameencslavef"
  fi
done
fi 

#  config.guess/sub/etc. from elsewhere on tug.org, mirrored from GNU.
# 
config_masterdir=/home/ftp/dist/build-aux
#
for gnuconf in config.guess config.sub depcomp install-sh missing \
               mkinstalldirs; do 
  master_conffile=$config_masterdir/$gnuconf
  local_conffile=../Build/source/build-aux/$gnuconf
  #
  if $diff $local_conffile $master_conffile >$temp.$gnuconf.diff; then
    $verbose "  $gnuconf ok."
    rm -f $temp
  else
    # updated needed. find all copies in source.
    alldev="`find ../Build/source -name $gnuconf`"
    for f in $alldev; do
      $chicken $cp $master_conffile $f
    done
    update_list="$update_list $alldev"
    
    # in the case of config.guess, but nothing else, we also need it in
    # the installer.
    if test $gnuconf = config.guess; then
      installer_config_guess=tlpkg/installer/$gnuconf
      $chicken $cp $master_conffile $installer_config_guess
      update_list="$update_list $installer_config_guess"
    fi
  fi
done


#  tlmgr man page autogenerated.  Arrange to ignore date differences.
# 
if $config_scripts_only; then :; else
# 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
  $verbose "    `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="pod2html --cachedir=/tmp"
$pod2html $tlmgr >/home/httpd/html/texlive/doc/tlmgr.html
$pod2html install-tl >/home/httpd/html/texlive/doc/install-tl.html
fi

#  doc.html.
#
if $config_scripts_only; then :; else
$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
  $verbose "  doc.html ok."
else
  $chicken $cp $temp.doc.new doc.html
  update_list="$update_list doc.html"
fi
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