Vim window logic, slimv
This commit is contained in:
parent
babcc9e44b
commit
515847d07e
791 changed files with 51552 additions and 86 deletions
|
|
@ -0,0 +1,29 @@
|
|||
(defsystem "local-time"
|
||||
:version "1.0.6"
|
||||
:license "BSD"
|
||||
:author "Daniel Lowe <dlowe@dlowe.net>"
|
||||
:description "A library for manipulating dates and times, based on a paper by Erik Naggum"
|
||||
:depends-on (:cl-fad)
|
||||
:in-order-to ((test-op (test-op "local-time/test")))
|
||||
:components ((:module "src"
|
||||
:serial t
|
||||
:components ((:file "package")
|
||||
(:file "local-time")))))
|
||||
|
||||
(defsystem "local-time/test"
|
||||
:version "1.0.6"
|
||||
:author "Daniel Lowe <dlowe@dlowe.net>"
|
||||
:description "Testing code for the local-time library"
|
||||
:depends-on (:stefil
|
||||
:local-time)
|
||||
:perform (test-op (o s) (uiop:symbol-call '#:stefil
|
||||
'#:funcall-test-with-feedback-message
|
||||
(uiop:find-symbol* '#:test '#:local-time.test)))
|
||||
:components ((:module "test"
|
||||
:serial t
|
||||
:components ((:file "package")
|
||||
(:file "simple")
|
||||
(:file "comparison")
|
||||
(:file "formatting")
|
||||
(:file "parsing")
|
||||
(:file "timezone")))))
|
||||
Loading…
Add table
Add a link
Reference in a new issue