changelog shortlog graph tags branches changeset file revisions annotate raw help

Mercurial > core / lisp/btrfs.asd

revision 0: 35b3dcda7839
     1.1--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
     1.2+++ b/lisp/btrfs.asd	Thu Oct 12 22:36:34 2023 -0400
     1.3@@ -0,0 +1,34 @@
     1.4+;;; btrfs.asd --- BTRFS SYSTEMS
     1.5+
     1.6+;; BTRFS for lisp.
     1.7+
     1.8+;;; Code:
     1.9+(eval-when (:compile-toplevel :load-toplevel :execute)
    1.10+  (require :sb-grovel))
    1.11+
    1.12+(defpackage :btrfs.sys
    1.13+  (:use :cl :asdf :sb-grovel :sb-alien))
    1.14+
    1.15+(in-package :btrfs.sys)
    1.16+
    1.17+(defsystem "btrfs"
    1.18+  :version "0.1.0"
    1.19+  :license (:file "LICENSE")
    1.20+  :maintainer "ellis <ellis@rwest.io>"
    1.21+  :homepage "https://nas-t.net"
    1.22+  :bug-tracker "https://lab.rwest.io/comp/startup/nas-t/issues"
    1.23+;;  :depends-on (:macs :sxp)
    1.24+  :in-order-to ((test-op (test-op "btrfs/tests")))
    1.25+  :components ((:module "btrfs"
    1.26+                :components
    1.27+                ((:file "btrfs")))))
    1.28+
    1.29+(defsystem "btrfs/tests"
    1.30+  :version "0.1.0"
    1.31+  :license (:file "LICENSE")
    1.32+  :maintainer "ellis <ellis@rwest.io>"
    1.33+  :homepage "https://nas-t.net"
    1.34+  :bug-tracker "https://lab.rwest.io/comp/startup/nas-t/issues"
    1.35+  :depends-on (:btrfs :sb-rt :rt)
    1.36+  :components ((:file "btrfs/tests"))
    1.37+  :perform (test-op (op c) (uiop:symbol-call '#:btrfs.tests '#:run-all-tests)))