From 3fdd671e248d7b74d6c809d79f42224e3cc87d44 Mon Sep 17 00:00:00 2001 From: Nikodemus Siivola Date: Mon, 9 May 2011 22:20:49 +0000 Subject: [PATCH] 1.0.48.5: update ASDF to 2.015.1 2.015 broke LOAD-SOURCE-OP, this should fix it. --- NEWS | 2 +- contrib/asdf/asdf.lisp | 6 +++--- version.lisp-expr | 2 +- 3 files changed, 5 insertions(+), 5 deletions(-) diff --git a/NEWS b/NEWS index 132c6e7..627b5e0 100644 --- a/NEWS +++ b/NEWS @@ -5,7 +5,7 @@ changes relative to sbcl-1.0.48: * enhancement: WITH-COMPILATION-UNIT :SOURCE-NAMESTRING allows providing virtual source-file information, eg. overriding input-file of COMPILE-FILE when a temporary file is used for compilation. - * enhancement: ASDF has been updated to version 2.0.15. + * enhancement: ASDF has been updated to version 2.015.1. changes in sbcl-1.0.48 relative to sbcl-1.0.47: * incompatible change: SB!KERNEL:INSTANCE-LAMBDA, deprecated for over five diff --git a/contrib/asdf/asdf.lisp b/contrib/asdf/asdf.lisp index cff91b7..dfc14e3 100644 --- a/contrib/asdf/asdf.lisp +++ b/contrib/asdf/asdf.lisp @@ -1,5 +1,5 @@ ;;; -*- mode: common-lisp; Base: 10 ; Syntax: ANSI-Common-Lisp -*- -;;; This is ASDF 2.015: Another System Definition Facility. +;;; This is ASDF 2.015.1: Another System Definition Facility. ;;; ;;; Feedback, bug reports, and patches are all welcome: ;;; please mail to . @@ -104,7 +104,7 @@ ;; "2.345.6" would be a development version in the official upstream ;; "2.345.0.7" would be your seventh local modification of official release 2.345 ;; "2.345.6.7" would be your seventh local modification of development version 2.345.6 - (asdf-version "2.015") + (asdf-version "2.015.1") (existing-asdf (fboundp 'find-system)) (existing-version *asdf-version*) (already-there (equal asdf-version existing-version))) @@ -2280,7 +2280,7 @@ recursive calls to traverse.") (defmethod component-depends-on ((o load-source-op) (c component)) (declare (ignorable o)) (loop :with what-would-load-op-do = (component-depends-on 'load-op c) - :for (op co) :in what-would-load-op-do + :for (op . co) :in what-would-load-op-do :when (eq op 'load-op) :collect (cons 'load-source-op co))) (defmethod operation-done-p ((o load-source-op) (c source-file)) diff --git a/version.lisp-expr b/version.lisp-expr index 67cb2c3..2ac7701 100644 --- a/version.lisp-expr +++ b/version.lisp-expr @@ -20,4 +20,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.48.4" +"1.0.48.5" -- 1.7.10.4