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.
11 ### Exit if a command fails.
14 ### Print out each line we read, for debugging's sake.
21 while [ $# -gt 0 ]; do
23 ## This option tells make-dist not to delete the staging directory
24 ## after it's done making the tar file.
28 ## This option tells make-dist not to make a tar file. Since it's
29 ## rather pointless to build the whole staging directory and then
30 ## nuke it, using this option also selects '--no-clean-up'.
35 ## This option tells make-dist to make the distribution normally, then
36 ## remove all files older than the given timestamp file. This is useful
37 ## for creating incremental or patch distributions.
43 ## This option tells make-dist to use `compress' instead of gzip.
44 ## Normally, make-dist uses gzip whenever it is present.
46 default_gzip
="compress"
49 echo "${progname}: Unrecognized argument: $1" >&2
56 ### Make sure we're running in the right place.
57 if [ ! -d src
-o ! -f src
/lisp.h
-o ! -d lisp
-o ! -f lisp
/version.el
]; then
58 echo "${progname}: Can't find \`src/lisp.h' and \`lisp/version.el'." >&2
59 echo "${progname} must be run in the top directory of the Emacs" >&2
60 echo "distribution tree. cd to that directory and try again." >&2
64 ### Find out which version of Emacs this is.
65 shortversion
=`grep 'defconst[ ]*emacs-version' lisp/version.el \
66 | sed -e 's/^.*"\([0-9][0-9]*\.[0-9][0-9]*\)\..*$/\1/'`
67 version
=`grep 'defconst[ ]*emacs-version' lisp/version.el \
68 | sed -e 's/^[^"]*"\([^"]*\)".*$/\1/'`
69 if [ ! "${version}" ]; then
70 echo "${progname}: can't find current Emacs version in \`./lisp/version.el'." >&2
74 if grep -s "GNU Emacs version ${shortversion}" .
/man
/emacs.texi
> /dev
/null
; then
77 echo "You must update the version number in \`./man/emacs.texi'"
81 ### Make sure we don't already have a directory emacs-${version}.
83 emacsname
="emacs-${version}${new_extension}"
85 if [ -d ${emacsname} ]
87 echo Directory
"${emacsname}" already exists
>&2
91 ### Make sure the subdirectory is available.
92 tempparent
="make-dist.tmp.$$"
93 if [ -d ${tempparent} ]; then
94 echo "${progname}: staging directory \`${tempparent}' already exists.
95 Perhaps a previous invocation of \`${progname}' failed to clean up after
96 itself. Check that directories whose names are of the form
97 \`make-dist.tmp.NNNNN' don't contain any important information, remove
98 them, and try again." >&2
102 ### Check for .elc files with no corresponding .el file.
103 ls -1 lisp
/*.el |
sed 's/\.el$/.elc/' > /tmp
/el
104 ls -1 lisp
/*.elc
> /tmp
/elc
105 bogosities
="`comm -13 /tmp/el /tmp/elc`"
106 if [ "${bogosities}" != "" ]; then
107 echo "The following .elc files have no corresponding .el files:"
110 rm -f /tmp
/el
/tmp
/elc
112 ### Make sure configure is newer than configure.in.
113 if [ "x`ls -t configure configure.in | head -1`" != "xconfigure" ]; then
114 echo "\`./configure.in' seems to be newer than \`./configure.'" >&2
115 echo "Attempting to run autoconf." >&2
119 ### Update getdate.c.
120 (cd lib-src
; make -f Makefile getdate.c YACC
="bison -y")
122 echo "Creating staging directory: \`${tempparent}'"
125 tempdir
="${tempparent}/${emacsname}"
127 ### This trap ensures that the staging directory will be cleaned up even
128 ### when the script is interrupted in mid-career.
129 if [ "${clean_up}" = yes ]; then
130 trap "echo 'Interrupted...cleaning up the staging directory.'; rm -rf ${tempparent}; exit 1" 1 2 15
133 echo "Creating top directory: \`${tempdir}'"
136 ### We copy in the top-level files before creating the subdirectories in
137 ### hopes that this will make the top-level files appear first in the
138 ### tar file; this means that people can start reading the INSTALL and
139 ### README while the rest of the tar file is still unpacking. Whoopee.
140 echo "Making links to top-level files."
141 ln GETTING.GNU.SOFTWARE INSTALL PROBLEMS README move-if-change
${tempdir}
142 ln ChangeLog Makefile.
in build-ins.
in configure configure.
in ${tempdir}
143 ln config.bat make-dist vpath.
sed ${tempdir}
144 ### Copy these files; they're cross-filesystem symlinks.
145 cp config.sub
${tempdir}
146 cp config.guess
${tempdir}
147 cp install.sh
${tempdir}
149 echo "Updating version number in README."
152 '$1 " " $2 " " $3 " " $4 " " $5 == "This directory tree holds version" { $6 = version; print $0 }
153 $1 " " $2 " " $3 " " $4 " " $5 != "This directory tree holds version"' \
154 version
=${version} README
> tmp.README
155 mv tmp.README README
)
158 echo "Creating subdirectories."
159 # I think we're not going to distribute anything in external-lisp, so
160 # I've removed it from this list.
161 for subdir
in lisp lisp
/term site-lisp \
162 src src
/m src
/s src
/bitmaps lib-src oldXMenu lwlib \
163 etc lock cpp info man msdos shortnames vms
; do
164 mkdir
${tempdir}/${subdir}
167 echo "Making links to \`lisp'."
168 ### Don't distribute TAGS, =*.el files, site-init.el, site-load.el, or default.el.
170 ln [a-zA-Z
]*.el ..
/${tempdir}/lisp
171 ln [a-zA-Z
]*.elc ..
/${tempdir}/lisp
172 ln [a-zA-Z
]*.dat ..
/${tempdir}/lisp
173 ## simula.el doesn't keep abbreviations in simula.defns any more.
174 ## ln [a-zA-Z]*.defns ../${tempdir}/lisp
175 ln ChangeLog Makefile ChangeLog.? README dired.todo ..
/${tempdir}/lisp
176 cd ..
/${tempdir}/lisp
178 rm -f site-init site-init.el site-init.elc
179 rm -f site-load site-load.el site-load.elc
180 rm -f default default.el default.elc
)
182 #echo "Making links to \`lisp/calc-2.02'."
183 #### Don't distribute =*.el files, TAGS or backups.
185 # ln [a-zA-Z]*.el ../../${tempdir}/lisp/calc-2.02
186 # ln [a-zA-Z]*.elc ../../${tempdir}/lisp/calc-2.02
187 # ln calc.info* calc.texinfo calc-refcard.* ../../${tempdir}/lisp/calc-2.02
188 # ln INSTALL Makefile README README.prev ../../${tempdir}/lisp/calc-2.02
189 # cd ../../${tempdir}/lisp/calc-2.02
192 echo "Making links to \`lisp/term'."
193 ### Don't distribute =*.el files or TAGS.
195 ln [a-zA-Z
]*.el ..
/..
/${tempdir}/lisp
/term
196 ln [a-zA-Z
]*.elc ..
/..
/${tempdir}/lisp
/term
197 ln README ..
/..
/${tempdir}/lisp
/term
200 ### echo "Making links to \`external-lisp'."
201 ### ### Don't distribute =*.el files or TAGS.
202 ### (cd external-lisp
203 ### ln [a-zA-Z]*.el ../${tempdir}/external-lisp
204 ### ln [a-zA-Z]*.elc ../${tempdir}/external-lisp
205 ### ln ChangeLog README ../${tempdir}/external-lisp
208 echo "Making links to \`src'."
209 ### Don't distribute =*.[ch] files, or the configured versions of
210 ### config.h.in, paths.h.in, or Makefile.in.in, or TAGS.
212 echo " (If we can't link gmalloc.c, that's okay.)"
213 ln [a-zA-Z
]*.c ..
/${tempdir}/src
214 ## Might be a symlink to a file on another filesystem.
215 test -f ..
/${tempdir}/src
/gmalloc.c ||
cp gmalloc.c ..
/${tempdir}/src
216 ln [a-zA-Z
]*.h ..
/${tempdir}/src
217 ln [a-zA-Z
]*.s ..
/${tempdir}/src
218 ln README Makefile.
in.
in ChangeLog ChangeLog.? config.h.
in paths.h.
in \
220 ln .gdbinit .dbxinit ..
/${tempdir}/src
221 ln *.opt vms-pp.trans ..
/${tempdir}/src
223 rm -f config.h paths.h Makefile
226 echo "Making links to \`src/bitmaps'."
228 ln README
*.xbm ..
/..
/${tempdir}/src
/bitmaps
)
230 echo "Making links to \`src/m'."
232 ln README
[a-zA-Z0-9
]*.h ..
/..
/${tempdir}/src
/m
)
234 echo "Making links to \`src/s'."
236 ln README
[a-zA-Z0-9
]*.h ..
/..
/${tempdir}/src
/s
)
238 echo "Making links to \`lib-src'."
240 ln [a-zA-Z
]*.
[chy
] [a-zA-Z
]*.
lex ..
/${tempdir}/lib-src
241 ln ChangeLog Makefile.
in.
in README testfile vcdiff ..
/${tempdir}/lib-src
242 ln emacs.csh rcs2log rcs-checkin ..
/${tempdir}/lib-src
243 cd ..
/${tempdir}/lib-src
244 rm -f getdate.tab.c y.tab.c y.tab.h
247 echo "Making links to \`msdos'."
249 ln ChangeLog emacs.ico emacs.pif ..
/${tempdir}/msdos
250 ln mainmake
sed[123].inp ..
/${tempdir}/msdos
251 cd ..
/${tempdir}/msdos
254 echo "Making links to \`oldXMenu'."
256 ln *.c
*.h
*.
in ..
/${tempdir}/oldXMenu
257 ln README Imakefile ChangeLog ..
/${tempdir}/oldXMenu
258 ln compile.com descrip.mms ..
/${tempdir}/oldXMenu
)
260 echo "Making links to \`lwlib'."
262 ln *.c
*.h
*.
in ..
/${tempdir}/lwlib
263 ln README Imakefile ChangeLog ..
/${tempdir}/lwlib
)
265 echo "Making links to \`etc'."
266 ### Don't distribute = files, TAGS, DOC files, backups, autosaves, or
269 ln `ls -d * | grep -v 'RCS' | grep -v 'Old'` ..
/${tempdir}/etc
271 rm -f DOC
* *~ \
#*\# *.dvi *.log *,v =* core
274 echo "Making links to \`cpp'."
276 ln cccp.c cexp.y Makefile README ..
/${tempdir}/cpp
)
278 echo "Making links to \`info'."
279 # Don't distribute backups or autosaves.
281 ln [a-zA-Z
]* ..
/${tempdir}/info
282 cd ..
/${tempdir}/info
283 # Avoid an error when expanding the wildcards later.
284 ln emacs dummy~
; ln emacs \
#dummy\#
287 echo "Making links to \`man'."
289 ln *.texi
*.aux
*.cps
*.fns
*.kys
*.vrs ..
/${tempdir}/man
290 test -f README
&& ln README ..
/${tempdir}/man
291 test -f Makefile
&& ln Makefile ..
/${tempdir}/man
292 ln ChangeLog split-man ..
/${tempdir}/man
293 cp texinfo.tex texindex.c getopt.c ..
/${tempdir}/man
295 rm -f \
#*\# =* *~ core emacs-index* *.Z *.z xmail
296 rm -f emacs.?? termcap.?? gdb.??
*.log
*.toc
*.dvi
*.oaux
)
298 echo "Making links to \`shortnames'."
300 ln *.c ..
/${tempdir}/shortnames
301 ln Makefile reserved special ..
/${tempdir}/shortnames
)
303 echo "Making links to \`vms'."
305 ln [0-9a-zA-Z]* ..
/${tempdir}/vms
309 ### It would be nice if they could all be symlinks to etc's copy, but
310 ### you're not supposed to have any symlinks in distribution tar files.
311 echo "Making sure copying notices are all copies of \`etc/COPYING'."
312 rm -f ${tempdir}/etc
/COPYING
313 cp etc
/COPYING
${tempdir}/etc
/COPYING
314 for subdir
in lisp src lib-src info shortnames msdos
; do
315 if [ -f ${tempdir}/${subdir}/COPYING
]; then
316 rm ${tempdir}/${subdir}/COPYING
318 cp etc
/COPYING
${tempdir}/${subdir}
321 #### Make sure that there aren't any hard links between files in the
322 #### distribution; people with afs can't deal with that. Okay,
323 #### actually we just re-copy anything with a link count greater
325 echo "Breaking intra-tree links."
326 find ${tempdir} ! -type d
-links +2 \
327 -exec cp -p {} $$ \
; -exec rm -f {} \
; -exec mv $$
{} \
;
329 if [ "${newer}" ]; then
330 echo "Removing files older than $newer."
331 ## We remove .elc files unconditionally, on the theory that anyone picking
332 ## up an incremental distribution already has a running Emacs to byte-compile
334 find ${tempparent} \( -name '*.elc' -o ! -newer ${newer} \) -exec rm -f {} \
;
337 if [ "${make_tar}" = yes ]; then
338 if [ "${default_gzip}" = "" ]; then
339 echo "Looking for gzip."
340 temppath
=`echo $PATH | sed 's/^:/.:/
345 for dir in ${temppath}; do
346 if [ -f ${dir}/gzip ]; then echo 'gzip --best'; exit 0; fi
351 case "${default_gzip}" in
352 compress* ) gzip_extension
=.Z
;;
353 * ) gzip_extension
=.gz
;;
355 echo "Creating tar file."
356 (cd ${tempparent} ; tar cvf
- ${emacsname} ) \
358 > ${emacsname}.
tar${gzip_extension}
361 if [ "${clean_up}" = yes ]; then
362 echo "Cleaning up the staging directory."
365 (cd ${tempparent}; mv ${emacsname} ..
)
369 ### make-dist ends here