More reorganization: simplify dependencies, move graph-metrics into a system connection
authorGary King <gwking@metabang.com>
Tue, 10 Jun 2008 12:57:49 +0000 (08:57 -0400)
committerGary King <gwking@metabang.com>
Tue, 10 Jun 2008 12:57:49 +0000 (08:57 -0400)
darcs-hash:20080610125749-3cc5d-ba49ffeb616c4a9ef74677debfcf672a89c445b5.gz

cl-graph.asd

index ace07b1..f6537f3 100644 (file)
@@ -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"))
                                      
@@ -52,12 +50,12 @@ instructions."))
                    (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")))))