git.fiddlerwoaroof.com
Raw Blame History
;;; -*- Mode:Lisp; Syntax:ANSI-Common-Lisp; Package: ASDF-USER -*-
(in-package :asdf-user)

(defsystem :prune-datelist 
  :description ""
  :author "Ed L <edward@elangley.org>"
  :license "MIT"
  :depends-on (#:alexandria
               #:uiop
               #:serapeum
               #:fwoar-lisputils
               #:local-time)
  :serial t
  :in-order-to ((test-op (test-op :prune-datelist/tests)))
  :components ((:file "prune-datelist")))

(defsystem :prune-datelist/tests 
  :description ""
  :author "Ed L <edward@elangley.org>"
  :license "MIT"
  :depends-on (#:alexandria
               #:uiop
               #:serapeum
               #:fiveam
               #:prune-datelist)
  :serial t
  :components ((:file "tests")))