/usr/share/sbcl-source/contrib/sb-aclrepl/sb-aclrepl.asd is in sbcl-source 2:1.0.57.0-2.
This file is owned by root:root, with mode 0o644.
The actual contents of the file can be viewed below.
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 | ;;; -*- Lisp -*-
(defpackage #:sb-aclrepl-system (:use #:asdf #:cl))
(in-package #:sb-aclrepl-system)
(defsystem sb-aclrepl
:author "Kevin Rosenberg <kevin@rosenberg.net>"
:description "An AllegroCL compatible REPL"
#+sb-building-contrib :pathname
#+sb-building-contrib #p"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")))
|