changelog shortlog graph tags branches changeset files file revisions raw help

Mercurial > core / annotate lisp/lib/doc/doc.asd

changeset 698: 96958d3eb5b0
parent: c45929da6f75
author: Richard Westhaver <ellis@rwest.io>
date: Fri, 04 Oct 2024 22:04:59 -0400
permissions: -rw-r--r--
description: fixes
137
a067da6d51c1 init doc system
ellis <ellis@rwest.io>
parents:
diff changeset
1
 (defsystem :doc
a067da6d51c1 init doc system
ellis <ellis@rwest.io>
parents:
diff changeset
2
   :version "0.1.0"
431
c40d2a41d7ce source concatenating std.lisp, more systems, got zstd simple working, IO work, added dat/tar
Richard Westhaver <ellis@rwest.io>
parents: 264
diff changeset
3
   :description "Core Documentation System"
137
a067da6d51c1 init doc system
ellis <ellis@rwest.io>
parents:
diff changeset
4
   :depends-on (:std :organ :parse)
a067da6d51c1 init doc system
ellis <ellis@rwest.io>
parents:
diff changeset
5
   :components ((:file "pkg")
264
Richard Westhaver <ellis@rwest.io>
parents: 262
diff changeset
6
                (:file "proto")
137
a067da6d51c1 init doc system
ellis <ellis@rwest.io>
parents:
diff changeset
7
                (:file "err")
a067da6d51c1 init doc system
ellis <ellis@rwest.io>
parents:
diff changeset
8
                (:file "symbol")
262
5673cd3f11e1 documentation system
Richard Westhaver <ellis@rwest.io>
parents: 137
diff changeset
9
                (:file "file")
137
a067da6d51c1 init doc system
ellis <ellis@rwest.io>
parents:
diff changeset
10
                (:file "package")
a067da6d51c1 init doc system
ellis <ellis@rwest.io>
parents:
diff changeset
11
                (:file "system")
262
5673cd3f11e1 documentation system
Richard Westhaver <ellis@rwest.io>
parents: 137
diff changeset
12
                (:file "dist")
579
c45929da6f75 init explain
Richard Westhaver <ellis@rwest.io>
parents: 578
diff changeset
13
                (:file "reprex")
c45929da6f75 init explain
Richard Westhaver <ellis@rwest.io>
parents: 578
diff changeset
14
                (:file "explain")
262
5673cd3f11e1 documentation system
Richard Westhaver <ellis@rwest.io>
parents: 137
diff changeset
15
                (:file "image"))
137
a067da6d51c1 init doc system
ellis <ellis@rwest.io>
parents:
diff changeset
16
   :in-order-to ((test-op (test-op :doc/tests))))
a067da6d51c1 init doc system
ellis <ellis@rwest.io>
parents:
diff changeset
17
 
a067da6d51c1 init doc system
ellis <ellis@rwest.io>
parents:
diff changeset
18
 (defsystem :doc/tests
264
Richard Westhaver <ellis@rwest.io>
parents: 262
diff changeset
19
   :depends-on (:rt :doc :rdb)
137
a067da6d51c1 init doc system
ellis <ellis@rwest.io>
parents:
diff changeset
20
   :components ((:file "tests"))
a067da6d51c1 init doc system
ellis <ellis@rwest.io>
parents:
diff changeset
21
   :perform (test-op (o c) (symbol-call :rt :do-tests :doc)))
a067da6d51c1 init doc system
ellis <ellis@rwest.io>
parents:
diff changeset
22