s/graph-search/graph-search-for-cl-graph/ to keep packages happy
[cl-graph.git] / cl-graph.asd
index 13b3e11..f6537f3 100644 (file)
@@ -13,7 +13,7 @@ instructions."))
   (operate 'load-op 'asdf-system-connections))
 
 (defsystem cl-graph
-  :version "0.8.4"
+  :version "0.8.5"
   :author "Gary Warren King <gwking@metabang.com>"
   :maintainer "Gary Warren King <gwking@metabang.com>"
   :licence "MIT Style License"
@@ -33,8 +33,6 @@ instructions."))
                        :depends-on ("graph"))
                 (:file "graph-matrix"
                        :depends-on ("graph"))
-                (:file "graph-metrics"
-                       :depends-on ("graph"))
                 (:file "graph-algorithms"
                        :depends-on ("graph"))
                                      
@@ -46,18 +44,18 @@ instructions."))
                "website"
                :components 
                ((:module "source"
-                         :components ((:static-file "index.lml"))))))
+                         :components ((:static-file "index.md"))))))
   :in-order-to ((test-op (load-op :cl-graph-test)))
   :perform (test-op :after (op c)
                    (funcall
                      (intern (symbol-name '#:run-tests) :lift)
                      :config :generic))
-  :depends-on (:metatilities 
+  :depends-on (:metatilities-base
+              :dynamic-classes
               :cl-containers
               :metabang-bind
-              :cl-mathstats
-              ;; makes ASDF-Install get this automatically
-              :asdf-system-connections
+              ;:cl-mathstats
+              :moptilities
               ))
 
 (defmethod operation-done-p 
@@ -90,3 +88,11 @@ instructions."))
   :components ((:module 
                "dev"
                :components ((:file "copying")))))
+
+#+asdf-system-connections
+(asdf:defsystem-connection cl-graph-and-cl-mathstats
+  :requires (cl-graph cl-mathstats)
+  :components ((:module 
+               "dev"
+               :components
+               ((:file "graph-metrics")))))