2 ### update_autogen - update some auto-generated files in the Emacs tree
4 ## Copyright (C) 2011-2015 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/>.
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.
34 die
() # write error to stderr and exit
36 [ $# -gt 0 ] && echo "$PN: $@" >&2
40 PN
=${0##*/} # basename of script
43 [ "$PD" = "$0" ] && PD
=.
# if PATH includes PWD
45 ## This should be the admin directory.
48 [ -d admin
] || die
"Could not locate admin directory"
52 elif [ -d .git
]; then
55 die
"Cannot determine vcs"
62 Usage: ${PN} [-f] [-c] [-q] [-A dir] [-I] [-L] [-C] [-- make-flags]
63 Update some auto-generated files in the Emacs tree.
64 By default, only does the versioned loaddefs-like files in lisp/.
65 This requires a build. Passes any non-option args to make (eg -- -j2).
67 -f: force an update even if the source files are locally modified.
68 -c: if the update succeeds and the generated files are modified,
69 commit them (caution).
70 -q: be quiet; only give error messages, not status messages.
71 -A: only update autotools files, copying into specified dir.
72 -I: also update info/dir.
73 -L: also update ldefs-boot.el.
74 -C: start from a clean state. Slower, but more correct.
86 autogendir
= # was "autogen"
92 ldefs_in
=lisp
/loaddefs.el
93 ldefs_out
=lisp
/ldefs-boot.el
94 sources
="configure.ac lib/Makefile.am"
95 ## Files to copy into autogendir.
98 configure aclocal.m4 src/config.in lib/Makefile.in
99 build-aux/compile build-aux/config.guess build-aux/config.sub
100 build-aux/depcomp build-aux/install-sh build-aux/missing
103 genfiles
="src/config.in lib/Makefile.in"
105 for g
in $genfiles; do
106 basegen
="$basegen ${g##*/}"
109 [ "$basegen" ] || die
"internal error"
113 trap "rm -f $tempfile 2> /dev/null" EXIT
116 while getopts ":hcfqA:CIL" option
; do
126 (A
) autogendir
=$OPTARG
127 [ -d "$autogendir" ] || die
"No autogen directory: $autogendir"
136 (\?) die
"Bad option -$OPTARG" ;;
138 (:) die
"Option -$OPTARG requires an argument" ;;
140 (*) die
"getopts error" ;;
143 shift $
(( --OPTIND ))
147 ## Does not work 100% because a lot of Emacs batch output comes on stderr (?).
148 [ "$quiet" ] && exec 1> /dev
/null
151 ## Run status on inputs, list modified files on stdout.
155 [ "$vcs" = "git" ] && statflag
="-s"
157 $vcs status
$statflag "$@" >|
$tempfile || die
"$vcs status error for $@"
159 local stat
file modified
161 while read stat
file; do
163 [ "$stat" != "M" ] && \
164 die
"Unexpected status ($stat) for generated $file"
165 modified
="$modified $file"
175 echo "Checking input file status..."
177 ## The lisp portion could be more permissive, eg only care about .el files.
178 modified
=$
(status
${autogendir:+$sources} ${ldefs_flag:+lisp} ${info_flag:+doc}) || die
181 echo "Locally modified: $modified"
182 [ "$force" ] || die
"There are local modifications"
186 ## Probably this is overkill, and there's no need to "bootstrap" just
187 ## for making autoloads.
190 echo "Running 'make maintainer-clean'..."
192 make maintainer-clean
#|| die "Cleaning error"
198 echo "Running autoreconf..."
200 autoreconf
${clean:+-f} -i -I m4 2>|
$tempfile
204 ## Annoyingly, autoreconf puts the "installing `./foo' messages on stderr.
205 if [ "$quiet" ]; then
206 grep -v 'installing `\.' $tempfile 1>&2
211 [ $retval -ne 0 ] && die
"autoreconf error"
214 ## Uses global $commit.
221 echo "No files were modified"
225 echo "Modified file(s): $@"
227 [ "$commit" ] ||
return 0
231 $vcs commit
-m "# Auto-commit of $type files." "$@" ||
return $?
233 [ "$vcs" = "git" ] && {
234 $vcs push ||
return $?
237 echo "Committed files: $@"
241 ## No longer used since info/dir is now generated at install time if needed,
242 ## and is not in the repository any more.
245 local basefile
=build-aux
/dir_top outfile
=info
/dir
247 echo "Regenerating info/dir..."
249 ## Header contains non-printing characters, so this is more
250 ## reliable than using echo.
252 cp $basefile $outfile
254 local topic
file dircat dirent
256 ## FIXME inefficient looping.
257 for topic
in "Texinfo documentation system" "Emacs" "GNU Emacs Lisp" \
258 "Emacs editing modes" "Emacs network features" "Emacs misc features" \
259 "Emacs lisp libraries"; do
261 cat - <<EOF >> $outfile
265 ## Bit faster than doc/*/*.texi.
266 for file in doc
/emacs
/emacs.texi
doc
/lispintro
/*.texi \
267 doc
/lispref
/elisp.texi
doc
/misc
/*.texi
; do
269 ## FIXME do not ignore w32 if OS is w32.
271 *-xtra.texi|
*efaq-w32.texi
) continue ;;
274 dircat
=$
(sed -n -e 's/@value{emacsname}/Emacs/' -e 's/^@dircategory //p' $file)
276 ## TODO warn about unknown topics (check-info in top-level
277 ## Makefile does this).
278 [ "$dircat" = "$topic" ] ||
continue
280 sed -n -e 's/@value{emacsname}/Emacs/' \
281 -e 's/@acronym{\([A-Z]*\)}/\1/' \
282 -e '/^@direntry/,/^@end direntry/ s/^\([^@]\)/\1/p' \
290 modified
=$
(status
$outfile) || die
292 commit
"info/dir" $modified || die
"commit error"
293 } # function info_dir
296 [ "$autogendir" ] && {
300 cp $genfiles $autogendir/
302 cd $autogendir || die
"cd error for $autogendir"
304 echo "Checking status of generated files..."
306 modified
=$
(status
$basegen) || die
308 commit
"generated" $modified || die
"commit error"
314 [ "$info_flag" ] && info_dir
317 [ "$ldefs_flag" ] ||
exit 0
320 echo "Finding loaddef targets..."
322 find lisp
-name '*.el' -exec grep '^;.*generated-autoload-file:' {} + | \
323 sed -e '/loaddefs\|esh-groups/d' -e 's|/[^/]*: "|/|' -e 's/"//g' \
324 >|
$tempfile || die
"Error finding targets"
328 while read genfile
; do
330 ## Or we can just use sort -u when making tempfile...
331 case " $genfiles " in
332 *" $genfile "*) continue ;;
335 [ -r $genfile ] || die
"Unable to read $genfile"
337 genfiles
="$genfiles $genfile"
341 [ "$genfiles" ] || die
"Error setting genfiles"
345 echo "Running ./configure..."
347 ## Minimize required packages.
348 .
/configure
--without-x || die
"configure error"
352 ## Build the minimum needed to get the autoloads.
353 echo "Running lib/ make..."
355 make -C lib
"$@" all || die
"make lib error"
358 echo "Running src/ make..."
360 make -C src
"$@" bootstrap-emacs || die
"make src error"
363 echo "Running lisp/ make..."
365 make -C lisp
"$@" autoloads EMACS
=..
/src
/bootstrap-emacs || die
"make src error"
368 ## Ignore comment differences.
369 [ ! "$lboot_flag" ] || \
370 diff -q -I '^;' $ldefs_in $ldefs_out || \
371 cp $ldefs_in $ldefs_out || die
"cp ldefs_boot error"
374 echo "Checking status of loaddef files..."
376 ## It probably would be fine to just check+commit lisp/, since
377 ## making autoloads should not effect any other files. But better
379 modified
=$
(status
$genfiles $ldefs_out) || die
382 commit
"loaddefs" $modified || die
"commit error"
387 ### update_autogen ends here