changelog shortlog graph tags branches changeset files revisions annotate raw help

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

changeset 573: f8b76ced5e2d
parent: e2d577f31866
child: 35a579313b80
author: Richard Westhaver <ellis@rwest.io>
date: Thu, 01 Aug 2024 21:21:07 -0400
permissions: -rw-r--r--
description: sk print init, reconcile doc:file-header and skel file headers
1 ;; (push :inspect *features*)
2 (defsystem :skel
3  :version "0.1.0"
4  :maintainer "ellis <ellis@rwest.io>"
5  :bug-tracker "https://vc.compiler.company/comp/core/issues"
6  :depends-on (:uiop :asdf :sb-posix :sb-bsd-sockets :sb-concurrency :cl-ppcre :std
7  :obj :dat :cli :organ :doc :vc
8  :pod
9  (:feature :ext :box)
10  (:feature :ext :krypt)
11  (:feature :ext :packy)
12  (:feature :ext :net)
13  (:feature :tools :clouseau))
14  :serial t
15  :components
16  ((:module "core"
17  :serial t
18  :components
19  ((:file "pkg")
20  (:file "err")
21  (:file "types")
22  (:file "proto")
23  (:file "header")
24  (:file "vars")
25  (:file "obj")
26  (:file "print")
27  (:file "util")
28  (:file "vm")))
29  (:module "comp"
30  :components
31  ((:file "pkg")
32  (:file "asd")
33  (:file "cargo")
34  (:file "container")
35  (:file "org")
36  (:file "dir-locals")
37  (:file "makefile")))
38  (:file "pkg")
39  (:module "tools"
40  :components
41  ((:file "pkg")
42  (:file "deploy")
43  (:file "viz"))
44  :if-feature :tools)
45  (:module "ext"
46  :components
47  ((:file "pkg")
48  (:file "asdf")
49  (:file "inspect" :if-feature :clouseau)
50  (:file "krypt")
51  (:file "packy")
52  (:file "net"))
53  :if-feature :ext))
54  :in-order-to ((test-op (test-op "skel/tests"))))
55 
56 (defsystem :skel/tests
57  :depends-on (:rt :skel)
58  :components ((:file "tests"))
59  :perform (test-op (o c) (symbol-call :rt :do-tests :skel)))