Commit e5f945c6 authored by Francois-Rene Rideau's avatar Francois-Rene Rideau
Browse files

Update changelog, cleanup some ancillary files

parent 13f9c39f
Loading
Loading
Loading
Loading
+18 −4
Original line number Diff line number Diff line
cl-asdf (2:2.32.8-1) unstable; urgency=low
cl-asdf (2:2.33-1) unstable; urgency=low

  ASDF 2.32.8 is a set of cleanups since 2.32.
  ASDF 2.33 is a set of cleanups since 2.32.
  Since previous release 2.32, it includes the following changes:

  * deferred-warning receives yet more improvements for CCL.
@@ -11,9 +11,23 @@ cl-asdf (2:2.32.8-1) unstable; urgency=low
  * Packages have been tweaked to pass more tests,
    notably wrt what symbols are exported.

  * Image lifecycle support is improved, thanks to our application 
  * Image lifecycle support is improved, thanks to deploying ASDF3 for QRes.
    More options for dump-image on CCL; handle reentrance in restore-image.

 -- Francois-Rene Rideau <fare@tunes.org>  Thu, 05 Mar 2013 14:35:43 -0500
  * delete-directory-tree, delete-empty-directory, copy-file,
    directory-exists-p, file-exists-p were added to UIOP,
    also better strcat, with reduce/strcat, base-string-p, etc.

  * Portability tweaks for Allegro, Clozure, CLISP, ECL, LispWorks, SBCL.

  * Recompilation avoided for things already done by defsystem-depends-on.

  * monolithic-fasl-op was fixed in cases when the main system has components.

  * *uninteresting-conditions* was added as a common list of conditions
    shared between the compile-time and load-time muffled conditions.

 -- Francois-Rene Rideau <fare@tunes.org>  Thu, 27 Mar 2013 13:30:26 -0500

cl-asdf (2:2.32-1) unstable; urgency=low

test/GNUmakefile

deleted100644 → 0
+0 −21
Original line number Diff line number Diff line
# overly complex boiletplate...

sourceDirectory := $(shell pwd)
clean_dirs = $(sourceDirectory)
clean_extensions = fasl dfsl cfsl fasl fas lib dx32fsl

clean: FORCE
	@for dir in $(clean_dirs); do \
	     if test -d $$dir; then \
	     	 echo Cleaning $$dir; \
		 for ext in $(clean_extensions); do \
		     find $$dir \( -name "*.$$ext" \) \
	     	    -and -not -path \""*/.git/*"\" \
		     	  -and -not -path \""*/_darcs/*"\" \
	     		  -and -not -path \""*/tags/*"\" -print -delete; \
		done; \
	     fi; \
	done


FORCE:
+17 −17

File changed.

Contains only whitespace changes.