1 ########################
13 # YO! READ ME!!!!!!!!!
14 # If you're about to add a file or directory which isn't checked out as part
15 # of every module in devo (e.g., if "cvs co gas+utils" won't get it, or if
16 # "cvs co gcc" won't get it), then don't, Don't, DON'T add it to the regular
17 # things-to-keep or things-to-lose sections. Instead, add it to the setting
18 # of keep_these_too or lose_these_too before those variables are rescanned
19 # to check for the existence of the items listed in them.
21 # Otherwise, somebody will check out some package that doesn't include your
22 # new file, and will get warnings from Sanitize when everything is really
23 # okay. You don't want to get people in the habit of ignoring complaints from
24 # Sanitize, do you? No, I didn't think so.
26 # If you do add a file to the regular things-to-keep section, don't forget
27 # to add the corresponding entry to the devo-support entry (or whatever) in
30 ########################
34 # Each directory to survive its way into a release will need a file
35 # like this one called "./.Sanitize". All keyword lines must exist,
36 # and must exist in the order specified by this file. Each directory
37 # in the tree will be processed, top down, in the following order.
39 # Hash started lines like this one are comments and will be deleted
40 # before anything else is done. Blank lines will also be squashed
43 # The lines between the "Do-first:" line and the "Things-to-keep:"
44 # line are executed as a /bin/sh shell script before anything else is
45 # done in this directory.
49 keep_these_too="${keep_these_too} .cvsignore autoconf automake
50 apache ash bash bfd binutils bison byacc bzip2
51 cvs deja-gnu dejagnu diff dosrel dvips
52 emacs emacs19 examples expect fileutils findutils flex
53 gas gawk gcc gdb gdbm gdbtest glob gperf gprof grep grez groff
55 include inet install-sh intl ispell
56 ld less libgcc libgloss libiberty libio
57 libstdc++ libtermcap libtool
58 m4 make mkinstalldirs mmalloc move-if-change newlib ncurses opcodes
60 rcs readline sed send-pr shellutils sim tar textutils time
61 texinfo tgas utils uudecode wdiff xiberty
62 configure.bat makeall.bat setup.com makefile.vms winsup
63 mpw-README mpw-configure mpw-config.in mpw-build.in mpw-install
64 ltconfig ltmain.sh missing ylwrap"
66 lose_these_too="${lose_these_too} libg++ librx libdsp testsuite"
68 cygnus_files="release release-info build-all.mk test-build.mk CYGNUS COPYING.NEWLIB"
70 if ( echo $* | grep keep\-cygnus > /dev/null) ; then
71 keep_these_too="${keep_these_too} ${cygnus_files}"
73 lose_these_too="${lose_these_too} ${cygnus_files}"
76 gdbtk_files="tcl tk itcl tix libgui"
78 if ( echo $* | grep lose\-gdbtk > /dev/null) ; then
79 lose_these_too="${lose_these_too} ${gdbtk_files}"
80 if [ -n "${verbose}" ] ; then
81 echo Deleting ${gdbtk_files}
84 keep_these_too="${keep_these_too} ${gdbtk_files}"
85 if [ -n "${verbose}" ] ; then
86 echo Keeping ${gdbtk_files}
90 # This is for newlib net releases.
91 newlib_file="COPYING.NEWLIB"
93 if (echo $* | grep keep\-newlib > /dev/null) ; then
94 if (echo $* | grep -v keep\-cygnus > /dev/null) ; then
95 keep_these_too="${keep_these_too} ${newlib_file}"
96 lose_these_too="`echo ${lose_these_too} | sed -e s/${newlib_file}//`"
99 true; # Let keep-cygnus handle it.
102 # IDK releases don't include files which only matter to CDK.
103 inet_files="COPYING.LIB config config-ml.in etc symlink-tree"
105 if (echo $* | grep keep\-inet > /dev/null); then
106 lose_these_too="${lose_these_too} ${inet_files}"
108 keep_these_too="${keep_these_too} ${inet_files}"
111 ide_files="libide libidetcl vmake jstools"
113 if (echo $* | grep keep\-ide > /dev/null); then
114 keep_these_too="${keep_these_too} ${ide_files}"
115 test -n "$verbose" && echo Keeping ${ide_files}
117 lose_these_too="${lose_these_too} ${ide_files}"
120 flexlm_files="flexlm"
122 if (echo $* | grep keep\-cygnus > /dev/null); then
123 keep_these_too="${keep_these_too} ${flexlm_files}"
124 test -n "$verbose" && echo Keeping ${flexlm_files}
126 lose_these_too="${lose_these_too} ${flexlm_files}"
130 # It is not yet clear if the cgen package will be shipped with the
134 if (echo $* | grep keep\-cgen > /dev/null); then
135 keep_these_too="${keep_these_too} ${cgen_files}"
137 lose_these_too="${lose_these_too} ${cgen_files}"
141 java_files="boehm-gc libjava qthreads zip"
143 if (echo $* | grep keep\-java > /dev/null); then
144 keep_these_too="${keep_these_too} ${java_files}"
146 lose_these_too="${lose_these_too} ${java_files}"
149 # This top-level directory is special. We often check out only subsets
150 # of this directory, and complaining about directories or files we didn't
151 # check out just gets obnoxious.
153 list="`(for i in ${keep_these_too}; do echo $i ; done) | sort -u`"
156 for file in $list ; do
157 if [ -r $file ] || [ -d $file ] ; then
158 keep_these_too="${keep_these_too} $file"
162 list="`(for i in ${lose_these_too}; do echo $i ; done) | sort -u` "
165 for file in $list ; do
166 if [ -r $file ] || [ -d $file ] ; then
167 lose_these_too="${lose_these_too} $file"
171 # All files listed between the "Things-to-keep:" line and the
172 # "Do-last:" line will be kept. All other files will be removed.
173 # Directories listed in this section will have their own Sanitize
174 # called. Directories not listed will be removed in their entirety
191 # Not sure we want to include mkdep in releases yet.
194 # The lines between the "Do-last:" line and the end of the file
195 # are executed as a /bin/sh shell script after everything else is
200 # Don't try to clean directories here, as the 'mv' command will fail.
201 # Also, grep fails on NFS mounted directories.
203 if ( echo $* | egrep verbose > /dev/null ) ; then
209 # Remove "sanitize-Sanitize" lines.
210 if [ -n "${verbose}" ] ; then
211 echo Cleaning unconditional sanitizations out of Makefile.in...
214 sed '/start\-sanitize\-Sanitize/,/end-\sanitize\-Sanitize/d' < Makefile.in > new
215 if [ -n "${safe}" -a ! -f .Recover/Makefile.in ] ; then
216 mv Makefile.in .Recover
220 if [ -n "${verbose}" ] ; then
221 echo Thawing away the \"chill\"...
224 if ( echo $* | grep keep\-chill > /dev/null ) ; then
226 if test ! -d $i && (grep sanitize-chill $i > /dev/null) ; then
227 if [ -n "${verbose}" ] ; then
228 echo Keeping chill stuff in $i
234 if test ! -d $i && (grep sanitize-chill $i > /dev/null) ; then
235 if [ -n "${verbose}" ] ; then
236 echo Thawing the \"chill\" out of $i...
239 sed '/start\-sanitize\-chill/,/end-\sanitize\-chill/d' < $i > new
240 if [ -n "${safe}" -a ! -f .Recover/$i ] ; then
241 if [ -n "${verbose}" ] ; then
242 echo Caching $i in .Recover...
251 if [ -n "${verbose}" ] ; then
252 echo Processing \"v850\"...
255 v850_files="ChangeLog config.sub configure.in"
257 if ( echo $* | grep keep\-v850e > /dev/null ) ; then
258 for i in $v850_files ; do
259 if test ! -d $i && (grep sanitize-v850e $i > /dev/null) ; then
260 if [ -n "${verbose}" ] ; then
261 echo Keeping v850e stuff in $i
267 if test ! -d $i && (grep sanitize-v850e $i > /dev/null) ; then
268 if [ -n "${verbose}" ] ; then
269 echo Removing traces of \"v850e\" from $i...
272 sed '/start\-sanitize\-v850e/,/end-\sanitize\-v850e/d' < $i > new
273 if [ -n "${safe}" -a ! -f .Recover/$i ] ; then
274 if [ -n "${verbose}" ] ; then
275 echo Caching $i in .Recover...
284 r5900_files="ChangeLog config.sub configure.in"
286 if ( echo $* | grep keep\-r5900 > /dev/null ) ; then
287 for i in $r5900_files ; do
288 if test ! -d $i && (grep sanitize-r5900 $i > /dev/null) ; then
289 if [ -n "${verbose}" ] ; then
290 echo Keeping r5900 stuff in $i
296 if test ! -d $i && (grep sanitize-r5900 $i > /dev/null) ; then
297 if [ -n "${verbose}" ] ; then
298 echo Removing traces of \"r5900\" from $i...
301 sed '/start\-sanitize\-r5900/,/end-\sanitize\-r5900/d' < $i > new
302 if [ -n "${safe}" -a ! -f .Recover/$i ] ; then
303 if [ -n "${verbose}" ] ; then
304 echo Caching $i in .Recover...
313 vr4xxx_files="ChangeLog config.sub"
315 if ( echo $* | grep keep\-vr4xxx > /dev/null ) ; then
316 for i in $vr4xxx_files ; do
317 if test ! -d $i && (grep sanitize-vr4xxx $i > /dev/null) ; then
318 if [ -n "${verbose}" ] ; then
319 echo Keeping vr4xxx stuff in $i
325 if test ! -d $i && (grep sanitize-vr4xxx $i > /dev/null) ; then
326 if [ -n "${verbose}" ] ; then
327 echo Removing traces of \"vr4xxx\" from $i...
330 sed '/start\-sanitize\-vr4xxx/,/end-\sanitize\-vr4xxx/d' < $i > new
331 if [ -n "${safe}" -a ! -f .Recover/$i ] ; then
332 if [ -n "${verbose}" ] ; then
333 echo Caching $i in .Recover...
342 vr4320_files="ChangeLog config.sub"
344 if ( echo $* | grep keep\-vr4320 > /dev/null ) ; then
345 for i in $vr4320_files ; do
346 if test ! -d $i && (grep sanitize-vr4320 $i > /dev/null) ; then
347 if [ -n "${verbose}" ] ; then
348 echo Keeping vr4320 stuff in $i
354 if test ! -d $i && (grep sanitize-vr4320 $i > /dev/null) ; then
355 if [ -n "${verbose}" ] ; then
356 echo Removing traces of \"vr4320\" from $i...
359 sed '/start\-sanitize\-vr4320/,/end-\sanitize\-vr4320/d' < $i > new
360 if [ -n "${safe}" -a ! -f .Recover/$i ] ; then
361 if [ -n "${verbose}" ] ; then
362 echo Caching $i in .Recover...
371 tx19_files="ChangeLog config.sub"
373 if ( echo $* | grep keep\-tx19 > /dev/null ) ; then
374 for i in $tx19_files ; do
375 if test ! -d $i && (grep sanitize-tx19 $i > /dev/null) ; then
376 if [ -n "${verbose}" ] ; then
377 echo Keeping tx19 stuff in $i
383 if test ! -d $i && (grep sanitize-tx19 $i > /dev/null) ; then
384 if [ -n "${verbose}" ] ; then
385 echo Removing traces of \"tx19\" from $i...
388 sed '/start\-sanitize\-tx19/,/end-\sanitize\-tx19/d' < $i > new
389 if [ -n "${safe}" -a ! -f .Recover/$i ] ; then
390 if [ -n "${verbose}" ] ; then
391 echo Caching $i in .Recover...
400 tx49_files="ChangeLog config.sub"
402 if ( echo $* | grep keep\-tx49 > /dev/null ) ; then
403 for i in $tx49_files ; do
404 if test ! -d $i && (grep sanitize-tx49 $i > /dev/null) ; then
405 if [ -n "${verbose}" ] ; then
406 echo Keeping tx49 stuff in $i
412 if test ! -d $i && (grep sanitize-tx49 $i > /dev/null) ; then
413 if [ -n "${verbose}" ] ; then
414 echo Removing traces of \"tx49\" from $i...
417 sed '/start\-sanitize\-tx49/,/end-\sanitize\-tx49/d' < $i > new
418 if [ -n "${safe}" -a ! -f .Recover/$i ] ; then
419 if [ -n "${verbose}" ] ; then
420 echo Caching $i in .Recover...
429 tic80_files="ChangeLog config.sub configure.in"
431 if ( echo $* | grep keep\-tic80 > /dev/null ) ; then
432 for i in $tic80_files ; do
433 if test ! -d $i && (grep sanitize-tic80 $i > /dev/null) ; then
434 if [ -n "${verbose}" ] ; then
435 echo Keeping tic80 stuff in $i
441 if test ! -d $i && (grep sanitize-tic80 $i > /dev/null) ; then
442 if [ -n "${verbose}" ] ; then
443 echo Removing traces of \"tic80\" from $i...
446 sed '/start\-sanitize\-tic80/,/end-\sanitize\-tic80/d' < $i > new
447 if [ -n "${safe}" -a ! -f .Recover/$i ] ; then
448 if [ -n "${verbose}" ] ; then
449 echo Caching $i in .Recover...
458 sky_files="ChangeLog config.sub configure.in"
460 if ( echo $* | grep keep\-sky > /dev/null ) ; then
461 for i in $sky_files ; do
462 if test ! -d $i && (grep sanitize-sky $i > /dev/null) ; then
463 if [ -n "${verbose}" ] ; then
464 echo Keeping sky stuff in $i
470 if test ! -d $i && (grep sanitize-sky $i > /dev/null) ; then
471 if [ -n "${verbose}" ] ; then
472 echo Removing traces of \"sky\" from $i...
475 sed '/start\-sanitize\-sky/,/end-\sanitize\-sky/d' < $i > new
476 if [ -n "${safe}" -a ! -f .Recover/$i ] ; then
477 if [ -n "${verbose}" ] ; then
478 echo Caching $i in .Recover...
487 if ( echo $* | grep keep\-ide > /dev/null ) ; then
489 if test ! -d $i && (grep sanitize-ide $i > /dev/null) ; then
490 if [ -n "${verbose}" ] ; then
491 echo Keeping ide stuff in $i
497 if test ! -d $i && (grep sanitize-ide $i > /dev/null) ; then
498 if [ -n "${verbose}" ] ; then
499 echo Removing traces of \"ide\" from $i...
502 sed '/start\-sanitize\-ide/,/end-\sanitize\-ide/d' < $i > new
503 if [ -n "${safe}" -a ! -f .Recover/$i ] ; then
504 if [ -n "${verbose}" ] ; then
505 echo Caching $i in .Recover...
514 if ( echo $* | grep lose\-gdbtk > /dev/null ) ; then
515 if [ -n "${verbose}" ] ; then
516 echo Catering to RMS by removing traces of \"gdbtk\"...
519 if test ! -d $i && (grep sanitize-gdbtk $i > /dev/null) ; then
520 if [ -n "${verbose}" ] ; then
521 echo Removing traces of \"gdbtk\" from $i...
524 sed '/start\-sanitize\-gdbtk/,/end-\sanitize\-gdbtk/d' < $i > new
525 if [ -n "${safe}" -a ! -f .Recover/$i ] ; then
526 if [ -n "${verbose}" ] ; then
527 echo Caching $i in .Recover...
535 sed -e '/GDBTK_SUPPORT_DIRS=/d' -e 's/ $(GDBTK_SUPPORT_DIRS)//' < Makefile.in > new
536 if [ -n "${safe}" -a ! -f .Recover/Makefile.in ] ; then
537 if [ -n "${verbose}" ] ; then
538 echo Caching Makefile.in in .Recover...
540 mv Makefile.in .Recover
544 if [ -n "${verbose}" ] ; then
545 echo Leaving \"gdbtk\" in the sources...
548 if test ! -d $i && (grep sanitize-gdbtk $i > /dev/null) ; then
549 if [ -n "${verbose}" ] ; then
550 echo Keeping \"gdbtk\" stuff in $i, but editing out sanitize lines...
553 sed -e '/start\-sanitize\-gdbtk/d' -e '/end\-sanitize\-gdbtk/d' < $i > new
554 if [ -n "${safe}" -a ! -f .Recover/$i ] ; then
555 if [ -n "${verbose}" ] ; then
556 echo Caching $i in .Recover...
565 if ( echo $* | grep lose\-mswin > /dev/null ) ; then
566 if [ -n "${verbose}" ] ; then
567 echo Removing traces of \"mswin\"...
570 if test ! -d $i && (grep sanitize-mswin $i > /dev/null) ; then
571 if [ -n "${verbose}" ] ; then
572 echo Removing traces of \"mswin\" from $i...
575 sed '/start\-sanitize\-mswin/,/end-\sanitize\-mswin/d' < $i > new
576 if [ -n "${safe}" -a ! -f .Recover/$i ] ; then
577 if [ -n "${verbose}" ] ; then
578 echo Caching $i in .Recover...
586 if [ -n "${verbose}" ] ; then
587 echo Leaving \"mswin\" in the sources...
590 if test ! -d $i && (grep sanitize-mswin $i > /dev/null) ; then
591 if [ -n "${verbose}" ] ; then
592 echo Keeping \"mswin\" stuff in $i, but editing out sanitize lines...
595 sed -e '/start\-sanitize\-mswin/d' -e '/end\-sanitize\-mswin/d' < $i > new
596 if [ -n "${safe}" -a ! -f .Recover/$i ] ; then
597 if [ -n "${verbose}" ] ; then
598 echo Caching $i in .Recover...
607 cygnus_files="ChangeLog config.sub"
609 if ( echo $* | grep keep\-cygnus > /dev/null ) ; then
610 for i in $cygnus_files ; do
611 if test ! -d $i && (grep sanitize-cygnus $i > /dev/null) ; then
612 if [ -n "${verbose}" ] ; then
613 echo Keeping cygnus stuff in $i
619 if test ! -d $i && (grep sanitize-cygnus $i > /dev/null) ; then
620 if [ -n "${verbose}" ] ; then
621 echo Removing traces of \"cygnus\" from $i...
624 sed '/start\-sanitize\-cygnus/,/end-\sanitize\-cygnus/d' < $i > new
625 if [ -n "${safe}" -a ! -f .Recover/$i ] ; then
626 if [ -n "${verbose}" ] ; then
627 echo Caching $i in .Recover...
636 m32rx_files="ChangeLog config-ml.in"
637 if ( echo $* | grep keep\-m32rx > /dev/null ) ; then
638 for i in $m32rx_files ; do
639 if test ! -d $i && (grep sanitize-m32rx $i > /dev/null) ; then
640 if [ -n "${verbose}" ] ; then
641 echo Keeping m32rx stuff in $i
647 if test ! -d $i && (grep sanitize-m32rx $i > /dev/null) ; then
648 if [ -n "${verbose}" ] ; then
649 echo Removing traces of \"m32rx\" from $i...
652 sed '/start\-sanitize\-m32rx/,/end-\sanitize\-m32rx/d' < $i > new
653 if [ -n "${safe}" -a ! -f .Recover/$i ] ; then
654 if [ -n "${verbose}" ] ; then
655 echo Caching $i in .Recover...
664 java_files="ChangeLog Makefile.in configure.in"
665 if ( echo $* | grep keep\-java > /dev/null ) ; then
666 for i in $java_files ; do
667 if test ! -d $i && (grep sanitize-java $i > /dev/null) ; then
668 if [ -n "${verbose}" ] ; then
669 echo Keeping java stuff in $i
675 if test ! -d $i && (grep sanitize-java $i > /dev/null) ; then
676 if [ -n "${verbose}" ] ; then
677 echo Removing traces of \"java\" from $i...
680 sed '/start\-sanitize\-java/,/end-\sanitize\-java/d' < $i > new
681 if [ -n "${safe}" -a ! -f .Recover/$i ] ; then
682 if [ -n "${verbose}" ] ; then
683 echo Caching $i in .Recover...
692 dsp_files="ChangeLog Makefile.in configure.in"
693 if ( echo $* | grep keep\-dsp > /dev/null ) ; then
694 for i in $dsp_files ; do
695 if test ! -d $i && (grep sanitize-dsp $i > /dev/null) ; then
696 if [ -n "${verbose}" ] ; then
697 echo Keeping dsp stuff in $i
703 if test ! -d $i && (grep sanitize-dsp $i > /dev/null) ; then
704 if [ -n "${verbose}" ] ; then
705 echo Removing traces of \"dsp\" from $i...
708 sed '/start\-sanitize\-dsp/,/end-\sanitize\-dsp/d' < $i > new
709 if [ -n "${safe}" -a ! -f .Recover/$i ] ; then
710 if [ -n "${verbose}" ] ; then
711 echo Caching $i in .Recover...
721 beos_files="ChangeLog configure.in"
722 if ( echo $* | grep keep\-beos > /dev/null ) ; then
723 for i in $beos_files ; do
724 if test ! -d $i && (grep sanitize-beos $i > /dev/null) ; then
725 if [ -n "${verbose}" ] ; then
726 echo Keeping beos stuff in $i
732 if test ! -d $i && (grep sanitize-beos $i > /dev/null) ; then
733 if [ -n "${verbose}" ] ; then
734 echo Removing traces of \"beos\" from $i...
737 sed '/start\-sanitize\-beos/,/end-\sanitize\-beos/d' < $i > new
738 if [ -n "${safe}" -a ! -f .Recover/$i ] ; then
739 if [ -n "${verbose}" ] ; then
740 echo Caching $i in .Recover...
749 kcygnus_files="ChangeLog configure configure.in Makefile.in"
750 if ( echo $* | grep keep\-cygnus > /dev/null ) ; then
751 for i in $kcygnus_files ; do
752 if test ! -d $i && (grep sanitize-cygnus $i > /dev/null) ; then
753 if [ -n "${verbose}" ] ; then
754 echo Keeping Cygnus stuff in $i
757 grep -v sanitize-cygnus $i > new
758 if [ -n "${safe}" -a ! -f .Recover/$i ] ; then
759 if [ -n "${verbose}" ] ; then
760 echo Caching $i in .Recover...
769 if test ! -d $i && (grep sanitize-cygnus $i > /dev/null) ; then
770 if [ -n "${verbose}" ] ; then
771 echo Removing traces of \"cygnus\" from $i...
774 sed '/start\-sanitize\-cygnus/,/end-\sanitize\-cygnus/d' < $i > new
775 if [ -n "${safe}" -a ! -f .Recover/$i ] ; then
776 if [ -n "${verbose}" ] ; then
777 echo Caching $i in .Recover...
787 # Do this check LAST!
789 if test ! -d $i && (grep sanitize $i > /dev/null) ; then
790 echo '***' Some mentions of Sanitize are still left in $i! 1>&2