From e5f945c640a4e8401879c971a2228087bd857456 Mon Sep 17 00:00:00 2001
From: Francois-Rene Rideau <tunes@google.com>
Date: Wed, 27 Mar 2013 17:21:26 -0400
Subject: [PATCH] Update changelog, cleanup some ancillary files

---
 debian/changelog | 22 ++++++++++++++++++----
 doc/style.css    | 34 +++++++++++++++++-----------------
 test/GNUmakefile | 21 ---------------------
 3 files changed, 35 insertions(+), 42 deletions(-)
 delete mode 100644 test/GNUmakefile

diff --git a/debian/changelog b/debian/changelog
index 6ad1fdc1..6d17fd0c 100644
--- a/debian/changelog
+++ b/debian/changelog
@@ -1,6 +1,6 @@
-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
 
diff --git a/doc/style.css b/doc/style.css
index 4ee51fc8..02b0ac73 100644
--- a/doc/style.css
+++ b/doc/style.css
@@ -6,30 +6,30 @@ body {
 
 /* @group anchors */
 
-a.none { 
+a.none {
 	text-decoration: none;
 	color:black }
-	
+
 a.none:visited { text-decoration: none; color:black }
 
 a.none:active { text-decoration: none; color:black }
 
 a.none:hover { text-decoration: none; color:black }
 
-a { 
-	text-decoration: none; 
+a {
+	text-decoration: none;
 	}
-	
-a:visited { 
-	text-decoration: none; 
+
+a:visited {
+	text-decoration: none;
 }
 
-a:active { 
-	text-decoration: underline; 
+a:active {
+	text-decoration: underline;
 }
 
-a:hover { 
-	text-decoration: underline; 
+a:hover {
+	text-decoration: underline;
 }
 
 /* @end */
@@ -76,7 +76,7 @@ a:hover {
 	position: relative;
 	left: 8px;
 }
-	
+
 /* @end */
 
 /* @group header-footer */
@@ -126,9 +126,9 @@ a:hover {
 	text-decoration:underline;
 }
 
-#footer a:hover { 
-	font-weight:bold; 
-	color:#002244; 
+#footer a:hover {
+	font-weight:bold;
+	color:#002244;
 	text-decoration:underline;
 }
 
@@ -167,7 +167,7 @@ a:hover {
 }
 
 .function {
-	
+
 }
 
 .documentation pre {
@@ -183,7 +183,7 @@ a:hover {
 	border-top-style: solid;
 	border-top-width: 1pt;
 	padding-top: 4px;
-	margin-top: 2em; 
+	margin-top: 2em;
 	font-size: inherit;
 	background-color: transparent;
 	color: black;
diff --git a/test/GNUmakefile b/test/GNUmakefile
deleted file mode 100644
index f3ab11f3..00000000
--- a/test/GNUmakefile
+++ /dev/null
@@ -1,21 +0,0 @@
-# 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:
-- 
GitLab