diff --git a/asdf.lisp b/asdf.lisp
index d542b6fe6dd6fb5bdc51767d161cb7410d5d397e..1518e38e8caa95a48b3a496ba36cac6453681775 100644
--- a/asdf.lisp
+++ b/asdf.lisp
@@ -72,7 +72,7 @@
   (defvar *asdf-version* nil)
   (defvar *upgraded-p* nil)
   (let* ((asdf-version ;; the 1+ helps the version bumping script discriminate
-          (subseq "VERSION:2.130" (1+ (length "VERSION"))))
+          (subseq "VERSION:2.131" (1+ (length "VERSION"))))
          (existing-asdf (fboundp 'find-system))
          (existing-version *asdf-version*)
          (already-there (equal asdf-version existing-version)))
@@ -962,15 +962,13 @@ with given pathname and if it exists return its truename."
 ;;;; methods: components
 
 (defmethod print-object ((c missing-component) s)
-  (format s "~@<component ~S not found~
-             ~@[ in ~A~]~@:>"
+  (format s "~@<component ~S not found~@[ in ~A~]~@:>"
           (missing-requires c)
           (when (missing-parent c)
             (component-name (missing-parent c)))))
 
 (defmethod print-object ((c missing-component-of-version) s)
-  (format s "~@<component ~S does not match version ~A~
-              ~@[ in ~A~]~@:>"
+  (format s "~@<component ~S does not match version ~A~@[ in ~A~]~@:>"
           (missing-requires c)
           (missing-version c)
           (when (missing-parent c)
@@ -1194,8 +1192,7 @@ Going forward, we recommend new users should be using the source-registry.
                             (let* ((*print-circle* nil)
                                    (message
                                     (format nil
-                                            "~@<While searching for system ~S: ~S evaluated ~
-to ~S which is not a directory.~@:>"
+                                            "~@<While searching for system ~S: ~S evaluated to ~S which is not a directory.~@:>"
                                             system dir defaults)))
                               (error message))
                           (remove-entry-from-registry ()
@@ -1781,8 +1778,7 @@ recursive calls to traverse.")
 
 (defmethod perform ((operation operation) (c source-file))
   (sysdef-error
-   "~@<required method PERFORM not implemented ~
-    for operation ~A, component ~A~@:>"
+   "~@<required method PERFORM not implemented for operation ~A, component ~A~@:>"
    (class-of operation) (class-of c)))
 
 (defmethod perform ((operation operation) (c module))
@@ -2062,8 +2058,7 @@ recursive calls to traverse.")
               (accept ()
                 :report
                 (lambda (s)
-                  (format s "~@<Continue, treating ~A as ~
-                                   having been successful.~@:>"
+                  (format s "~@<Continue, treating ~A as having been successful.~@:>"
                           (operation-description op component)))
                 (setf (gethash (type-of op)
                                (component-operation-times component))
@@ -2539,8 +2534,7 @@ located."
                             "No architecture feature found in ~a."
                             *architecture-features*))
           (version (maybe-warn (lisp-version-string)
-                               "Don't know how to get Lisp ~
-                                          implementation version.")))
+                               "Don't know how to get Lisp implementation version.")))
       (substitute-if
        #\_ (lambda (x) (find x " /:\\(){}[]$#`'\""))
        (format nil "~(~@{~a~^-~}~)" lisp version os arch)))))
diff --git a/debian/changelog b/debian/changelog
index 2c29636e13bcfea8ff7a32513cd3574f440fbaca..941cb6d4bbfe899d7b1365b2edeea8b74cd8373f 100644
--- a/debian/changelog
+++ b/debian/changelog
@@ -1,3 +1,22 @@
+cl-asdf (2:2.008-1) unstable; urgency=low
+
+  * new upstream: removes unwanted exports,
+    plays nicer with sbcl, cmucl, old clisp.
+
+ -- Francois-Rene Rideau <fare@tunes.org>  Fri, 10 Sep 2010 17:16:06 -0400
+
+cl-asdf (2:2.007-1) unstable; urgency=low
+
+  * new upstream, fixes lp#623992 introduced in 2.006, allows upgrade on SBCL.
+
+ -- Francois-Rene Rideau <fare@tunes.org>  Wed, 25 Aug 2010 23:22:13 -0400
+
+cl-asdf (2:2.006-1) unstable; urgency=low
+
+  * new upstream, with bug fixes and API changes.
+
+ -- Francois-Rene Rideau <fare@tunes.org>  Tue, 24 Aug 2010 18:43:48 -0400
+
 cl-asdf (2:2.005-1) unstable; urgency=low
 
   * New upstream.
@@ -23,7 +42,7 @@ cl-asdf (2:1.704-1) unstable; urgency=low
 
 cl-asdf (2:1.627-1) unstable; urgency=low
 
-  * New upstream release. 
+  * New upstream release.
   * Added dh_installinfo for info files. (Closes: #560290)
   * Incorporated run-shell-command patch for LispWorks. Thanks tianchun!
     (Closes: #457919)
@@ -52,7 +71,7 @@ cl-asdf (1:20091221-1) unstable; urgency=low
 
 cl-asdf (1:20090819-3) unstable; urgency=low
 
-  * Fixed the loop construct again. (Closes: #546205) 
+  * Fixed the loop construct again. (Closes: #546205)
 
  -- Peter Van Eynde <pvaneynd@debian.org>  Sat, 12 Sep 2009 10:08:23 +0100
 
@@ -86,7 +105,7 @@ cl-asdf (1.111-1) unstable; urgency=low
   * Fixed Vcs-Git field
   * Changed to group maintanance
   * recreated upstream changelog with git2cl
-  * Changed directory, so we depend on a newer clc 
+  * Changed directory, so we depend on a newer clc
 
  -- Peter Van Eynde <pvaneynd@debian.org>  Sat, 09 Feb 2008 10:07:21 +0100
 
@@ -108,7 +127,7 @@ cl-asdf (1.109-1) unstable; urgency=low
        a specific name and type.
      + Removes inline component methods more carefully (and, I believe, correctly!). Helps keep LispWorks happy.
      + Reworked asdf tests to make them more robust and perhaps more flexible too.
-  * Now use texlive to build. 
+  * Now use texlive to build.
 
  -- Peter Van Eynde <pvaneynd@debian.org>  Sun, 16 Sep 2007 14:45:57 +0200
 
@@ -126,7 +145,7 @@ cl-asdf (1.106-1) experimental; urgency=low
       + Minor patch in class-for-type that evaluates only *package* at read
    time rather than (package-name *package*); this keeps case sensitive Lisps
    happy all the time and keeps case insensitive lisps happily insensitive.
-  
+
       + A patch from Richard Kreuter that allows pathname defaulting to work
    better with *load-truename* and *default-pathname-defaults*; this makes it
    easier to work with defsystems in the REPL.
@@ -163,7 +182,7 @@ cl-asdf (1.99-2) unstable; urgency=low
 
   * Move asdf.info files from sbcl to this package.
   * move texinfo to BuildDependsIndep
-  * we build something build-indep 
+  * we build something build-indep
 
  -- Peter Van Eynde <pvaneynd@debian.org>  Fri, 30 Jun 2006 23:18:40 +0200
 
@@ -201,14 +220,14 @@ cl-asdf (1.86-5) unstable; urgency=low
     defsystem files. Now works again with McClim. Closes: #310640
   * Corrected dependencies.
   * Added postinst rebuild of all clc-enabled lisps so the new version
-    actually gets loaded. 
+    actually gets loaded.
 
  -- Peter Van Eynde <pvaneynd@debian.org>  Wed, 25 May 2005 08:22:17 +0200
 
 cl-asdf (1.86-4) unstable; urgency=low
 
   * My release script stripped the patch. So this should really contain the
-    patch. Damn. 
+    patch. Damn.
 
  -- Peter Van Eynde <pvaneynd@debian.org>  Tue, 10 May 2005 14:17:51 +0200
 
@@ -338,7 +357,7 @@ cl-asdf (1.69) unstable; urgency=low
 
 cl-asdf (1.68) unstable; urgency=low
 
-  * New upstream with 'asdf:test-op 
+  * New upstream with 'asdf:test-op
 
  -- Kevin M. Rosenberg <kmr@debian.org>  Wed, 19 Mar 2003 10:16:01 -0700
 
@@ -387,7 +406,7 @@ cl-asdf (1.57-1) unstable; urgency=low
 
 cl-asdf (1.55-1) unstable; urgency=low
 
-  * New upstream.version (closes: 172074) 
+  * New upstream.version (closes: 172074)
 
  -- Kevin M. Rosenberg <kmr@debian.org>  Mon,  9 Dec 2002 10:23:21 -0700
 
@@ -408,7 +427,7 @@ cl-asdf (1.49) unstable; urgency=low
   * New upstream release, fixes run-shell-command for allegro. Code
     refactoring for run-shell-code.
   * Support new CLC reregister command
-  
+
  -- Kevin M. Rosenberg <kmr@debian.org>  Wed, 25 Sep 2002 23:57:23 -0600
 
 cl-asdf (1.47) unstable; urgency=low
@@ -534,7 +553,7 @@ cl-asdf (0.0+cvs.2002.08.18) unstable; urgency=low
   * Expand description in control file.
   * Change version numbering scheme since upstream has native debian
   directory
-  
+
  -- Kevin M. Rosenberg <kmr@debian.org>  Sat, 17 Aug 2002 14:25:33 -0600
 
 cl-asdf (0.0+cvs.2002.08.15-1) unstable; urgency=low
diff --git a/test/run-tests.sh b/test/run-tests.sh
index f6087dc1e95f1291e58d2d3b45d267a5e8f18c36..73f900b06a78ac8cf7018c6e5bb8ed9fcc4a85fe 100755
--- a/test/run-tests.sh
+++ b/test/run-tests.sh
@@ -11,7 +11,7 @@ usage () {
     echo " - quit with exit status 0 on getting eof"
     echo " - quit with exit status >0 if an unhandled error occurs"
     echo " you need to supply the .script in the second argument"
-    echo " lisps include sbcl, clisp, allegro and allegromodern"
+    echo " lisps include sbcl, clisp, cmucl, lispworks, clisp, allegro and allegromodern"
     echo "OPTIONS:"
     echo "    -d -- debug mode"
     echo "    -u -h -- show this message."