From: Christophe Rhodes Date: Tue, 24 Aug 2010 16:27:02 +0000 (+0000) Subject: 1.0.41.56: Fix for asdf-install (launchpad bug #612998) X-Git-Url: http://repo.macrolet.net/gitweb/?a=commitdiff_plain;h=f14970a9079b5ceb1f874a17d41294b01af7cc1b;p=sbcl.git 1.0.41.56: Fix for asdf-install (launchpad bug #612998) Reported by Phil Hargett; patch by Jim Wise from Phil's description --- diff --git a/NEWS b/NEWS index 9ddaaeb..52c80e4 100644 --- a/NEWS +++ b/NEWS @@ -16,6 +16,8 @@ changes relative to sbcl-1.0.41 argument is a floating point zero. (lp#571581, thanks to Roman Marynchak) * bug fix: DEFTYPE signals an error for non-list lambda-lists. (lp#576594, thanks to Roman Marynchak) + * bug fix: make ASDF-INSTALL compatible with the now-included ASDF2. + (lp#612998, reported by Phil Hargett; patch from Jim Wise) changes in sbcl-1.0.41 relative to sbcl-1.0.40: * optimization: validity of observed keyword initargs to MAKE-INSTANCE is diff --git a/contrib/asdf-install/installer.lisp b/contrib/asdf-install/installer.lisp index 7aaf04d..5d76644 100644 --- a/contrib/asdf-install/installer.lisp +++ b/contrib/asdf-install/installer.lisp @@ -200,7 +200,7 @@ (loop for l = (read-line (process-output proc) nil nil) while l when (> (mismatch l "[GNUPG:]") 6) - do (destructuring-bind (_ tag &rest data) (asdf::split l) + do (destructuring-bind (_ tag &rest data) (asdf::split-string l) (declare (ignore _)) (pushnew (cons (intern tag :keyword) data) tags))) diff --git a/version.lisp-expr b/version.lisp-expr index 7d634e0..b36064c 100644 --- a/version.lisp-expr +++ b/version.lisp-expr @@ -17,4 +17,4 @@ ;;; checkins which aren't released. (And occasionally for internal ;;; versions, especially for internal versions off the main CVS ;;; branch, it gets hairier, e.g. "0.pre7.14.flaky4.13".) -"1.0.41.55" +"1.0.41.56"