changelog shortlog graph tags branches changeset files revisions annotate raw help

Mercurial > core / lisp/lib/organ/organ.asd

changeset 698: 96958d3eb5b0
parent: 78ef6145e272
author: Richard Westhaver <ellis@rwest.io>
date: Fri, 04 Oct 2024 22:04:59 -0400
permissions: -rw-r--r--
description: fixes
1 (defsystem :organ
2  :version "0.1.0"
3  :description "org-mode utils"
4  :depends-on (:cl-ppcre :std :nlp :parse)
5  :components ((:file "pkg")
6  (:file "vars")
7  (:file "err")
8  (:file "proto")
9  (:file "util")
10  (:file "macs")
11  (:module "object"
12  :components
13  ((:file "markup")
14  (:file "entity")
15  (:file "citation")
16  (:file "footnote-ref")
17  (:file "inline-babel-call")
18  (:file "inline-source-block")
19  (:file "line-break")
20  (:file "link")
21  (:file "macro")
22  (:file "export-snippet")
23  (:file "sscript")
24  (:file "stat-cookie")
25  (:file "table-cell")
26  (:file "target")
27  (:file "timestamp")))
28  (:module "element"
29  :components
30  ((:module "lesser"
31  :components ((:file "paragraph")
32  (:file "block")
33  (:file "clock")
34  (:file "diary-sexp")
35  (:file "latex-env")
36  (:file "comment")
37  (:file "fixed-width")
38  (:file "horizontal-rule")
39  (:file "keyword")
40  (:file "planning")
41  (:file "table-row")
42  (:file "node-property")))
43  (:module "greater"
44  :components ((:file "plain-list")
45  (:file "block")
46  (:file "drawer")
47  (:file "footnote-def")
48  (:file "item")
49  (:file "table")))
50  (:file "headline")))
51  (:file "section")
52  (:file "heading")
53  (:file "document"))
54  :in-order-to ((test-op (test-op :organ/tests))))
55 
56 (defsystem :organ/tests
57  :depends-on (:rt :organ)
58  :components ((:file "tests"))
59  :perform (test-op (o c) (symbol-call :rt :do-tests :organ)))