Skip to content

Commit

Permalink
Add project scaffolding
Browse files Browse the repository at this point in the history
  • Loading branch information
ak-coram committed Jun 18, 2023
1 parent c001ce7 commit b8786c6
Show file tree
Hide file tree
Showing 5 changed files with 42 additions and 0 deletions.
2 changes: 2 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
*.fasl
*.fas
13 changes: 13 additions & 0 deletions ginkgo-time-test.lisp
Original file line number Diff line number Diff line change
@@ -0,0 +1,13 @@
;;;; ginkgo-time-test.lisp

(defpackage #:ginkgo-time-test
(:use #:cl #:fiveam))

(in-package #:ginkgo-time-test)

(def-suite :ginkgo-time)
(in-suite :ginkgo-time)

(test nop
(is (eql t t)))

22 changes: 22 additions & 0 deletions ginkgo-time.asd
Original file line number Diff line number Diff line change
@@ -0,0 +1,22 @@
;;;; ginkgo-time.asd

(asdf:defsystem #:ginkgo-time
:description
"Common Lisp implementation of the Java API for dates, times, instants, and durations"
:author "Ákos Kiss <[email protected]>"
:license "MIT License"
:serial t
:depends-on ()
:components ((:file "package")
(:file "ginkgo-time"))
:in-order-to ((test-op (test-op "ginkgo-time/test"))))

(asdf:defsystem #:ginkgo-time/test
:depends-on (#:ginkgo-time
#:fiveam)
:components ((:file "ginkgo-time-test"))
:perform (test-op (o c) (symbol-call :fiveam '#:run! :ginkgo-time)))

(asdf:defsystem #:ginkgo-time/*
:depends-on (#:ginkgo-time
#:ginkgo-time/test))
Empty file added ginkgo-time.lisp
Empty file.
5 changes: 5 additions & 0 deletions package.lisp
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
;;;; package.lisp

(defpackage #:ginkgo-time
(:use #:cl)
(:export))

0 comments on commit b8786c6

Please sign in to comment.