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 version
=`grep 'defconst[ ]*emacs-version' lisp/version.el \
66 | sed -e 's/^.*"\([0-9][0-9]*\.[0-9][0-9]*\)\..*$/\1/'`
67 if [ ! "${version}" ]; then
68 echo "${progname}: can't find current emacs version in \`./lisp/version.el'." >&2
72 if grep -s "GNU Emacs version ${version}" .
/man
/emacs.texi
> /dev
/null
; then
75 echo "You must update the version number in \`./man/emacs.texi'"
79 ### Make sure the subdirectory is available.
80 tempparent
="make-dist.tmp.$$"
81 if [ -d ${tempparent} ]; then
82 echo "${progname}: staging directory \`${tempparent}' already exists.
83 Perhaps a previous invocation of \`${progname}' failed to clean up after
84 itself. Check that directories whose names are of the form
85 \`make-dist.tmp.NNNNN' don't contain any important information, remove
86 them, and try again." >&2
90 ### Check for .elc files with no corresponding .el file.
91 ls -1 lisp
/*.el |
sed 's/\.el$/.elc/' > /tmp
/el
92 ls -1 lisp
/*.elc
> /tmp
/elc
93 bogosities
="`comm -13 /tmp/el /tmp/elc`"
94 if [ "${bogosities}" != "" ]; then
95 echo "The following .elc files have no corresponding .el files:"
98 rm -f /tmp
/el
/tmp
/elc
100 ### Make sure configure is newer than configure.in.
101 if [ "x`ls -t configure configure.in | head -1`" != "xconfigure" ]; then
102 echo "`./configure.in' seems to be newer than `./configure.'" >&2
103 echo "Attempting to run autoconf." >&2
107 ### Update getdate.c.
108 (cd lib-src
; make -f Makefile.
in getdate.c
)
110 echo "Creating staging directory: \`${tempparent}'"
112 emacsname
="emacs-${version}${new_extension}"
113 tempdir
="${tempparent}/${emacsname}"
115 ### This trap ensures that the staging directory will be cleaned up even
116 ### when the script is interrupted in mid-career.
117 if [ "${clean_up}" = yes ]; then
118 trap "echo 'Interrupted...cleaning up the staging directory.'; rm -rf ${tempparent}; exit 1" 1 2 15
121 echo "Creating top directory: \`${tempdir}'"
124 ### We copy in the top-level files before creating the subdirectories in
125 ### hopes that this will make the top-level files appear first in the
126 ### tar file; this means that people can start reading the INSTALL and
127 ### README while the rest of the tar file is still unpacking. Whoopee.
128 echo "Making links to top-level files."
129 ln GETTING.GNU.SOFTWARE INSTALL PROBLEMS README move-if-change
${tempdir}
130 ln ChangeLog Makefile.
in build-install.
in configure configure.
in ${tempdir}
131 ln make-dist
${tempdir}
132 ### Copy config.guess and config.sub; they're cross-filesystem symlinks.
133 cp config.sub
${tempdir}
134 cp config.guess
${tempdir}
136 echo "Updating version number in README."
139 '$1 " " $2 " " $3 " " $4 " " $5 == "This directory tree holds version" { $6 = version; print $0 }
140 $1 " " $2 " " $3 " " $4 " " $5 != "This directory tree holds version"' \
141 version
=${version} README
> tmp.README
142 mv tmp.README README
)
145 echo "Creating subdirectories."
146 # I think we're not going to distribute anything in external-lisp, so
147 # I've removed it from this list.
148 for subdir
in lisp lisp
/term site-lisp \
149 src src
/m src
/s src
/bitmaps lib-src oldXMenu \
150 etc lock cpp info man shortnames vms
; do
151 mkdir
${tempdir}/${subdir}
154 echo "Making links to \`lisp'."
155 ### Don't distribute TAGS, =*.el files, site-init.el, site-load.el, or default.el.
157 ln [a-zA-Z
]*.el ..
/${tempdir}/lisp
158 ln [a-zA-Z
]*.elc ..
/${tempdir}/lisp
159 ln [a-zA-Z
]*.dat forms.README ..
/${tempdir}/lisp
160 ## simula.el doesn't keep abbreviations in simula.defns any more.
161 ## ln [a-zA-Z]*.defns ../${tempdir}/lisp
162 ln ChangeLog README dired.todo ..
/${tempdir}/lisp
163 cd ..
/${tempdir}/lisp
165 rm -f site-init site-init.el site-init.elc
166 rm -f site-load site-load.el site-load.elc
167 rm -f default default.el default.elc
)
169 #echo "Making links to \`lisp/calc-2.02'."
170 #### Don't distribute =*.el files, TAGS or backups.
172 # ln [a-zA-Z]*.el ../../${tempdir}/lisp/calc-2.02
173 # ln [a-zA-Z]*.elc ../../${tempdir}/lisp/calc-2.02
174 # ln calc.info* calc.texinfo calc-refcard.* ../../${tempdir}/lisp/calc-2.02
175 # ln INSTALL Makefile README README.prev ../../${tempdir}/lisp/calc-2.02
176 # cd ../../${tempdir}/lisp/calc-2.02
179 echo "Making links to \`lisp/term'."
180 ### Don't distribute =*.el files or TAGS.
182 ln [a-zA-Z
]*.el ..
/..
/${tempdir}/lisp
/term
183 ln [a-zA-Z
]*.elc ..
/..
/${tempdir}/lisp
/term
184 ln README ..
/..
/${tempdir}/lisp
/term
187 ### echo "Making links to \`external-lisp'."
188 ### ### Don't distribute =*.el files or TAGS.
189 ### (cd external-lisp
190 ### ln [a-zA-Z]*.el ../${tempdir}/external-lisp
191 ### ln [a-zA-Z]*.elc ../${tempdir}/external-lisp
192 ### ln ChangeLog README ../${tempdir}/external-lisp
195 echo "Making links to \`src'."
196 ### Don't distribute =*.[ch] files, or the configured versions of
197 ### config.h.in, paths.h.in, or Makefile.in, or TAGS.
199 echo " (If we can't link gmalloc.c, that's okay.)"
200 ln [a-zA-Z
]*.c ..
/${tempdir}/src
201 ## Might be a symlink to a file on another filesystem.
202 test -f ..
/${tempdir}/src
/gmalloc.c ||
cp gmalloc.c ..
/${tempdir}/src
203 ln [a-zA-Z
]*.h ..
/${tempdir}/src
204 ln [a-zA-Z
]*.s ..
/${tempdir}/src
205 ln README Makefile.
in ymakefile ChangeLog config.h.
in paths.h.
in \
207 ln .gdbinit .dbxinit gnu-hp300 ..
/${tempdir}/src
208 ln *.opt vms-pp.trans ..
/${tempdir}/src
210 rm -f config.h paths.h Makefile
211 if [ -z "${newer}" ]; then
212 etags
*.h
*.c ..
/lisp
/*.el
216 echo "Making links to \`src/bitmaps'."
218 ln README
*.xbm ..
/..
/${tempdir}/src
/bitmaps
)
220 echo "Making links to \`src/m'."
222 ln README
[a-zA-Z0-9
]*.h ..
/..
/${tempdir}/src
/m
)
224 echo "Making links to \`src/s'."
226 ln README
[a-zA-Z0-9
]*.h ..
/..
/${tempdir}/src
/s
)
228 echo "Making links to \`lib-src'."
230 ln [a-zA-Z
]*.
[chy
] [a-zA-Z
]*.
lex ..
/${tempdir}/lib-src
231 ln ChangeLog Makefile.
in README testfile vcdiff rcs2log ..
/${tempdir}/lib-src
232 ln emacs.csh rcs-checkin ..
/${tempdir}/lib-src
233 cd ..
/${tempdir}/lib-src
234 rm -f getdate.c getdate.tab.c y.tab.c y.tab.h
237 echo "Making links to \`oldXMenu'."
239 ln *.c
*.h
*.
in ..
/${tempdir}/oldXMenu
240 ln README Imakefile ChangeLog ..
/${tempdir}/oldXMenu
241 ln compile.com descrip.mms ..
/${tempdir}/oldXMenu
)
243 echo "Making links to \`etc'."
244 ### Don't distribute = files, TAGS, DOC files, backups, autosaves, or
247 ln `ls -d * | grep -v 'RCS' | grep -v 'Old'` ..
/${tempdir}/etc
249 rm -f DOC
* *~ \
#*\# *.dvi *.log *,v =* core
252 echo "Making links to \`cpp'."
254 ln cccp.c cexp.y Makefile README ..
/${tempdir}/cpp
)
256 echo "Making links to \`info'."
257 # Don't distribute backups or autosaves.
259 ln [a-zA-Z
]* ..
/${tempdir}/info
260 cd ..
/${tempdir}/info
261 # Avoid an error when expanding the wildcards later.
262 ln emacs dummy~
; ln emacs \
#dummy\#
265 echo "Making links to \`man'."
267 ln *.texinfo
*.texi
*.aux
*.cps
*.fns
*.kys
*.vrs ..
/${tempdir}/man
268 test -f README
&& ln README ..
/${tempdir}/man
269 test -f Makefile
&& ln Makefile ..
/${tempdir}/man
270 ln ChangeLog split-man ..
/${tempdir}/man
271 cp texinfo.tex texindex.c ..
/${tempdir}/man
273 rm -f \
#*\# =* *~ core emacs-index* *.Z *.z xmail
274 rm -f emacs.?? termcap.?? gdb.??
*.log
*.toc
*.dvi
*.oaux
)
276 echo "Making links to \`shortnames'."
278 ln *.c ..
/${tempdir}/shortnames
279 ln Makefile reserved special ..
/${tempdir}/shortnames
)
281 echo "Making links to \`vms'."
283 ln [0-9a-zA-Z]* ..
/${tempdir}/vms
287 ### It would be nice if they could all be symlinks to etc's copy, but
288 ### you're not supposed to have any symlinks in distribution tar files.
289 echo "Making sure copying notices are all copies of \`etc/COPYING'."
290 rm -f ${tempdir}/etc
/COPYING
291 cp etc
/COPYING
${tempdir}/etc
/COPYING
292 # I think we're not going to distribute anything in external-lisp, so
293 # I've removed it from this list.
294 for subdir
in lisp src lib-src info shortnames
; do
295 if [ -f ${tempdir}/${subdir}/COPYING
]; then
296 rm ${tempdir}/${subdir}/COPYING
298 cp etc
/COPYING
${tempdir}/${subdir}
301 #### Make sure that there aren't any hard links between files in the
302 #### distribution; people with afs can't deal with that. Okay,
303 #### actually we just re-copy anything with a link count greater
305 echo "Breaking intra-tree links."
306 find ${tempdir} ! -type d
-links +2 \
307 -exec cp {} $$ \
; -exec rm -f {} \
; -exec mv $$
{} \
;
309 if [ "${newer}" ]; then
310 echo "Removing files older than $newer."
311 ## We remove .elc files unconditionally, on the theory that anyone picking
312 ## up an incremental distribution already has a running Emacs to byte-compile
314 find ${tempparent} \( -name '*.elc' -o ! -newer ${newer} \) -exec rm -f {} \
;
317 if [ "${make_tar}" = yes ]; then
318 if [ "${default_gzip}" = "" ]; then
319 echo "Looking for gzip."
320 temppath
=`echo $PATH | sed 's/^:/.:/
325 for dir in ${temppath}; do
326 if [ -f ${dir}/gzip ]; then echo 'gzip --best'; exit 0; fi
331 case "${default_gzip}" in
332 compress* ) gzip_extension
=.Z
;;
333 * ) gzip_extension
=.gz
;;
335 echo "Creating tar file."
336 (cd ${tempparent} ; tar cvf
- ${emacsname} ) \
338 > ${emacsname}.
tar${gzip_extension}
341 if [ "${clean_up}" = yes ]; then
342 echo "Cleaning up the staging directory."
346 ### make-dist ends here