From 617b5ce9977eeb5a7a7977ef4c6974bf0aecf19f Mon Sep 17 00:00:00 2001 From: Matthew Kennedy Date: Tue, 10 Jun 2003 04:53:04 +0000 Subject: initial common lisp import --- dev-lisp/cl-rt/files/digest-cl-rt-20030428a | 1 + dev-lisp/cl-rt/files/rt.asd | 33 +++++++++++++++++++++++++++++ 2 files changed, 34 insertions(+) create mode 100644 dev-lisp/cl-rt/files/digest-cl-rt-20030428a create mode 100644 dev-lisp/cl-rt/files/rt.asd (limited to 'dev-lisp/cl-rt/files') diff --git a/dev-lisp/cl-rt/files/digest-cl-rt-20030428a b/dev-lisp/cl-rt/files/digest-cl-rt-20030428a new file mode 100644 index 000000000000..c2a474d167e7 --- /dev/null +++ b/dev-lisp/cl-rt/files/digest-cl-rt-20030428a @@ -0,0 +1 @@ +MD5 b40231afbe5d44d1337d34317d280327 cl-rt_20030428a.orig.tar.gz 7232 diff --git a/dev-lisp/cl-rt/files/rt.asd b/dev-lisp/cl-rt/files/rt.asd new file mode 100644 index 000000000000..cfcf13a9feda --- /dev/null +++ b/dev-lisp/cl-rt/files/rt.asd @@ -0,0 +1,33 @@ +;;;; -*- Mode: LISP; Syntax: ANSI-Common-Lisp; Base: 10 -*- +;;;; ************************************************************************* +;;;; FILE IDENTIFICATION +;;;; +;;;; Name: rt.asd +;;;; Purpose: ASDF definition file for Rt +;;;; Programmer: Kevin M. Rosenberg +;;;; Date Started: Sep 2002 +;;;; +;;;; $Id: rt.asd,v 1.1 2003/06/10 04:53:04 mkennedy Exp $ +;;;; +;;;; This file, part of cl-rt, is Copyright (c) 2002 by Kevin M. Rosenberg +;;;; +;;;; cl-rt users are granted the rights to distribute and use this software +;;;; as governed by the terms of the GNU Lesser General Public License +;;;; (http://www.gnu.org/licenses/lgpl.html) +;;;; ************************************************************************* + +(in-package :asdf) + +(defsystem :rt + :name "cl-rt" + :version "1990.12.19" + :maintainer "Kevin M. Rosenberg " + :licence "MIT" + :description "MIT Regression Tester" + :long-description "RT provides a framework for writing regression test suites" + :perform (load-op :after (op rt) + (pushnew :rt cl:*features*)) + :components + ((:file "rt"))) + + -- cgit v1.2.3-65-gdbad