From: Kevin M. Rosenberg Date: Sun, 11 May 2003 18:46:39 +0000 (+0000) Subject: r4897: *** empty log message *** X-Git-Url: http://git.kpe.io/?p=rt.git;a=commitdiff_plain;h=68d7b0f5fd413d825e78eba8536f42c733111dbe r4897: *** empty log message *** --- diff --git a/debian/compat b/debian/compat new file mode 100644 index 0000000..b8626c4 --- /dev/null +++ b/debian/compat @@ -0,0 +1 @@ +4 diff --git a/debian/rt.asd b/debian/rt.asd deleted file mode 100644 index b6c3e32..0000000 --- a/debian/rt.asd +++ /dev/null @@ -1,33 +0,0 @@ -;;;; -*- 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.2 2002/11/08 16:51:40 kevin 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"))) - - diff --git a/debian/rules b/debian/rules index 72dd5b3..ea99d99 100755 --- a/debian/rules +++ b/debian/rules @@ -1,7 +1,5 @@ #!/usr/bin/make -f -export DH_COMPAT=4 - pkg := rt debpkg := cl-rt @@ -42,7 +40,7 @@ install: build dh_clean -k # Add here commands to install the package into debian/rt. dh_installdirs $(clc-systems) $(clc-rt) - dh_install debian/rt.asd rt.lisp $(clc-rt) + dh_install rt.asd rt.lisp $(clc-rt) dh_link $(clc-rt)/rt.asd $(clc-systems)/rt.asd # Build architecture-independent files here. diff --git a/rt.asd b/rt.asd new file mode 100644 index 0000000..95daa88 --- /dev/null +++ b/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/05/11 18:43:22 kevin 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"))) + +