-
Notifications
You must be signed in to change notification settings - Fork 0
/
configuration.options.asd
127 lines (102 loc) · 5.52 KB
/
configuration.options.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
116
117
118
119
120
121
122
123
124
125
126
127
;;;; configuration.options.asd --- System definition for the configuration.options system.
;;;;
;;;; Copyright (C) 2011-2018 Jan Moringen
;;;;
;;;; Author: Jan Moringen <[email protected]>
(defsystem "configuration.options"
:description "An extensible configuration system that supports multiple option sources."
:license "LLGPLv3" ; see COPYING file for details.
:author "Jan Moringen <[email protected]>"
:maintainer "Jan Moringen <[email protected]>"
:homepage "https://github.com/scymtym/configuration.options"
:bug-tracker "https://github.com/scymtym/configuration.options/issues"
:source-control (:git "https://github.com/scymtym/configuration.options.git")
:version (:read-file-form "version-string.sexp")
:depends-on ("alexandria"
"split-sequence"
(:version "let-plus" "0.2")
(:version "more-conditions" "0.3")
(:version "utilities.print-items" "0.1")
(:version "utilities.print-tree" "0.1")
(:version "cl-hooks" "0.2") ; TODO
(:version "architecture.service-provider" "0.1")
"log4cl"
(:version "esrap" "0.9"))
:components ((:module "src"
:serial t
:components ((:file "package")
(:file "types")
(:file "variables")
(:file "conditions")
(:file "protocol")
(:file "util")
(:file "mixins")
(:file "name")
(:file "schema")
(:file "configuration")
(:file "value-types")
(:file "synchronizer")
(:file "macros")
(:file "let-plus")
;; Debugging
(:file "debug")))
(:module "sources"
:pathname "src/sources"
:depends-on ("src")
:serial t
:components ((:file "package")
(:file "conditions")
(:file "protocol")
;; Debugging
(:file "debug")
;; Utilities
(:file "configuration-files")
;; Sources
(:file "source-defaults")
(:file "source-environment-variables")
(:file "source-stream")
(:file "source-file")
(:file "source-cascade"))))
:in-order-to ((test-op (test-op "configuration.options/test"))))
(defsystem "configuration.options/test"
:description "Unit tests for the configuration.options system."
:license "LLGPLv3" ; see COPYING file for details.
:author "Jan Moringen <[email protected]>"
:maintainer "Jan Moringen <[email protected]>"
:version (:read-file-form "version-string.sexp")
:depends-on ("alexandria"
(:version "let-plus" "0.2")
(:version "configuration.options" (:read-file-form "version-string.sexp"))
(:version "fiveam" "1.3"))
:components ((:module "test"
:serial t
:components ((:file "package")
(:file "util")
(:file "mocks")
(:file "protocol")
(:file "mixins")
(:file "name")
(:file "schema")
(:file "configuration")
(:file "value-types")
(:file "synchronizer")
(:file "macros")
(:file "let-plus")
;; Debugging
(:file "debug")))
(:module "sources"
:pathname "test/sources"
:depends-on ("test")
:serial t
:components ((:file "package")
(:file "protocol")
;; Utilities
(:file "configuration-files")
;; Sources
(:file "source-defaults")
(:file "source-environment-variables")
(:file "source-stream")
(:file "source-file")
(:file "source-cascade"))))
:perform (test-op (operation component)
(uiop:symbol-call '#:configuration.options.test '#:run-tests)))