Fix non-keyword symbol in asdf file.
[lw2-viewer.git] / lw2-viewer.asd
blob90f5bf334657e02abfa7b8fa70046a22ba858c5f
1 (in-package :asdf)
3 (asdf:defsystem :lw2-viewer
4   :depends-on ("uiop" "flexi-streams" "hunchentoot" "dexador" "cl-json" "lmdb" "local-time" "plump" "clss" "cl-ppcre" "xml-emitter" "city-hash" "bit-smasher" "cl-unicode" "parse-js" "cl-markdown" "websocket-driver-client" "ironclad" "cl-base64" "djula" "split-sequence" "cl-typesetting" "named-readtables" "collectors" "closer-mop" "chronicity" "parenscript" "trivial-gray-streams" "trivia" "iterate" "introspect-environment" "trivial-macroexpand-all" "trivial-cltl2" "dufy/core")
5   :components ((:module "src"
6                 :components ((:file "utils" :depends-on ("macro-utils"))
7                              (:file "macro-utils")
8                              (:file "raw-memory-streams")
9                              (:file "graphql" :depends-on ("macro-utils"))
10                              (:file "hash-utils")
11                              (:file "context")
12                              (:file "client-script")
13                              (:file "html-reader" :depends-on ("client-script"))
14                              (:file "interface-utils" :depends-on ("links" "html-reader"))
15                              (:file "user-context")
16                              (:file "conditions" :depends-on ("utils" "html-reader"))
17                              (:file "schema-type" :depends-on ("utils" "backend-modules"))
18                              (:file "dnsbl" :depends-on ("../config"))
19                              (:file "backend-modules")
20                              (:module "backends"
21                               :components ((:file "accordius"))
22                               :depends-on ("backend-modules" "backend" "lw2-login"))
23                              (:file "routes")
24                              (:file "resources" :depends-on ("config-package" "sites" "context"))
25                              (:file "sites" :depends-on ("utils" "routes" "backend-modules" "fonts-modules"))
26                              (:file "fonts-modules")
27                              (:file "fonts" :depends-on ("html-reader" "utils" "sites" "fonts-modules" "backend" "resources"))
28                              (:file "config-package" :depends-on ("sites" "backend-modules" "fonts-modules"))
29                              (:module "config-copy"
30                                       :pathname "../"
31                                       :output-files (compile-op (o c) (if (file-exists-p "config.lisp") nil (list "config.lisp")))
32                                       :perform (compile-op :before (o c)
33                                                            (if (file-exists-p "config.lisp")
34                                                                (mark-operation-done o c)
35                                                                (copy-file "config-example.lisp" "config.lisp"))))
36                              (:file "../config" :depends-on ("config-copy" "config-package"))
37                              (:file "lmdb" :depends-on ("raw-memory-streams" "hash-utils" "sites" "context" "../config"))
38                              (:file "backend" :depends-on ("utils" "hash-utils" "backend-modules" "lmdb" "graphql" "context" "user-context" "sites" "schema-type" "conditions" "web-push"))
39                              (:file "csrf" :depends-on ("conditions" "client-script"))
40                              (:file "components" :depends-on ("utils" "csrf"))
41                              (:file "links" :depends-on ("utils" "lmdb" "backend" "sites" "context"))
42                              (:file "legacy-archive" :depends-on ("utils" "backend"))
43                              (:static-file "../text-clean-regexps.js")
44                              (:static-file "../html-clean-regexps.js")
45                              (:file "colors" :depends-on ("utils"))
46                              (:file "clean-html" :depends-on ("utils" "links" "lmdb" "backend" "context" "sites" "conditions" "colors" "../text-clean-regexps.js" "../html-clean-regexps.js"))
47                              (:file "lw2-login" :depends-on ("utils" "backend" "backend-modules" "context"))
48                              (:file "backlinks" :depends-on ("html-reader" "lmdb" "backend" "backend-modules" "sites" "links" "context" "clean-html" "conditions" "utils" "interface-utils"))
49                              (:file "web-push" :depends-on ("utils" "conditions"))
50                              (:file "push-notifications" :depends-on ("backend"))
51                              (:file "background-loader" :depends-on ("backend" "push-notifications"))
52                              (:file "admin" :depends-on ("lmdb" "clean-html" "backend" "backlinks"))
53                              (:module "data-viewers"
54                                       :components ((:file "post")
55                                                    (:file "comment")
56                                                    (:file "tag"))
57                                       :depends-on ("schema-type" "utils" "backend" "context" "user-context" "sites" "clean-html" "html-reader" "interface-utils" "links" "lmdb" "backlinks")))
58                 :depends-on ())
59                (:module "templates"
60                 :components ((:static-file "conversation.html")
61                              (:static-file "edit-post.html")
62                              (:static-file "reset-password.html")))
63                (:static-file "www/head.js")
64                (:file "lw2" :depends-on ("src" "www/head.js" "templates"))
65                (:file "arbital" :depends-on ("lw2"))))