1.103: play nice with asdf:coerce-name being exported.
authorFrancois-Rene Rideau <fare@tunes.org>
Fri, 17 Sep 2010 15:54:28 +0000 (11:54 -0400)
committerFrancois-Rene Rideau <fare@tunes.org>
Fri, 17 Sep 2010 15:54:28 +0000 (11:54 -0400)
asdf-ops.lisp
grovel.lisp
package.lisp

index 97e9db0..27a4d11 100644 (file)
@@ -174,8 +174,8 @@ to the base of the system."
                        compspec system)
                (apply #'reinitialize-instance component args))))
     (loop :for (system compspec . initargs) in additional-initargs :do
-      (assert (member (asdf::coerce-name system) systems
-                      :key #'asdf::coerce-name
+      (assert (member (coerce-name system) systems
+                      :key #'coerce-name
                       :test #'equal)
               ()
               "Component translation in System ~A which is not a member of the ~
index 6dca515..5a4474e 100644 (file)
       (enough-component-spec component)))
 
 ;; Used only by maybe-translated-component-class.
-(defun coerce-name (maybe-class)
+(defun coerce-class-name (maybe-class)
   (if (typep maybe-class 'standard-class)
       (class-name maybe-class)
       maybe-class))
      :file)
     ((and (eql (class-of component)
                (find-class (or
-                            (coerce-name
+                            (coerce-class-name
                              (asdf::module-default-component-class
                               (asdf:component-parent component)))
                             'asdf:cl-source-file))))
index e0f936e..a697623 100644 (file)
@@ -31,8 +31,8 @@
 
 (in-package #:asdf-dependency-grovel)
 
-(defparameter *asdf-dependency-grovel-version* "1.102")
-(defparameter *asdf-version-required-by-adg* "2.000")
+(defparameter *asdf-dependency-grovel-version* "1.103")
+(defparameter *asdf-version-required-by-adg* "2.008")
 
 #-asdf2
 (error "ASDF-DEPENDENCY-GROVEL requires ASDF2.")