diff options
author | 2003-06-10 04:53:04 +0000 | |
---|---|---|
committer | 2003-06-10 04:53:04 +0000 | |
commit | 617b5ce9977eeb5a7a7977ef4c6974bf0aecf19f (patch) | |
tree | bcfe11291f5c920da39dfc65ba00f51356086a04 /dev-lisp/cl-rt | |
parent | DEPEND on sed >= 4 (diff) | |
download | historical-617b5ce9977eeb5a7a7977ef4c6974bf0aecf19f.tar.gz historical-617b5ce9977eeb5a7a7977ef4c6974bf0aecf19f.tar.bz2 historical-617b5ce9977eeb5a7a7977ef4c6974bf0aecf19f.zip |
initial common lisp import
Diffstat (limited to 'dev-lisp/cl-rt')
-rw-r--r-- | dev-lisp/cl-rt/ChangeLog | 8 | ||||
-rw-r--r-- | dev-lisp/cl-rt/Manifest | 4 | ||||
-rw-r--r-- | dev-lisp/cl-rt/cl-rt-20030428a.ebuild | 28 | ||||
-rw-r--r-- | dev-lisp/cl-rt/files/digest-cl-rt-20030428a | 1 | ||||
-rw-r--r-- | dev-lisp/cl-rt/files/rt.asd | 33 |
5 files changed, 74 insertions, 0 deletions
diff --git a/dev-lisp/cl-rt/ChangeLog b/dev-lisp/cl-rt/ChangeLog new file mode 100644 index 000000000000..71227d9ba799 --- /dev/null +++ b/dev-lisp/cl-rt/ChangeLog @@ -0,0 +1,8 @@ +# ChangeLog for dev-lisp/cl-rt +# Copyright 2000-2003 Gentoo Technologies, Inc.; Distributed under the GPL v2 +# $Header: /var/cvsroot/gentoo-x86/dev-lisp/cl-rt/ChangeLog,v 1.1 2003/06/10 04:53:04 mkennedy Exp $ + +*cl-rt-20030428 (07 Jul 2003) + + 07 Jul 2003; Matthew Kennedy <mkennedy@gentoo.org> : + initial import diff --git a/dev-lisp/cl-rt/Manifest b/dev-lisp/cl-rt/Manifest new file mode 100644 index 000000000000..a1dadd912c7c --- /dev/null +++ b/dev-lisp/cl-rt/Manifest @@ -0,0 +1,4 @@ +MD5 31ae8e06325055aff076689f49ef9362 cl-rt-20030428a.ebuild 726 +MD5 3d7216856dbeb9720c3600f4d385f369 cl-rt-20030428a.ebuild~ 747 +MD5 dabe9c1f1b838b61486b278782b02463 files/rt.asd 1097 +MD5 b11fa2ad08c93fcf48f585ceed4e8885 files/digest-cl-rt-20030428a 70 diff --git a/dev-lisp/cl-rt/cl-rt-20030428a.ebuild b/dev-lisp/cl-rt/cl-rt-20030428a.ebuild new file mode 100644 index 000000000000..ec44f527f59b --- /dev/null +++ b/dev-lisp/cl-rt/cl-rt-20030428a.ebuild @@ -0,0 +1,28 @@ +# Copyright 1999-2003 Gentoo Technologies, Inc. +# Distributed under the terms of the GNU General Public License v2 +# $Header: /var/cvsroot/gentoo-x86/dev-lisp/cl-rt/cl-rt-20030428a.ebuild,v 1.1 2003/06/10 04:53:04 mkennedy Exp $ + +inherit common-lisp + +DESCRIPTION="Common Lisp regression tester from MIT" +HOMEPAGE="http://www-2.cs.cmu.edu/afs/cs/project/ai-repository/ai/lang/lisp/code/testing/rt/ + http://packages.debian.org/unstable/devel/cl-rt.html + http://www.cliki.net/rt" +SRC_URI="http://ftp.debian.org/debian/pool/main/c/cl-rt/${PN}_${PV}.orig.tar.gz" +LICENSE="MIT" +SLOT="0" +KEYWORDS="~x86" +IUSE="" +DEPEND="dev-lisp/common-lisp-controller + virtual/commonlisp" + +CLPACKAGE=rt + +S=${WORKDIR}/${P} + +src_install() { + common-lisp-install rt.lisp ${FILESDIR}/rt.asd + common-lisp-system-symlink + + dodoc rt-doc.txt rt-test.lisp +} 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 <kmr@debian.org>" + :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"))) + + |