Update copyright year to 2014 by running admin/update-copyright.
[emacs.git] / admin / update_autogen
blob171674fb7846758c4006370412c4ae513d6cef7f
1 #!/bin/bash
2 ### update_autogen - update some auto-generated files in the Emacs tree
4 ## Copyright (C) 2011-2014 Free Software Foundation, Inc.
6 ## Author: Glenn Morris <rgm@gnu.org>
8 ## This file is part of GNU Emacs.
10 ## GNU Emacs is free software: you can redistribute it and/or modify
11 ## it under the terms of the GNU General Public License as published by
12 ## the Free Software Foundation, either version 3 of the License, or
13 ## (at your option) any later version.
15 ## GNU Emacs is distributed in the hope that it will be useful,
16 ## but WITHOUT ANY WARRANTY; without even the implied warranty of
17 ## MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
18 ## GNU General Public License for more details.
20 ## You should have received a copy of the GNU General Public License
21 ## along with GNU Emacs. If not, see <http://www.gnu.org/licenses/>.
23 ### Commentary:
25 ## This is a helper script to update some generated files in the Emacs
26 ## repository. This is suitable for running from cron.
27 ## Only Emacs maintainers need use this, so it uses bash features.
29 ## By default, it updates the versioned loaddefs-like files in lisp,
30 ## except ldefs-boot.el.
32 ### Code:
34 die () # write error to stderr and exit
36 [ $# -gt 0 ] && echo "$PN: $@" >&2
37 exit 1
40 PN=${0##*/} # basename of script
41 PD=${0%/*}
43 [ "$PD" = "$0" ] && PD=. # if PATH includes PWD
45 ## This should be the admin directory.
46 cd $PD
47 cd ../
48 [ -d admin ] || die "Could not locate admin directory"
51 usage ()
53 cat 1>&2 <<EOF
54 Usage: ${PN} [-f] [-c] [-q] [-A dir] [-I] [-L] [-C] [-- make-flags]
55 Update some auto-generated files in the Emacs tree.
56 By default, only does the versioned loaddefs-like files in lisp/.
57 This requires a build. Passes any non-option args to make (eg -- -j2).
58 Options:
59 -f: force an update even if the source files are locally modified.
60 -c: if the update succeeds and the generated files are modified,
61 commit them (caution).
62 -q: be quiet; only give error messages, not status messages.
63 -A: only update autotools files, copying into specified dir.
64 -I: also update info/dir.
65 -L: also update ldefs-boot.el.
66 -C: start from a clean state. Slower, but more correct.
67 EOF
68 exit 1
72 ## Defaults.
74 force=
75 commit=
76 quiet=
77 clean=
78 autogendir= # was "autogen"
79 ldefs_flag=1
80 lboot_flag=
81 info_flag=
83 ## Parameters.
84 ldefs_in=lisp/loaddefs.el
85 ldefs_out=lisp/ldefs-boot.el
86 sources="configure.ac lib/Makefile.am"
87 ## Files to copy into autogendir.
88 ## Everything:
89 genfiles="
90 configure aclocal.m4 src/config.in lib/Makefile.in
91 build-aux/compile build-aux/config.guess build-aux/config.sub
92 build-aux/depcomp build-aux/install-sh build-aux/missing
94 ## msdos-only:
95 genfiles="src/config.in lib/Makefile.in"
97 for g in $genfiles; do
98 basegen="$basegen ${g##*/}"
99 done
101 [ "$basegen" ] || die "internal error"
103 tempfile=/tmp/$PN.$$
105 trap "rm -f $tempfile 2> /dev/null" EXIT
108 while getopts ":hcfqA:CIL" option ; do
109 case $option in
110 (h) usage ;;
112 (c) commit=1 ;;
114 (f) force=1 ;;
116 (q) quiet=1 ;;
118 (A) autogendir=$OPTARG
119 [ -d "$autogendir" ] || die "No autogen directory: $autogendir"
122 (C) clean=1 ;;
124 (I) info_flag=1 ;;
126 (L) lboot_flag=1 ;;
128 (\?) die "Bad option -$OPTARG" ;;
130 (:) die "Option -$OPTARG requires an argument" ;;
132 (*) die "getopts error" ;;
133 esac
134 done
135 shift $(( --OPTIND ))
136 OPTIND=1
139 ## Does not work 100% because a lot of Emacs batch output comes on stderr (?).
140 [ "$quiet" ] && exec 1> /dev/null
143 echo "Running bzr status..."
145 bzr status -S ${autogendir:+$sources} ${ldefs_flag:+lisp} \
146 ${info_flag:+doc} >| $tempfile || \
147 die "bzr status error for input files"
149 ## The lisp portion could be more permissive, eg only care about .el files.
150 while read stat file; do
152 case $stat in
154 echo "Locally modified: $file"
155 [ "$force" ] || die "There are local modifications"
158 *) die "Unexpected status ($stat) for $file" ;;
159 esac
160 done < $tempfile
163 ## Probably this is overkill, and there's no need to "bootstrap" just
164 ## for making autoloads.
165 [ "$clean" ] && {
167 echo "Running 'make maintainer-clean'..."
169 make maintainer-clean #|| die "Cleaning error"
171 rm -f $ldefs_in
175 echo "Running autoreconf..."
177 autoreconf ${clean:+-f} -i -I m4 2>| $tempfile
179 retval=$?
181 ## Annoyingly, autoreconf puts the "installing `./foo' messages on stderr.
182 if [ "$quiet" ]; then
183 grep -v 'installing `\.' $tempfile 1>&2
184 else
185 cat "$tempfile" 1>&2
188 [ $retval -ne 0 ] && die "autoreconf error"
191 ## Uses global $commit.
192 commit ()
194 local type=$1
195 shift
197 [ $# -gt 0 ] || {
198 echo "No files were modified"
199 return 0
202 echo "Modified file(s): $@"
204 [ "$commit" ] || return 0
206 echo "Committing..."
208 ## bzr status output is always relative to top-level, not PWD.
209 bzr commit -m "Auto-commit of $type files." "$@" || return $?
211 echo "Committed files: $@"
212 } # function commit
215 ## No longer used since info/dir is now generated at install time if needed,
216 ## and is not in the repository any more.
217 info_dir ()
219 local basefile=build-aux/dir_top outfile=info/dir
221 echo "Regenerating info/dir..."
223 ## Header contains non-printing characters, so this is more
224 ## reliable than using echo.
225 rm -f $outfile
226 cp $basefile $outfile
228 local topic file dircat dirent
230 ## FIXME inefficient looping.
231 for topic in "Texinfo documentation system" "Emacs" "GNU Emacs Lisp" \
232 "Emacs editing modes" "Emacs network features" "Emacs misc features" \
233 "Emacs lisp libraries"; do
235 cat - <<EOF >> $outfile
237 $topic
239 ## Bit faster than doc/*/*.texi.
240 for file in doc/emacs/emacs.texi doc/lispintro/*.texi \
241 doc/lispref/elisp.texi doc/misc/*.texi; do
243 ## FIXME do not ignore w32 if OS is w32.
244 case $file in
245 *-xtra.texi|*efaq-w32.texi) continue ;;
246 esac
248 dircat=`sed -n -e 's/@value{emacsname}/Emacs/' -e 's/^@dircategory //p' $file`
250 ## TODO warn about unknown topics (check-info in top-level
251 ## Makefile does this).
252 [ "$dircat" = "$topic" ] || continue
254 sed -n -e 's/@value{emacsname}/Emacs/' \
255 -e 's/@acronym{\([A-Z]*\)}/\1/' \
256 -e '/^@direntry/,/^@end direntry/ s/^\([^@]\)/\1/p' \
257 $file >> $outfile
259 done
260 done
262 bzr status -S $outfile >| $tempfile || \
263 die "bzr status error for generated $outfile"
265 local modified
267 while read stat file; do
269 [ "$stat" != "M" ] && \
270 die "Unexpected status ($stat) for generated $file"
272 modified="$modified $file"
274 done < $tempfile
276 commit "info/dir" $modified || die "bzr commit error"
277 } # function info_dir
280 [ "$autogendir" ] && {
282 oldpwd=$PWD
284 cp $genfiles $autogendir/
286 cd $autogendir || die "cd error for $autogendir"
288 echo "Checking status of generated files..."
290 bzr status -S $basegen >| $tempfile || \
291 die "bzr status error for generated files"
293 modified=
295 while read stat file; do
297 [ "$stat" != "M" ] && \
298 die "Unexpected status ($stat) for generated $file"
300 modified="$modified $file"
302 done < $tempfile
304 cd $oldpwd
306 commit "generated" $modified || die "bzr commit error"
308 exit 0
309 } # $autogendir
312 [ "$info_flag" ] && info_dir
315 [ "$ldefs_flag" ] || exit 0
318 echo "Finding loaddef targets..."
320 sed -n -e '/^AUTOGEN_VCS/,/^$/ s/\\//p' lisp/Makefile.in | \
321 sed '/AUTOGEN_VCS/d' >| $tempfile || die "sed error"
323 genfiles=
325 while read genfile; do
327 [ -r lisp/$genfile ] || die "Unable to read $genfile"
329 genfiles="$genfiles $genfile"
330 done < $tempfile
333 [ "$genfiles" ] || die "Error setting genfiles"
336 [ -e Makefile ] || {
337 echo "Running ./configure..."
339 ## Minimize required packages.
340 ./configure --without-x || die "configure error"
344 ## Build the minimum needed to get the autoloads.
345 echo "Running lib/ make..."
347 make -C lib "$@" all || die "make lib error"
350 echo "Running src/ make..."
352 make -C src "$@" bootstrap-emacs || die "make src error"
355 echo "Running lisp/ make..."
357 make -C lisp "$@" autoloads EMACS=../src/bootstrap-emacs || die "make src error"
360 ## Ignore comment differences.
361 [ ! "$lboot_flag" ] || \
362 diff -q -I '^;' $ldefs_in $ldefs_out || \
363 cp $ldefs_in $ldefs_out || die "cp ldefs_boot error"
366 cd lisp
368 echo "Checking status of loaddef files..."
370 ## It probably would be fine to just check+commit lisp/, since
371 ## making autoloads should not effect any other files. But better
372 ## safe than sorry.
373 bzr status -S $genfiles ${ldefs_out#lisp/} >| $tempfile || \
374 die "bzr status error for generated files"
377 modified=
379 while read stat file; do
381 [ "$stat" != "M" ] && die "Unexpected status ($stat) for generated $file"
382 modified="$modified $file"
384 done < $tempfile
387 cd ../
390 commit "loaddefs" $modified || die "bzr commit error"
393 exit 0
395 ### update_autogen ends here