forked from hraban/cl-graph
-
Notifications
You must be signed in to change notification settings - Fork 0
/
cl-graph.asd
119 lines (104 loc) · 3.21 KB
/
cl-graph.asd
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
;;; -*- Mode: Lisp; package: cl-user; Syntax: Common-lisp; Base: 10 -*-
(in-package #:common-lisp-user)
(defpackage #:cl-graph-system (:use #:cl #:asdf))
(in-package #:cl-graph-system)
(unless (or (member :asdf-system-connections *features*)
(find-system 'asdf-system-connections nil))
(warn "The CL-Graph system would enjoy having asdf-system-connections
around. See
http://www.cliki.net/asdf-system-connections for details and download
instructions."))
(when (and (not (member :asdf-system-connections *features*))
(find-system 'asdf-system-connections nil))
(operate 'load-op 'asdf-system-connections))
(defsystem cl-graph
:version "0.10.2"
:author "Gary Warren King <[email protected]>"
:maintainer "Gary Warren King <[email protected]>"
:licence "MIT Style License"
:description "Graph manipulation utilities for Common Lisp"
:components ((:static-file "COPYING")
(:module
"dev"
:components
((:file "package")
(:file "api"
:depends-on ("package"))
(:file "macros"
:depends-on ("package"))
(:file "graph"
:depends-on ("api" "macros"))
(:file "graph-container"
:depends-on ("graph"))
(:file "graph-matrix"
:depends-on ("graph"))
(:file "graph-algorithms"
:depends-on ("graph"))
#+(or)
(:file "dynamic-classes"
:depends-on ("graph"))
(:static-file "notes.text")
(:module "graphviz" :depends-on ("graph")
:components ((:file "graphviz-support")))))
(:module
"website"
:components
((:module "source"
: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 ((:version :metatilities-base "0.6.0")
(:version :cl-containers "0.12.0")
:metabang-bind
))
(defmethod operation-done-p
((o test-op) (c (eql (find-system 'cl-graph))))
(values nil))
#+asdf-system-connections
(asdf:defsystem-connection cl-graph-and-cl-variates
:requires (cl-graph cl-variates)
:components ((:module
"dev"
:components
((:file "graph-and-variates")
(:file "graph-generation"
:depends-on ("graph-and-variates"))))))
#+asdf-system-connections
(asdf:defsystem-connection cl-graph-and-dynamic-classes
:requires (cl-graph dynamic-classes)
:components ((:module
"dev"
:components
((:file "dynamic-classes")))))
#+asdf-system-connections
(asdf:defsystem-connection cl-graph-and-cl-graphviz
:requires (cl-graph cl-graphviz)
:components ((:module
"dev"
:components
((:module "graphviz"
:components
((:file "graphviz-support-optional")))))))
#+asdf-system-connections
(asdf:defsystem-connection cl-graph-and-metacopy
:requires (cl-graph metacopy)
: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")))))