/usr/share/common-lisp/source/ptester/ptester.asd is in cl-ptester 2.1.2-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 | ;;;; -*- Mode: LISP; Syntax: ANSI-Common-Lisp; Base: 10 -*-
;;;; *************************************************************************
;;;; FILE IDENTIFICATION
;;;;
;;;; Name: ptester.asd
;;;; Purpose: ASDF definition file for ptester
;;;; Programmer: Kevin M. Rosenberg
;;;; Date Started: Sep 2002
;;;;
;;;; $Id: ptester.asd 7061 2003-09-07 06:34:45Z kevin $
;;;;
;;;; *************************************************************************
(defpackage #:ptester-system (:use #:asdf #:cl))
(in-package #:ptester-system)
(defsystem ptester
:name "ptester"
:author "Kevin Layer, Franz, Inc / Kevin Rosenberg"
:maintainer "Kevin M. Rosenberg <kmr@debian.org>"
:licence "LLGPL"
:description "Portable test harness package"
:long-description "ptester is a portable testing framework based on Franz's tester module"
:components
((:file "src")))
|