X-Git-Url: http://repo.macrolet.net/gitweb/?a=blobdiff_plain;f=contrib%2Fsb-aclrepl%2Fsb-aclrepl.asd;h=4fbae1d5477c0748750a3b8cb1f5dff61d5f7a92;hb=df871446529da0e83d670f35a9566c11d814be32;hp=44128700fb842de76b8463d2b98df844dc23eec5;hpb=83c1b8bca82fc165b01332ef9e5c031c64d758d8;p=sbcl.git diff --git a/contrib/sb-aclrepl/sb-aclrepl.asd b/contrib/sb-aclrepl/sb-aclrepl.asd index 4412870..4fbae1d 100644 --- a/contrib/sb-aclrepl/sb-aclrepl.asd +++ b/contrib/sb-aclrepl/sb-aclrepl.asd @@ -4,7 +4,26 @@ (in-package #:sb-aclrepl-system) (defsystem sb-aclrepl - :version "0.5" - :components ((:file "repl") - (:file "inspect" :depends-on ("repl")))) + :author "Kevin Rosenberg " + :description "An AllegroCL compatible REPL" + #+sb-building-contrib :pathname + #+sb-building-contrib "SYS:CONTRIB;SB-ACLREPL;" + :components ((:file "toplevel") + (:file "repl" :depends-on ("toplevel")) + (:file "inspect" :depends-on ("repl")) + (:file "debug" :depends-on ("repl")))) +(defmethod perform :after ((o load-op) (c (eql (find-system :sb-aclrepl)))) + (provide 'sb-aclrepl)) + +(defmethod perform ((o test-op) (c (eql (find-system :sb-aclrepl)))) + (oos 'load-op 'sb-aclrepl-tests) + (oos 'test-op 'sb-aclrepl-tests)) + +(defsystem sb-aclrepl-tests + :depends-on (sb-rt) + :components ((:file "tests"))) + +(defmethod perform ((o test-op) (c (eql (find-system :sb-aclrepl-tests)))) + (or (funcall (intern "DO-TESTS" (find-package "SB-RT"))) + (error "test-op failed")))