/usr/share/common-lisp/source/xptest/xptest.asd is in cl-xptest 1.2.4-3.
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 | ;;;; -*- Mode: LISP; Syntax: ANSI-Common-Lisp; Base: 10 -*-
;;;; *************************************************************************
;;;; FILE IDENTIFICATION
;;;;
;;;; Name: xptest.asd
;;;; Purpose: ASDF definition file for Xptest
;;;; Programmer: Kevin M. Rosenberg
;;;; Date Started: Sep 2002
;;;;
;;;; $Id$
;;;; *************************************************************************
(defpackage #:xptest-system (:use #:asdf #:cl))
(in-package #:xptest-system)
(defsystem :xptest
:name "cl-xptest"
:author "Craig Brozensky"
:version "2003.04.21"
:maintainer "Kevin M. Rosenberg <kmr@debian.org>"
:licence "Public domain"
:description "Extreme Programming Testing Suite"
:long-description "The XPTEST package is toolkit for building test suites, very much inspired by the test frameworks that the Extreme Programming crew made available for Smalltalk an other languages."
:components
((:file "xptestsuite")))
|