adopt.asd @ 5d5c09688c11 v1.0.1

Update changelog and bump version
author Steve Losh <steve@stevelosh.com>
date Thu, 30 Jan 2020 19:27:19 -0500
parents d5dbc46f6ddb
children b9b3d5f9211c
(asdf:defsystem :adopt
  :description "Simple, flexible, UNIX-style option parsing."
  :author "Steve Losh <steve@stevelosh.com>"
  :homepage "https://docs.stevelosh.com/adopt/"

  :license "MIT"
  :version "1.0.1"

  :depends-on (:bobbin :split-sequence)

  :in-order-to ((asdf:test-op (asdf:test-op :adopt/test)))

  :serial t
  :components ((:module "src" :serial t
                :components ((:file "package")
                             (:file "main")))))


(asdf:defsystem :adopt/test
  :description "Test suite for adopt."

  :author "Steve Losh <steve@stevelosh.com>"
  :license "MIT"

  :depends-on (:adopt :1am)

  :serial t
  :components ((:module "test"
                :serial t
                :components ((:file "package")
                             (:file "tests"))))

  :perform (asdf:test-op (op system)
             (funcall (read-from-string "adopt.test:run-tests"))))