Added subgraph-containing -- duh!
[cl-graph.git] / cl-graph.asd
index 13b3e11..78fb5f0 100644 (file)
@@ -13,7 +13,7 @@ instructions."))
   (operate 'load-op 'asdf-system-connections))
 
 (defsystem cl-graph
-  :version "0.8.4"
+  :version "0.10.0"
   :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,14 @@ 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 
-              :cl-containers
-              :metabang-bind
-              :cl-mathstats
-              ;; makes ASDF-Install get this automatically
-              :asdf-system-connections
+  :depends-on ((:version :metatilities-base "0.6.0")
+              (:version :cl-containers "0.11.0")
               ))
 
 (defmethod operation-done-p 
@@ -90,3 +84,31 @@ 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")))))
+
+#+asdf-system-connections
+(asdf:defsystem-connection cl-graph-and-moptilities
+  :requires (cl-graph moptilities)
+  :components ((:module 
+               "dev"
+               :components
+               ((:file "subgraph-containing")))))
+
+#+asdf-system-connections
+(asdf:defsystem-connection cl-graph-and-dynamic-classes
+  :requires (cl-graph dynamic-classes)
+  :components ((:module 
+               "dev"
+               :components
+               ((:file "dynamic-classes")))))
+
+
+
+