dotfiles/sbcl/.quicklisp/dists/quicklisp/software/local-time-20190710-git/local-time.asd
2020-02-24 20:27:04 -05:00

29 lines
1.2 KiB
Common Lisp

(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")))))