]> code.delx.au - gnu-emacs/blob - make-dist
Handle all subdirs of `lisp' uniformly.
[gnu-emacs] / make-dist
1 #!/bin/sh
2
3 #### make-dist: create an Emacs distribution tar file from the current
4 #### source tree. This basically creates a duplicate directory
5 #### structure, and then hard links into it only those files that should
6 #### be distributed. This means that if you add a file with an odd name,
7 #### you should make sure that this script will include it.
8
9 # Copyright (C) 1995 Free Software Foundation, Inc.
10 #
11 # This file is part of GNU Emacs.
12 #
13 # GNU Emacs is free software; you can redistribute it and/or modify
14 # it under the terms of the GNU General Public License as published by
15 # the Free Software Foundation; either version 2, or (at your option)
16 # any later version.
17 #
18 # GNU Emacs is distributed in the hope that it will be useful,
19 # but WITHOUT ANY WARRANTY; without even the implied warranty of
20 # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
21 # GNU General Public License for more details.
22 #
23 # You should have received a copy of the GNU General Public License
24 # along with GNU Emacs; see the file COPYING. If not, write to the
25 # Free Software Foundation, Inc., 59 Temple Place - Suite 330,
26 # Boston, MA 02111-1307, USA.
27
28 progname="$0"
29
30 ### Exit if a command fails.
31 ### set -e
32
33 ### Print out each line we read, for debugging's sake.
34 ### set -v
35
36 ## Don't protect any files.
37 umask 0
38
39 update=yes
40 clean_up=no
41 make_tar=no
42 newer=""
43
44 while [ $# -gt 0 ]; do
45 case "$1" in
46 ## This option tells make-dist to delete the staging directory
47 ## when done. It is useless to use this unless you make a tar file.
48 "--clean-up" )
49 clean_up=yes
50 ;;
51 ## This option tells make-dist to make a tar file.
52 "--tar" )
53 make_tar=yes
54 ;;
55 ## This option tells make-dist not to recompile or do analogous things.
56 "--no-update" )
57 update=no
58 ;;
59 ## This option tells make-dist to make the distribution normally, then
60 ## remove all files older than the given timestamp file. This is useful
61 ## for creating incremental or patch distributions.
62 "--newer")
63 newer="$2"
64 new_extension=".new"
65 shift
66 ;;
67 ## This option tells make-dist to use `compress' instead of gzip.
68 ## Normally, make-dist uses gzip whenever it is present.
69 "--compress")
70 default_gzip="compress"
71 ;;
72 * )
73 echo "${progname}: Unrecognized argument: $1" >&2
74 exit 1
75 ;;
76 esac
77 shift
78 done
79
80 ### Make sure we're running in the right place.
81 if [ ! -d src -o ! -f src/lisp.h -o ! -d lisp -o ! -f lisp/version.el ]; then
82 echo "${progname}: Can't find \`src/lisp.h' and \`lisp/version.el'." >&2
83 echo "${progname} must be run in the top directory of the Emacs" >&2
84 echo "distribution tree. cd to that directory and try again." >&2
85 exit 1
86 fi
87
88 ### Find where to run Emacs.
89 if [ $update = yes ];
90 then
91 if [ -f src/emacs ];
92 then
93 EMACS=`pwd`/src/emacs
94 else
95 if [ x$EMACS = x ];
96 then
97 echo You must specify the EMACS environment variable 2>&1
98 exit 1
99 fi
100 fi
101 fi
102
103 ### Find out which version of Emacs this is.
104 shortversion=`grep 'defconst[ ]*emacs-version' lisp/version.el \
105 | sed -e 's/^.*"\([0-9][0-9]*\.[0-9][0-9]*\).*$/\1/'`
106 version=`grep 'defconst[ ]*emacs-version' lisp/version.el \
107 | sed -e 's/^[^"]*"\([^"]*\)".*$/\1/'`
108 if [ ! "${version}" ]; then
109 echo "${progname}: can't find current Emacs version in \`./lisp/version.el'" >&2
110 exit 1
111 fi
112
113 echo Version numbers are $version and $shortversion
114
115 if [ $update = yes ];
116 then
117 if grep -s "GNU Emacs version ${shortversion}" ./man/emacs.texi > /dev/null; then
118 true
119 else
120 echo "You must update the version number in \`./man/emacs.texi'"
121 sleep 5
122 fi
123 fi
124
125 ### Make sure we don't already have a directory emacs-${version}.
126
127 emacsname="emacs-${version}${new_extension}"
128
129 if [ -d ${emacsname} ]
130 then
131 echo Directory "${emacsname}" already exists >&2
132 exit 1
133 fi
134
135 ### Make sure the subdirectory is available.
136 tempparent="make-dist.tmp.$$"
137 if [ -d ${tempparent} ]; then
138 echo "${progname}: staging directory \`${tempparent}' already exists.
139 Perhaps a previous invocation of \`${progname}' failed to clean up after
140 itself. Check that directories whose names are of the form
141 \`make-dist.tmp.NNNNN' don't contain any important information, remove
142 them, and try again." >&2
143 exit 1
144 fi
145
146 ### Check for .elc files with no corresponding .el file.
147 ls -1 lisp/*.el | sed 's/\.el$/.elc/' > /tmp/el
148 ls -1 lisp/*.elc > /tmp/elc
149 bogosities="`comm -13 /tmp/el /tmp/elc`"
150 if [ "${bogosities}" != "" ]; then
151 echo "The following .elc files have no corresponding .el files:"
152 echo "${bogosities}"
153 fi
154 rm -f /tmp/el /tmp/elc
155
156 ### Check for .el files that would overflow the 14-char limit if compiled.
157 long=`find lisp -name '[a-zA-Z0-9]??????????*.el' -print`
158 if [ "$long" != "" ]; then
159 echo "The following .el file names are too long:"
160 echo "$long"
161 fi
162
163 ### Make sure configure is newer than configure.in.
164 if [ "x`ls -t configure configure.in | head -1`" != "xconfigure" ]; then
165 echo "\`./configure.in' is newer than \`./configure'" >&2
166 echo "Running autoconf" >&2
167 autoconf || { x=$?; echo Autoconf FAILED! >&2; exit $x; }
168 fi
169
170 if [ $update = yes ];
171 then
172 echo "Updating Info files"
173
174 (cd man; make info)
175
176 echo "Updating finder-inf.el"
177
178 (cd lisp; make finder-inf.el)
179
180 echo "Recompiling Lisp files"
181
182 $EMACS -batch -f batch-byte-recompile-directory lisp
183
184 echo "Updating autoloads"
185
186 (cd lisp; make autoloads)
187
188 echo "Updating cus-load.el"
189
190 (cd lisp; make cus-load.el)
191 fi
192
193 echo "Making lisp/MANIFEST"
194
195 (cd lisp; head -1 [!=]*.el | grep '^;' | sed -e 's/;;; //' > MANIFEST)
196
197 echo "Creating staging directory: \`${tempparent}'"
198
199 mkdir ${tempparent}
200 tempdir="${tempparent}/${emacsname}"
201
202 ### This trap ensures that the staging directory will be cleaned up even
203 ### when the script is interrupted in mid-career.
204 if [ "${clean_up}" = yes ]; then
205 trap "echo 'Interrupted...cleaning up the staging directory'; rm -rf ${tempparent}; exit 1" 1 2 15
206 fi
207
208 echo "Creating top directory: \`${tempdir}'"
209 mkdir ${tempdir}
210
211 ### We copy in the top-level files before creating the subdirectories in
212 ### hopes that this will make the top-level files appear first in the
213 ### tar file; this means that people can start reading the INSTALL and
214 ### README while the rest of the tar file is still unpacking. Whoopee.
215 echo "Making links to top-level files"
216 ln GETTING.GNU.SOFTWARE INSTALL PROBLEMS README BUGS move-if-change ${tempdir}
217 ln ChangeLog Makefile.in configure configure.in ${tempdir}
218 ln config.bat make-dist update-subdirs vpath.sed ${tempdir}
219 ### Copy these files; they're cross-filesystem symlinks.
220 cp mkinstalldirs ${tempdir}
221 cp config.sub ${tempdir}
222 cp config.guess ${tempdir}
223 cp install.sh ${tempdir}
224
225 echo "Updating version number in README"
226 (cd ${tempdir}
227 awk \
228 '$1 " " $2 " " $3 " " $4 " " $5 == "This directory tree holds version" { $6 = version; print $0 }
229 $1 " " $2 " " $3 " " $4 " " $5 != "This directory tree holds version"' \
230 version=${version} README > tmp.README
231 mv tmp.README README)
232
233
234 echo "Creating subdirectories"
235 for subdir in lisp site-lisp \
236 src src/m src/s src/bitmaps lib-src oldXMenu lwlib \
237 nt nt/inc nt/inc/sys nt/inc/arpa nt/inc/netinet \
238 etc etc/e lock cpp info man msdos vms; do
239 mkdir ${tempdir}/${subdir}
240 done
241
242 echo "Making links to \`lisp' and its subdirectories"
243 ### Don't distribute TAGS, =*.el files, site-init.el, site-load.el, or default.el.
244 (cd lisp
245 ln [a-zA-Z]*.el ../${tempdir}/lisp
246 ln [a-zA-Z]*.elc ../${tempdir}/lisp
247 ln [a-zA-Z]*.dat ../${tempdir}/lisp
248 ## simula.el doesn't keep abbreviations in simula.defns any more.
249 ## ln [a-zA-Z]*.defns ../${tempdir}/lisp
250 ln ChangeLog Makefile makefile.nt ChangeLog.? README ../${tempdir}/lisp
251 (cd ../${tempdir}/lisp
252 rm -f TAGS =*
253 rm -f site-init site-init.el site-init.elc
254 rm -f site-load site-load.el site-load.elc
255 rm -f site-start site-start.el site-start.elc
256 rm -f default default.el default.elc
257 )
258
259 ## Find all subdirs of lisp dir
260 for file in `find . -type d -print`; do
261 case $file in
262 . | .. | */Old | */RCS)
263 ;;
264 *)
265 if [ -d $file ]; then
266 subdirs="$file $subdirs"
267 fi
268 ;;
269 esac
270 done
271
272 for file in $subdirs; do
273 echo " lisp/$file"
274 mkdir ../${tempdir}/lisp/$file
275 ln $file/[a-zA-Z]*.el ../${tempdir}/lisp/$file
276 ln $file/[a-zA-Z]*.elc ../${tempdir}/lisp/$file
277 if [ -f $file/README ]; then
278 ln $file/README ../${tempdir}/lisp/$file
279 fi
280 rm -f $file/=* $file/TAGS
281 done )
282
283 echo "Making links to \`src'"
284 ### Don't distribute =*.[ch] files, or the configured versions of
285 ### config.in, paths.in, or Makefile.in, or TAGS.
286 (cd src
287 echo " (It is ok if ln fails in some cases.)"
288 ln [a-zA-Z]*.c ../${tempdir}/src
289 ln [a-zA-Z]*.h ../${tempdir}/src
290 ln [a-zA-Z]*.s ../${tempdir}/src
291 ln [a-zA-Z]*.in ../${tempdir}/src
292 ln [a-zA-Z]*.opt ../${tempdir}/src
293 ## If we ended up with a symlink, or if we did not get anything
294 ## due to a cross-device symlink, copy the file.
295 for file in [a-zA-Z]*.[hcs] [a-zA-Z]*.in [a-zA-Z]*.opt; do
296 if test -f ../${tempdir}/src/$file; then
297 # test -f appears to succeed for a symlink
298 if test -L ../${tempdir}/src/$file; then
299 rm ../${tempdir}/src/$file
300 cp $file ../${tempdir}/src
301 chmod a-w ../${tempdir}/src/$file
302 fi
303 else
304 rm ../${tempdir}/src/$file
305 cp $file ../${tempdir}/src
306 chmod a-w ../${tempdir}/src/$file
307 fi
308 done
309 ln README ChangeLog ChangeLog.*[0-9] ../${tempdir}/src
310 ln makefile.nt vms-pp.trans ../${tempdir}/src
311 ln .gdbinit .dbxinit ../${tempdir}/src
312 cd ../${tempdir}/src
313 rm -f config.h paths.h Makefile Makefile.c
314 rm -f =* TAGS)
315
316 echo "Making links to \`src/bitmaps'"
317 (cd src/bitmaps
318 ln README *.xbm ../../${tempdir}/src/bitmaps)
319
320 echo "Making links to \`src/m'"
321 (cd src/m
322 # We call files for miscellaneous input (to linker etc) .inp.
323 ln README [a-zA-Z0-9]*.h *.inp ../../${tempdir}/src/m)
324
325 echo "Making links to \`src/s'"
326 (cd src/s
327 ln README [a-zA-Z0-9]*.h ../../${tempdir}/src/s)
328
329 echo "Making links to \`lib-src'"
330 (cd lib-src
331 ln [a-zA-Z]*.[chy] ../${tempdir}/lib-src
332 ln ChangeLog Makefile.in README testfile vcdiff ../${tempdir}/lib-src
333 ln emacs.csh rcs2log rcs-checkin makefile.nt ../${tempdir}/lib-src
334 ## If we ended up with a symlink, or if we did not get anything
335 ## due to a cross-device symlink, copy the file.
336 for file in [a-zA-Z]*.[chy]; do
337 if test -f ../${tempdir}/lib-src/$file; then
338 # test -f appears to succeed for a symlink
339 if test -L ../${tempdir}/lib-src/$file; then
340 rm ../${tempdir}/lib-src/$file
341 cp $file ../${tempdir}/lib-src
342 chmod a-w ../${tempdir}/lib-src/$file
343 fi
344 else
345 rm ../${tempdir}/lib-src/$file
346 cp $file ../${tempdir}/lib-src
347 chmod a-w ../${tempdir}/lib-src/$file
348 fi
349 done
350 cd ../${tempdir}/lib-src
351 rm -f Makefile.c
352 rm -f =* TAGS)
353
354 echo "Making links to \`nt'"
355 (cd nt
356 ln emacs.ico emacs.rc config.nt [a-z]*.in [a-z]*.c ../${tempdir}/nt
357 ln [a-z]*.bat [a-z]*.h makefile.def makefile.nt ../${tempdir}/nt
358 ln TODO ChangeLog INSTALL README ../${tempdir}/nt)
359
360 echo "Making links to \`nt/inc'"
361 (cd nt/inc
362 ln [a-z]*.h ../../${tempdir}/nt/inc)
363
364 echo "Making links to \`nt/inc/sys'"
365 (cd nt/inc/sys
366 ln [a-z]*.h ../../../${tempdir}/nt/inc/sys)
367
368 echo "Making links to \`nt/inc/arpa'"
369 (cd nt/inc/arpa
370 ln [a-z]*.h ../../../${tempdir}/nt/inc/arpa)
371
372 echo "Making links to \`nt/inc/netinet'"
373 (cd nt/inc/netinet
374 ln [a-z]*.h ../../../${tempdir}/nt/inc/netinet)
375
376 echo "Making links to \`msdos'"
377 (cd msdos
378 ln ChangeLog emacs.ico emacs.pif ../${tempdir}/msdos
379 ln is_exec.c sigaction.c mainmake mainmake.v2 sed*.inp ../${tempdir}/msdos
380 cd ../${tempdir}/msdos
381 rm -f =*)
382
383 echo "Making links to \`oldXMenu'"
384 (cd oldXMenu
385 ln *.c *.h *.in ../${tempdir}/oldXMenu
386 ln README Imakefile ChangeLog ../${tempdir}/oldXMenu
387 ln compile.com descrip.mms ../${tempdir}/oldXMenu)
388
389 echo "Making links to \`lwlib'"
390 (cd lwlib
391 ln *.c *.h *.in ../${tempdir}/lwlib
392 ln README Imakefile ChangeLog ../${tempdir}/lwlib
393 cd ../${tempdir}/lwlib
394 rm -f lwlib-Xol*)
395
396 echo "Making links to \`etc'"
397 ### Don't distribute = files, TAGS, DOC files, backups, autosaves, or
398 ### tex litter.
399 (cd etc
400 ln `ls -d * | grep -v 'RCS' | grep -v 'Old' | grep -v '^e$'` ../${tempdir}/etc
401 cd ../${tempdir}/etc
402 rm -f DOC* *~ \#*\# *.dvi *.log *.orig *.rej *,v =* core
403 rm -f TAGS)
404
405 echo "Making links to \`etc/e'"
406 (cd etc/e
407 ln `ls -d * | grep -v 'RCS'` ../../${tempdir}/etc/e
408 cd ../../${tempdir}/etc/e
409 rm -f *~ \#*\# *,v =* core)
410
411 echo "Making links to \`cpp'"
412 (cd cpp
413 ln cccp.c cexp.y Makefile README ../${tempdir}/cpp)
414
415 echo "Making links to \`info'"
416 # Don't distribute backups or autosaves.
417 (cd info
418 ln [a-zA-Z]* ../${tempdir}/info
419 cd ../${tempdir}/info
420 # Avoid an error when expanding the wildcards later.
421 ln emacs dummy~ ; ln emacs \#dummy\#
422 rm -f *~ \#*\# core)
423
424 echo "Making links to \`man'"
425 (cd man
426 ln *.texi *.aux *.cps *.fns *.kys *.vrs ../${tempdir}/man
427 test -f README && ln README ../${tempdir}/man
428 test -f Makefile.in && ln Makefile.in ../${tempdir}/man
429 ln ChangeLog split-man ../${tempdir}/man
430 cp texinfo.tex ../${tempdir}/man
431 cd ../${tempdir}/man
432 rm -f \#*\# =* *~ core emacs-index* *.Z *.z xmail
433 rm -f emacs.?? termcap.?? gdb.?? *.log *.toc *.dvi *.oaux)
434
435 echo "Making links to \`vms'"
436 (cd vms
437 ln [0-9a-zA-Z]* ../${tempdir}/vms
438 cd ../${tempdir}/vms
439 rm -f *~)
440
441 ### It would be nice if they could all be symlinks to etc's copy, but
442 ### you're not supposed to have any symlinks in distribution tar files.
443 echo "Making sure copying notices are all copies of \`etc/COPYING'"
444 rm -f ${tempdir}/etc/COPYING
445 cp etc/COPYING ${tempdir}/etc/COPYING
446 for subdir in lisp src lib-src info msdos; do
447 if [ -f ${tempdir}/${subdir}/COPYING ]; then
448 rm ${tempdir}/${subdir}/COPYING
449 fi
450 cp etc/COPYING ${tempdir}/${subdir}
451 done
452
453 #### Make sure that there aren't any hard links between files in the
454 #### distribution; people with afs can't deal with that. Okay,
455 #### actually we just re-copy anything with a link count greater
456 #### than two. (Yes, strictly greater than 2 is correct; since we
457 #### created these files by linking them in from the original tree,
458 #### they'll have exactly two links normally.)
459 ####
460 #### Commented out since it's not strictly necessary; it should suffice
461 #### to just break the link on alloca.c.
462 #echo "Breaking intra-tree links."
463 #find ${tempdir} ! -type d -links +2 \
464 # -exec cp -p {} $$ \; -exec rm -f {} \; -exec mv $$ {} \;
465 rm -f $tempdir/lib-src/alloca.c
466 cp $tempdir/src/alloca.c $tempdir/lib-src/alloca.c
467
468 if [ "${newer}" ]; then
469 echo "Removing files older than $newer"
470 ## We remove .elc files unconditionally, on the theory that anyone picking
471 ## up an incremental distribution already has a running Emacs to byte-compile
472 ## them with.
473 find ${tempparent} \( -name '*.elc' -o ! -newer ${newer} \) -exec rm -f {} \;
474 fi
475
476 if [ "${make_tar}" = yes ]; then
477 if [ "${default_gzip}" = "" ]; then
478 echo "Looking for gzip"
479 temppath=`echo $PATH | sed 's/^:/.:/
480 s/::/:.:/g
481 s/:$/:./
482 s/:/ /g'`
483 default_gzip=`(
484 for dir in ${temppath}; do
485 if [ -f ${dir}/gzip ]; then echo 'gzip --best'; exit 0; fi
486 done
487 echo compress
488 )`
489 fi
490 case "${default_gzip}" in
491 compress* ) gzip_extension=.Z ;;
492 * ) gzip_extension=.gz ;;
493 esac
494 echo "Creating tar file"
495 (cd ${tempparent} ; tar cvf - ${emacsname} ) \
496 | ${default_gzip} \
497 > ${emacsname}.tar${gzip_extension}
498 fi
499
500 if [ "${clean_up}" = yes ]; then
501 echo "Cleaning up the staging directory"
502 rm -rf ${tempparent}
503 else
504 (cd ${tempparent}; mv ${emacsname} ..)
505 rm -rf ${tempparent}
506 fi
507
508 ### make-dist ends here