-
Notifications
You must be signed in to change notification settings - Fork 0
/
data-lens.asd
64 lines (59 loc) · 2.33 KB
/
data-lens.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
(in-package :asdf-user)
(asdf:defsystem #:data-lens
:description #.(format nil "~@{~a~^ ~}"
"Utilities for building data transformations from"
"composable functions, modeled on lenses and"
"transducers")
:author "Edward Langley <el-cl@elangley.org>"
:license "Apache v2"
:depends-on (:cl-ppcre
:alexandria)
:serial t
:in-order-to ((test-op (test-op :data-lens/test)))
:components ((:file "package")
(:file "optics")
(:file "lens")))
(asdf:defsystem #:data-lens/test
:description "tests for the transducers"
:author "Edward Langley <el-cl@elangley.org>"
:license "Apache v2"
:depends-on (:data-lens
:fiveam
:string-case)
:serial t
:perform (test-op (o c)
(unless (symbol-call :fiveam '#:run! :data-lens.lens)
(error "some tests failed")))
:components ((:module "t"
:components ((:file "lens")))))
(asdf:defsystem #:data-lens/transducers
:description #.(format nil "~@{~a~^ ~}"
"A collection of transducers to reduce stream-manipulation overhead")
:author "Edward Langley <el-cl@elangley.org>"
:license "Apache v2"
:depends-on (:data-lens
:alexandria)
:serial t
:in-order-to ((test-op (test-op :data-lens/transducers/test)))
:components ((:file "package")
(:file "transducer-protocol")
(:file "transducers")
(:file "lazy-sequence")))
(asdf:defsystem #:data-lens/beta/transducers
:description #.(format nil "~@{~a~^ ~}"
"A collection of transducers to reduce stream-manipulation overhead")
:author "Edward Langley <el-cl@elangley.org>"
:license "Apache v2"
:depends-on (:data-lens/transducers)
:in-order-to ((test-op (test-op :data-lens/transducers))))
(asdf:defsystem #:data-lens/transducers/test
:description "tests for the transducers"
:author "Edward Langley <el-cl@elangley.org>"
:license "Apache v2"
:depends-on (:data-lens/beta/transducers
:fiveam)
:serial t
:perform (test-op (o c) (unless (symbol-call :fiveam '#:run! :data-lens.transducers)
(error "some tests failed")))
:components ((:module "t"
:components ((:file "transducers")))))