2 ### make-dist: create an Emacs distribution tar file from current srcdir
4 ## Copyright (C) 1995, 1997-1998, 2000-2011 Free Software Foundation, Inc.
6 ## This file is part of GNU Emacs.
8 ## GNU Emacs is free software: you can redistribute it and/or modify
9 ## it under the terms of the GNU General Public License as published by
10 ## the Free Software Foundation, either version 3 of the License, or
11 ## (at your option) any later version.
13 ## GNU Emacs is distributed in the hope that it will be useful,
14 ## but WITHOUT ANY WARRANTY; without even the implied warranty of
15 ## MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
16 ## GNU General Public License for more details.
18 ## You should have received a copy of the GNU General Public License
19 ## along with GNU Emacs. If not, see <http://www.gnu.org/licenses/>.
23 ## This basically creates a duplicate directory structure, and then
24 ## hard links into it only those files that should be distributed.
25 ## This means that if you add a file with an odd name, you should make
26 ## sure that this script will include it.
32 ### Exit if a command fails.
35 ### Print out each line we read, for debugging's sake.
42 export LANGUAGE LC_ALL LC_MESSAGES LANG
44 ## Don't restrict access to any files.
54 while [ $# -gt 0 ]; do
56 ## This option tells make-dist to delete the staging directory
57 ## when done. It is useless to use this unless you make a tar file.
61 ## This option tells make-dist to make a tar file.
65 ## This option tells make-dist not to recompile or do analogous things.
69 ## This option says don't check for bad file names, etc.
73 ## This option tells make-dist to make the distribution normally, then
74 ## remove all files older than the given timestamp file. This is useful
75 ## for creating incremental or patch distributions.
81 ## This option tells make-dist to use `bzip2' instead of gzip.
98 echo "Usage: ${progname} [options]"
100 echo " --bzip2 use bzip2 instead of gzip"
101 echo " --clean-up delete staging directories when done"
102 echo " --lzma use lzma instead of gzip"
103 echo " --newer=TIME don't include files older than TIME"
104 echo " --no-check don't check for bad file names etc."
105 echo " --no-update don't recompile or do analogous things"
106 echo " --snapshot same as --clean-up --no-update --tar --no-check"
107 echo " --tar make a tar file"
113 echo "${progname}: Unrecognized argument: $1" >&2
120 ### Make sure we're running in the right place.
121 if [ ! -d src
-o ! -f src
/lisp.h
-o ! -d lisp
-o ! -f lisp
/subr.el
]; then
122 echo "${progname}: Can't find \`src/lisp.h' and \`lisp/subr.el'." >&2
123 echo "${progname} must be run in the top directory of the Emacs" >&2
124 echo "distribution tree. cd to that directory and try again." >&2
128 ### Find where to run Emacs.
129 ### (Accept only absolute file names.)
130 if [ $update = yes ];
134 EMACS
=`pwd`/src
/emacs
139 if [ ! -f "$EMACS" ]; then
140 echo "$0: You must set the EMACS environment variable " \
141 "to an absolute file name." 2>&1
148 ### Find out which version of Emacs this is.
150 sed -n 's/^AC_INIT(emacs,[ ]*\([^ )]*\).*/\1/p' <configure.in
152 if [ ! "${version}" ]; then
153 echo "${progname}: can't find current Emacs version in \`./src/emacs.c'" >&2
157 echo Version number is
$version
159 if [ $update = yes ]; then
160 if ! grep -q "@set EMACSVER *${version}" doc
/emacs
/emacsver.texi || \
161 ! grep -q "tree holds version *${version}" README
; then
162 echo "WARNING: README and/or emacsver.texi have the wrong version number"
163 echo "Consider running M-x set-version from admin/admin.el"
168 ### Make sure we don't already have a directory emacs-${version}.
170 emacsname
="emacs-${version}${new_extension}"
172 if [ -d ${emacsname} ]
174 echo Directory
"${emacsname}" already exists
>&2
178 ### Make sure the subdirectory is available.
179 tempparent
="make-dist.tmp.$$"
180 if [ -d ${tempparent} ]; then
181 echo "${progname}: staging directory \`${tempparent}' already exists.
182 Perhaps a previous invocation of \`${progname}' failed to clean up after
183 itself. Check that directories whose names are of the form
184 \`make-dist.tmp.NNNNN' don't contain any important information, remove
185 them, and try again." >&2
189 if [ $check = yes ]; then
190 ls -1 lisp
/[a-zA-Z
]*.el lisp
/[a-z
]*/[a-zA-Z0-9
]*.el \
191 lisp
/[a-z
]*/[a-z
]*/[a-zA-Z0-9
]*.el \
192 lisp
/[a-z
]*/[a-z
]*/[a-z
]*/[a-zA-Z0-9
]*.el \
193 leim
/[a-z
]*/[a-z
]*.el
> /tmp
/el
195 ls -1 lisp
/[a-zA-Z
]*.elc lisp
/[a-z
]*/[a-zA-Z0-9
]*.elc \
196 lisp
/[a-z
]*/[a-z
]*/[a-zA-Z0-9
]*.elc \
197 lisp
/[a-z
]*/[a-z
]*/[a-z
]*/[a-zA-Z0-9
]*.elc \
198 leim
/[a-z
]*/[a-z
]*.elc
> /tmp
/elc
200 ## Check for .elc files with no corresponding .el file.
201 sed 's/\.el$/.elc/' /tmp
/el
> /tmp
/elelc
203 bogosities
="`comm -13 /tmp/elelc /tmp/elc`"
204 if [ x
"${bogosities}" != x
"" ]; then
205 echo "The following .elc files have no corresponding .el files:"
209 ### Check for .el files with no corresponding .elc file.
210 sed 's/\.elc$/.el/' /tmp
/elc
> /tmp
/elcel
211 losers
="`comm -23 /tmp/el /tmp/elcel`"
213 rm -f /tmp
/el
/tmp
/elc
/tmp
/elcel
/tmp
/elelc
216 for file in $losers; do
217 grep -q "no-byte-compile: t" $file && continue
219 site-init.el | site-load.el | site-start.el | default.el
) continue ;;
222 bogosities
="$file $bogosities"
225 if [ x
"${bogosities}" != x
"" ]; then
226 echo "The following .el files have no corresponding .elc files:"
231 if [ $update = yes ]; then
233 ## Make sure configure is newer than configure.in.
234 if [ "x`ls -t configure configure.in | sed q`" != "xconfigure" ]; then
235 echo "\`./configure.in' is newer than \`./configure'" >&2
236 echo "Running autoconf" >&2
237 autoconf ||
{ x
=$?
; echo Autoconf FAILED
! >&2; exit $x; }
240 ## Make sure src/stamp-h.in is newer than configure.in.
241 if [ "x`ls -t src/stamp-h.in configure.in | sed q`" != "xsrc/stamp-h.in" ]; then
242 echo "\`./configure.in' is newer than \`./src/stamp-h.in'" >&2
243 echo "Running autoheader" >&2
244 autoheader ||
{ x
=$?
; echo Autoheader FAILED
! >&2; exit $x; }
246 echo timestamp
> src
/stamp-h.
in
249 echo "Updating Info files"
250 (cd doc
/emacs
; make info
)
251 (cd doc
/misc
; make info
)
252 (cd doc
/lispref
; make info
)
253 (cd doc
/lispintro
; make info
)
255 echo "Updating finder, custom and autoload data"
256 (cd lisp
; make updates EMACS
="$EMACS")
258 if test -f leim
/leim-list.el
; then
259 echo "Updating leim-list.el"
260 (cd leim
; make leim-list.el EMACS
="$EMACS")
263 echo "Recompiling Lisp files"
264 $EMACS -batch -f batch-byte-recompile-directory lisp leim
267 echo "Creating staging directory: \`${tempparent}'"
270 tempdir
="${tempparent}/${emacsname}"
272 ### This trap ensures that the staging directory will be cleaned up even
273 ### when the script is interrupted in mid-career.
274 if [ "${clean_up}" = yes ]; then
275 trap "echo 'Cleaning up the staging directory'; rm -rf ${tempparent}" EXIT
278 echo "Creating top directory: \`${tempdir}'"
281 ### We copy in the top-level files before creating the subdirectories in
282 ### hopes that this will make the top-level files appear first in the
283 ### tar file; this means that people can start reading the INSTALL and
284 ### README while the rest of the tar file is still unpacking. Whoopee.
285 echo "Making links to top-level files"
286 ln INSTALL README BUGS move-if-change
${tempdir}
287 ln ChangeLog Makefile.
in configure configure.
in ${tempdir}
288 ln config.bat make-dist update-subdirs vpath.
sed .dir-locals.el
${tempdir}
289 ln config.sub config.guess install-sh
${tempdir}
290 ln aclocal.
m4 ${tempdir}
291 ln compile depcomp missing
${tempdir}
292 ln arg-nonnull.h c
++defs.h warn-on-use.h
${tempdir}
294 echo "Creating subdirectories"
295 for subdir
in site-lisp \
296 leim leim
/CXTERM-DIC leim
/MISC-DIC \
297 leim
/SKK-DIC leim
/ja-dic leim
/quail \
298 src src
/m src
/s src
/bitmaps lib lib-src oldXMenu lwlib \
299 nt nt
/inc nt
/inc
/sys nt
/inc
/arpa nt
/inc
/netinet nt
/icons \
300 `find etc lisp -type d` \
301 doc
doc
/emacs
doc
/misc
doc
/man
doc
/lispref
doc
/lispintro \
303 nextstep nextstep
/Cocoa nextstep
/Cocoa
/Emacs.base \
304 nextstep
/Cocoa
/Emacs.base
/Contents \
305 nextstep
/Cocoa
/Emacs.base
/Contents
/Resources \
306 nextstep
/Cocoa
/Emacs.base
/Contents
/Resources
/English.lproj \
307 nextstep
/Cocoa
/Emacs.xcodeproj \
309 nextstep
/GNUstep
/Emacs.base \
310 nextstep
/GNUstep
/Emacs.base
/Resources
312 ## site-lisp for in-place installs (?).
313 [ "$subdir" = "site-lisp" ] ||
[ -d "$subdir" ] || \
314 echo "WARNING: $subdir not found, making anyway"
315 echo " ${tempdir}/${subdir}"
316 mkdir
${tempdir}/${subdir}
319 echo "Making links to \`lisp' and its subdirectories"
320 files
=`find lisp \( -name '*.el' -o -name '*.elc' -o -name 'ChangeLog*' \
321 -o -name 'README*' \)`
323 ### Don't distribute site-init.el, site-load.el, or default.el.
324 for file in lisp
/Makefile.
in lisp
/makefile.w32-in
$files; do
326 */site-init
*|
*/site-load
*|
*/default
*) continue ;;
328 ln $file $tempdir/$file
331 echo "Making links to \`leim' and its subdirectories"
333 ln makefile.w32-in ..
/${tempdir}/leim
334 ln ChangeLog README ..
/${tempdir}/leim
335 ln CXTERM-DIC
/README CXTERM-DIC
/*.tit ..
/${tempdir}/leim
/CXTERM-DIC
336 ln SKK-DIC
/README SKK-DIC
/SKK-JISYO.L ..
/${tempdir}/leim
/SKK-DIC
337 ln MISC-DIC
/README MISC-DIC
/*.
* ..
/${tempdir}/leim
/MISC-DIC
338 ln ja-dic
/*.el ja-dic
/*.elc ..
/${tempdir}/leim
/ja-dic
339 ln Makefile.
in ..
/${tempdir}/leim
/Makefile.
in
340 ln leim-ext.el ..
/${tempdir}/leim
/leim-ext.el
341 ## Lisp files that start with a capital (also 4Corner.el) are
342 ## generated from TIT dictionaries so we don't distribute them.
343 ln quail
/[a-z
]*.el quail
/[a-z
]*.elc ..
/${tempdir}/leim
/quail
344 rm -f ..
/${tempdir}/leim
/quail
/quick-b5.
*
345 rm -f ..
/${tempdir}/leim
/quail
/quick-cns.
*
346 rm -f ..
/${tempdir}/leim
/quail
/tsang-b5.
*
347 rm -f ..
/${tempdir}/leim
/quail
/tsang-cns.
*)
349 echo "Making links to \`src'"
350 ### Don't distribute the configured versions of
351 ### config.in, paths.in, buildobj.h, or Makefile.in.
353 echo " (It is ok if ln fails in some cases.)"
354 ln [a-zA-Z
]*.
[chm
] ..
/${tempdir}/src
355 ln [a-zA-Z
]*.
in ..
/${tempdir}/src
356 ln [a-zA-Z
]*.mk ..
/${tempdir}/src
357 ln README ChangeLog ChangeLog.
*[0-9] ..
/${tempdir}/src
358 ln makefile.w32-in ..
/${tempdir}/src
359 ln .gdbinit .dbxinit ..
/${tempdir}/src
361 rm -f globals.h config.h epaths.h Makefile buildobj.h
)
363 echo "Making links to \`src/bitmaps'"
365 ln README
*.xbm ..
/..
/${tempdir}/src
/bitmaps
)
367 echo "Making links to \`src/m'"
369 ln README
[a-zA-Z0-9
]*.h ..
/..
/${tempdir}/src
/m
)
371 echo "Making links to \`src/s'"
373 ln README
[a-zA-Z0-9
]*.h ..
/..
/${tempdir}/src
/s
)
375 echo "Making links to \`lib'"
376 (build_aux_h
=`(ls *.h)`
378 ln [a-zA-Z
]*.
[ch
] ..
/${tempdir}/lib
379 ln gnulib.mk Makefile.am Makefile.
in ..
/${tempdir}/lib
381 rm -f `(echo "$build_aux_h"; ls *.in.h) | sed '/[*]/d; s/.in.h$/.h/'`)
383 echo "Making links to \`lib-src'"
385 ln [a-zA-Z
]*.
[ch
] ..
/${tempdir}/lib-src
386 ln ChangeLog Makefile.
in README testfile vcdiff ..
/${tempdir}/lib-src
387 ln grep-changelog rcs2log rcs-checkin ..
/${tempdir}/lib-src
388 ln makefile.w32-in ..
/${tempdir}/lib-src
)
390 echo "Making links to \`m4'"
392 ln *.
m4 ..
/${tempdir}/m4)
394 ## Exclude README.W32 because it is specific to pre-built binaries(?).
395 echo "Making links to \`nt'"
397 ln emacs.manifest emacs.rc emacsclient.rc config.nt ..
/${tempdir}/nt
398 ln emacs-src.tags nmake.defs gmake.defs subdirs.el ..
/${tempdir}/nt
399 ln [a-z
]*.bat
[a-z
]*.
[ch
] ..
/${tempdir}/nt
400 ln ChangeLog INSTALL README makefile.w32-in ..
/${tempdir}/nt
)
402 echo "Making links to \`nt/inc' and its subdirectories"
403 for f
in `find nt/inc -type f -name '[a-z]*.h'`; do
407 echo "Making links to \`nt/icons'"
409 ln README
[a-z
]*.ico ..
/..
/${tempdir}/nt
/icons
410 ln [a-z
]*.cur ..
/..
/${tempdir}/nt
/icons
)
412 echo "Making links to \`msdos'"
414 ln ChangeLog INSTALL README emacs.ico emacs.pif ..
/${tempdir}/msdos
415 ln is_exec.c sigaction.c mainmake.v2
sed*.inp ..
/${tempdir}/msdos
)
417 echo "Making links to \`nextstep'"
419 ln ChangeLog README INSTALL ..
/${tempdir}/nextstep
)
421 echo "Making links to \`nextstep/Cocoa/Emacs.base/Contents'"
422 (cd nextstep
/Cocoa
/Emacs.base
/Contents
423 ln Info.plist PkgInfo ..
/..
/..
/..
/${tempdir}/nextstep
/Cocoa
/Emacs.base
/Contents
)
425 echo "Making links to \`nextstep/Cocoa/Emacs.base/Contents/Resources'"
426 (cd nextstep
/Cocoa
/Emacs.base
/Contents
/Resources
427 ln Credits.html
*.icns ..
/..
/..
/..
/..
/${tempdir}/nextstep
/Cocoa
/Emacs.base
/Contents
/Resources
)
429 echo "Making links to \`nextstep/Cocoa/Emacs.base/Contents/Resources/English.lproj'"
430 (cd nextstep
/Cocoa
/Emacs.base
/Contents
/Resources
/English.lproj
431 ln InfoPlist.
strings ..
/..
/..
/..
/..
/..
/${tempdir}/nextstep
/Cocoa
/Emacs.base
/Contents
/Resources
/English.lproj
)
433 echo "Making links to \`nextstep/Cocoa/Emacs.xcodeproj'"
434 (cd nextstep
/Cocoa
/Emacs.xcodeproj
435 ln project.pbxproj ..
/..
/..
/${tempdir}/nextstep
/Cocoa
/Emacs.xcodeproj
)
437 echo "Making links to \`nextstep/GNUstep/Emacs.base/Resources'"
438 (cd nextstep
/GNUstep
/Emacs.base
/Resources
439 ln Emacs.desktop Info-gnustep.plist README emacs.tiff ..
/..
/..
/..
/${tempdir}/nextstep
/GNUstep
/Emacs.base
/Resources
)
441 echo "Making links to \`oldXMenu'"
443 ln *.
[ch
] *.
in ..
/${tempdir}/oldXMenu
444 ln README ChangeLog ..
/${tempdir}/oldXMenu
)
446 echo "Making links to \`lwlib'"
448 ln *.
[ch
] *.
in ..
/${tempdir}/lwlib
449 ln README ChangeLog ..
/${tempdir}/lwlib
)
451 echo "Making links to \`etc' and its subdirectories"
452 for f
in `find etc -type f`; do
454 etc
/DOC
*|etc
/*.pyc
) continue ;;
459 echo "Making links to \`info'"
460 ln `find info -type f -print` ${tempdir}/info
462 echo "Making links to \`doc/emacs'"
464 ln *.texi
*.
in makefile.w32-in ChangeLog
* ..
/..
/${tempdir}/doc
/emacs
)
466 echo "Making links to \`doc/misc'"
468 ln *.texi
*.tex
*.
in makefile.w32-in gnus-news.el ChangeLog
* ..
/..
/${tempdir}/doc
/misc
)
470 echo "Making links to \`doc/lispref'"
472 ln *.texi
*.
in makefile.w32-in README ChangeLog
* ..
/..
/${tempdir}/doc
/lispref
473 ln *.txt
*.el spellfile tindex.pl ..
/..
/${tempdir}/doc
/lispref
474 ln two-volume.
make ..
/..
/${tempdir}/doc
/lispref
)
476 echo "Making links to \`doc/lispintro'"
478 ln *.texi
*.
in makefile.w32-in
*.eps
*.pdf ..
/..
/${tempdir}/doc
/lispintro
479 ln README ChangeLog
* ..
/..
/${tempdir}/doc
/lispintro
480 cd ..
/..
/${tempdir}/doc
/lispintro
)
482 echo "Making links to \`doc/man'"
484 ln ChangeLog
* *.1 ..
/..
/${tempdir}/doc
/man
485 cd ..
/..
/${tempdir}/doc
/man
)
487 ### It would be nice if they could all be symlinks to top-level copy, but
488 ### you're not supposed to have any symlinks in distribution tar files.
489 echo "Making sure copying notices are all copies of \`COPYING'"
490 for subdir
in . etc info leim lib lib-src lisp lwlib msdos nt src
; do
491 rm -f ${tempdir}/${subdir}/COPYING
492 cp COPYING
${tempdir}/${subdir}
495 if [ "${newer}" ]; then
496 echo "Removing files older than $newer"
497 ## We remove .elc files unconditionally, on the theory that anyone picking
498 ## up an incremental distribution already has a running Emacs to byte-compile
500 find ${tempparent} \( -name '*.elc' -o ! -newer ${newer} \) -exec rm -f {} \
;
503 ## Don't distribute backups, autosaves, etc.
504 echo "Removing unwanted files"
505 find ${tempparent} \
( -name '*~' -o -name '#*#' -o -name '.*ignore' -o -name '=*' -o -name 'TAGS' \
) -exec rm -f {} \
;
507 if [ "${make_tar}" = yes ]; then
508 echo "Looking for $default_gzip"
510 temppath
=`echo $PATH | sed -e 's/^:/.:/' -e 's/::/:.:/g' -e 's/:$/:./' \
512 for dir
in ${temppath}; do
513 [ -x ${dir}/$default_gzip ] ||
continue
516 if [ "$found" = "0" ]; then
517 echo "WARNING: \`$default_gzip' not found, will not compress" >&2
520 case "${default_gzip}" in
521 bzip2) gzip_extension
=.bz2
;;
522 lzma
) gzip_extension
=.lzma
;;
523 gzip) gzip_extension
=.gz
; default_gzip
="gzip --best";;
524 *) gzip_extension
= ;;
526 echo "Creating tar file"
527 (cd ${tempparent} ; tar cvf
- ${emacsname} ) \
529 > ${emacsname}.
tar${gzip_extension}
532 if [ "${clean_up}" != yes ]; then
533 (cd ${tempparent}; mv ${emacsname} ..
)
537 ### make-dist ends here