-
Notifications
You must be signed in to change notification settings - Fork 2
/
more-conditions.asd
54 lines (48 loc) · 2.37 KB
/
more-conditions.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
;;;; more-conditions.asd --- System definition for more-conditions.
;;;;
;;;; Copyright (C) 2010-2017 Jan Moringen
;;;;
;;;; Author: Jan Moringen <[email protected]>
(defsystem :more-conditions
:author "Jan Moringen <[email protected]>"
:maintainer "Jan Moringen <[email protected]>"
:version (:read-file-form "version-string.sexp")
:license "LLGPLv3" ; see COPYING file for details.
:description "This system provides some generic condition classes in
conjunction with support functions and macros."
:long-description "The idea is similar to
`alexandria:required-argument' but more
fine-grained.
In addition, there is support for translating
conditions at layer boundaries in larger systems."
:depends-on (:alexandria
(:version :closer-mop "1.0.0"))
:encoding :utf-8
:components ((:module "src"
:serial t
:components ((:file "package")
(:file "types")
(:file "variables")
(:file "protocol")
(:file "conditions")
(:file "macros")))
(:static-file "README.org"))
:in-order-to ((test-op (test-op :more-conditions/test))))
(defsystem :more-conditions/test
:author "Jan Moringen <[email protected]>"
:maintainer "Jan Moringen <[email protected]>"
:version (:read-file-form "version-string.sexp")
:license "LLGPLv3" ; see COPYING file for details.
:description "Unit tests for the more-conditions system."
:depends-on ((:version :let-plus "0.2")
(:version :more-conditions (:read-file-form "version-string.sexp"))
(:version :fiveam "1.3"))
:encoding :utf-8
:components ((:module "test"
:serial t
:components ((:file "package")
(:file "conditions")
(:file "macros")))))
(defmethod perform ((operation test-op)
(component (eql (find-system :more-conditions/test))))
(uiop:symbol-call '#:more-conditions.test '#:run-tests))