Frob packages after changes in dependencies. 0.590
authorFrancois-Rene Rideau <tunes@google.com>
Tue, 18 Sep 2012 19:33:14 +0000 (15:33 -0400)
committerFrancois-Rene Rideau <tunes@google.com>
Tue, 18 Sep 2012 19:33:14 +0000 (15:33 -0400)
version.lisp
virtual-pathnames.lisp

index 24e6658..caf8fb6 100644 (file)
   (asdf:system-source-directory :xcvb))
 
 (defun xcvb-git-checkout-p ()
-  (asdf:probe-file* (asdf:subpathname (get-xcvb-directory) ".git/")))
+  (asdf::probe-file* (asdf::subpathname (get-xcvb-directory) ".git/")))
 
 (defun xcvb-version-file ()
-  (asdf:subpathname (get-xcvb-directory) "version.text"))
+  (asdf::subpathname (get-xcvb-directory) "version.text"))
 
 (defun get-xcvb-version-from-git ()
   (and (xcvb-git-checkout-p)
@@ -36,7 +36,7 @@
 
 (defun make-xcvb-version-file (&optional file)
   (let ((version (get-xcvb-version-from-git))
-        (file (asdf:merge-pathnames* file (xcvb-version-file))))
+        (file (asdf::merge-pathnames* file (xcvb-version-file))))
     (unless version
       (error "Could not get XCVB version from git"))
     (with-open-file (s file :direction :output
index d38c1d9..171b588 100644 (file)
@@ -5,7 +5,7 @@
 
 ;;;;; Virtual pathname object.
 
-(define-interface xcvb-interface (eq:<hashable>) ())
+(define-interface xcvb-interface (<hashable>) ())
 
 (defclass virtual-pathname ()
   ((hash :initarg :hash :reader vp-hash)
@@ -13,9 +13,9 @@
    (subpath :initarg :subpath :reader vp-subpath)
    (resolved-namestring :accessor vp-resolved-namestring)))
 
-(defmethod eq:hash ((i xcvb-interface) (vp virtual-pathname))
+(defmethod hash ((i xcvb-interface) (vp virtual-pathname))
   (vp-hash vp))
-(defmethod eq:== ((i xcvb-interface) (vp1 virtual-pathname) (vp2 virtual-pathname))
+(defmethod == ((i xcvb-interface) (vp1 virtual-pathname) (vp2 virtual-pathname))
   (and (equal (vp-root vp1) (vp-root vp2))
        (equal (vp-subpath vp1) (vp-subpath vp2))))