fix: reorder definitions

This commit is contained in:
Ed L
2023-07-15 14:14:55 -07:00
parent e833e39e87
commit 0728cb22fa

View File

@ -32,14 +32,6 @@
:components ((:module "t" :components ((:module "t"
:components ((:file "lens"))))) :components ((:file "lens")))))
(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 (asdf:defsystem #:data-lens/transducers
:description #.(format nil "~@{~a~^ ~}" :description #.(format nil "~@{~a~^ ~}"
"A collection of transducers to reduce stream-manipulation overhead") "A collection of transducers to reduce stream-manipulation overhead")
@ -55,6 +47,14 @@
(:file "transducers") (:file "transducers")
(:file "lazy-sequence"))) (: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 (asdf:defsystem #:data-lens/transducers/test
:description "tests for the transducers" :description "tests for the transducers"
:author "Edward Langley <el-cl@elangley.org>" :author "Edward Langley <el-cl@elangley.org>"