r4897: *** empty log message ***
authorKevin M. Rosenberg <kevin@rosenberg.net>
Sun, 11 May 2003 18:46:39 +0000 (18:46 +0000)
committerKevin M. Rosenberg <kevin@rosenberg.net>
Sun, 11 May 2003 18:46:39 +0000 (18:46 +0000)
debian/compat [new file with mode: 0644]
debian/rt.asd [deleted file]
debian/rules
rt.asd [new file with mode: 0644]

diff --git a/debian/compat b/debian/compat
new file mode 100644 (file)
index 0000000..b8626c4
--- /dev/null
@@ -0,0 +1 @@
+4
diff --git a/debian/rt.asd b/debian/rt.asd
deleted file mode 100644 (file)
index b6c3e32..0000000
+++ /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 <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")))
-
-
index 72dd5b3e933233a857f3e90a3ce2b276db5e18fc..ea99d99b53bcf51bab7e56edbe33f9af89d15ab2 100755 (executable)
@@ -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 (file)
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 <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")))
+
+