/usr/share/common-lisp/source/kmrcl/kmrcl.asd is in cl-kmrcl 1.106-1.
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 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 | ;;;; -*- Mode: Lisp; Syntax: ANSI-Common-Lisp; Base: 10 -*-
;;;; *************************************************************************
;;;; FILE IDENTIFICATION
;;;;
;;;; Name: kmrcl.asd
;;;; Purpose: ASDF system definition for KMRCL package
;;;; Programmer: Kevin M. Rosenberg
;;;; Date Started: Apr 2000
;;;;
;;;; This file, part of KMRCL, is Copyright (c) 2002 by Kevin M. Rosenberg
;;;;
;;;; KMRCL users are granted the rights to distribute and use this software
;;;; as governed by the terms of the Lisp Lesser GNU Public License
;;;; (http://opensource.franz.com/preamble.html), also known as the LLGPL.
;;;; *************************************************************************
(in-package #:cl-user)
(defpackage #:kmrcl-system (:use #:asdf #:cl))
(in-package #:kmrcl-system)
#+(or allegro cmu clisp lispworks sbcl scl openmcl)
(pushnew :kmr-mop cl:*features*)
(defsystem kmrcl
:name "kmrcl"
:author "Kevin M. Rosenberg <kevin@rosenberg.net>"
:maintainer "Kevin M. Rosenberg <kmr@debian.org>"
:licence "LLGPL"
:depends-on (#+sbcl sb-posix)
:components
((:file "package")
(:file "ifstar" :depends-on ("package"))
(:file "byte-stream" :depends-on ("package"))
(:file "macros" :depends-on ("package"))
(:file "functions" :depends-on ("macros"))
(:file "lists" :depends-on ("macros"))
(:file "seqs" :depends-on ("macros"))
(:file "impl" :depends-on ("macros"))
(:file "io" :depends-on ("macros" "impl"))
(:file "console" :depends-on ("macros"))
(:file "strings" :depends-on ("macros" "seqs"))
(:file "strmatch" :depends-on ("strings"))
(:file "buff-input" :depends-on ("macros"))
(:file "random" :depends-on ("macros"))
(:file "symbols" :depends-on ("macros"))
(:file "datetime" :depends-on ("macros"))
(:file "math" :depends-on ("macros"))
(:file "color" :depends-on ("macros"))
#+kmr-mop (:file "mop" :depends-on ("macros"))
;; #+kmr-mop (:file "attrib-class" :depends-on ("seqs" "mop"))
(:file "equal" :depends-on ("macros" #+kmr-mop "mop"))
(:file "web-utils" :depends-on ("macros" "strings"))
(:file "xml-utils" :depends-on ("macros"))
(:file "sockets" :depends-on ("strings"))
(:file "processes" :depends-on ("macros"))
(:file "listener" :depends-on ("sockets" "processes" "console"))
(:file "repl" :depends-on ("listener" "strings"))
(:file "os" :depends-on ("macros" "impl"))
(:file "signals" :depends-on ("package"))
(:file "btree" :depends-on ("macros"))
(:file "hash" :depends-on ("macros"))
))
(defmethod perform ((o test-op) (c (eql (find-system 'kmrcl))))
(operate 'load-op 'kmrcl-tests)
(operate 'test-op 'kmrcl-tests :force t))
|