-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathconfiguration.options-and-puri.asd
46 lines (33 loc) · 1.83 KB
/
configuration.options-and-puri.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
;;;; configuration.options-and-puri.asd --- Puri URIs as option values.
;;;;
;;;; Copyright (C) 2013-2018 Jan Moringen
;;;;
;;;; Author: Jan Moringen <[email protected]>
(defsystem "configuration.options-and-puri"
:description "Integration with the puri 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"))
"puri")
:components ((:module "src"
:components ((:file "value-type-puri"))))
:in-order-to ((test-op (test-op "configuration.options-and-puri/test"))))
(defsystem "configuration.options-and-puri/test"
:description "Unit tests for the puri integration of the 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-and-puri" (:read-file-form "version-string.sexp"))
(:version "fiveam" "1.3")
(:version "configuration.options/test" (:read-file-form "version-string.sexp")))
:components ((:module "test"
:components ((:file "value-type-puri"))))
:perform (test-op (operation component)
(uiop:symbol-call '#:configuration.options.puri.test '#:run-tests)))