/usr/share/common-lisp/source/rss/rss.asd is in cl-rss 0.1.1-6.
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 | ;;;; -*- Mode: LISP; Syntax: ANSI-Common-Lisp; Base: 10 -*-
;;;; *************************************************************************
;;;; FILE IDENTIFICATION
;;;;
;;;; Name: rss.asd
;;;; Purpose: ASDF definition file for Rss
;;;; Programmer: Kevin M. Rosenberg
;;;; Date Started: Aug 2003
;;;;
;;;; $Id: rss.asd 7061 2003-09-07 06:34:45Z kevin $
;;;; *************************************************************************
(defpackage #:rss-system (:use #:asdf #:cl))
(in-package #:rss-system)
#+allegro (require 'aserve)
(defsystem rss
:name "rss"
:author "Kevin Rosenberg based on work by Craig Brozensky"
:maintainer "Kevin M. Rosenberg <kmr@debian.org>"
:licence "BSD"
:description "Remote Site Summary"
:properties ((#:author-email . "kevin@rosenberg.net")
((#:albert #:output-dir) . "albert-docs/")
((#:albert #:formats) . ("docbook"))
((#:albert #:docbook #:template) . "book")
((#:albert #:docbook #:bgcolor) . "white")
((#:albert #:docbook #:textcolor) . "black"))
:serial t
:depends-on (kmrcl xmls #-allegro aserve)
:components
((:file "package")
(:file "main")
))
(defmethod perform ((o test-op) (c (eql (find-system 'rss))))
(operate 'load-op 'rss-tests)
(operate 'test-op 'rss-tests :force t))
(defsystem rss-tests
:depends-on (rss ptester)
:components ((:file "tests")))
(defmethod perform ((o test-op) (c (eql (find-system 'rss-tests))))
(operate 'load-op 'rss-tests)
(or (funcall (intern (symbol-name '#:do-tests)
(find-package '#:rss-tests)))
(error "test-op failed")))
|