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