/usr/share/common-lisp/source/hyperobject/hyperobject.asd is in cl-hyperobject 2.12.0-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 | ;;;; -*- Mode: Lisp; Syntax: ANSI-Common-Lisp; Base: 10 -*-
;;;; *************************************************************************
;;;; FILE IDENTIFICATION
;;;;
;;;; Name: hyperobject.asd
;;;; Purpose: ASDF system definition for hyperobject package
;;;; Author: Kevin M. Rosenberg
;;;; Date Started: Apr 2000
;;;;
;;;; $Id$
;;;; *************************************************************************
(defpackage hyperobject-system (:use #:asdf #:cl))
(in-package :hyperobject-system)
(defsystem hyperobject
:name "hyperobject"
:author "Kevin M. Rosenberg <kevin@rosenberg.net>"
:version "2.7.x"
:maintainer "Kevin M. Rosenberg <kmr@debian.org>"
:licence "BSD-like License"
:components
((:file "package")
(:file "metaclass" :depends-on ("package"))
(:file "mop" :depends-on ("metaclass"))
(:file "rules" :depends-on ("mop"))
(:file "connect" :depends-on ("mop"))
(:file "sql" :depends-on ("connect"))
(:file "views" :depends-on ("mop"))
(:file "base-class" :depends-on ("views" "sql" "rules"))
)
:depends-on (:kmrcl :clsql))
(defmethod perform ((o test-op) (c (eql (find-system :hyperobject))))
(operate 'load-op 'hyperobject-tests)
(operate 'test-op 'hyperobject-tests :force t))
|