r3737: *** empty log message ***
authorKevin M. Rosenberg <kevin@rosenberg.net>
Fri, 10 Jan 2003 05:17:27 +0000 (05:17 +0000)
committerKevin M. Rosenberg <kevin@rosenberg.net>
Fri, 10 Jan 2003 05:17:27 +0000 (05:17 +0000)
debian/changelog
debian/rules
debian/tester.asd [deleted file]
tester.asd [new file with mode: 0644]

index 0ef943aef977496d7b7c862c912c5c8bac56fb16..b76c4b4b4f294180308acf30bbf83ca0b51bb15e 100644 (file)
@@ -1,3 +1,9 @@
+cl-tester (1.1.1.1-1) unstable; urgency=low
+
+       * Move .asd into upstream
+       
+ -- Kevin M. Rosenberg <kmr@debian.org>  Fri,  8 Nov 2002 09:44:56 -0700
+
 cl-tester (1.1.1-4) unstable; urgency=low
 
   * Remove 'load-compiled-op from .asd file
index 15e528a889d6b21b5b1fb5cdcaa0b6dd5a236417..0c6c6c41f48fc63abd0da2d1448199e2dcc70011 100755 (executable)
@@ -42,7 +42,7 @@ install: build
        dh_clean -k
        # Add here commands to install the package into debian/tester.
        dh_installdirs $(clc-systems) $(clc-tester) $(doc-dir)
-       dh_install debian/tester.asd $(shell echo *.lisp) $(clc-tester)
+       dh_install tester.asd $(shell echo *.lisp) $(clc-tester)
        dh_install $(shell echo *.html) $(doc-dir)
        dh_link $(clc-tester)/tester.asd $(clc-systems)/tester.asd
 
diff --git a/debian/tester.asd b/debian/tester.asd
deleted file mode 100644 (file)
index ab01cd2..0000000
+++ /dev/null
@@ -1,37 +0,0 @@
-;;;; -*- Mode: LISP; Syntax: ANSI-Common-Lisp; Base: 10 -*-
-;;;; *************************************************************************
-;;;; FILE IDENTIFICATION
-;;;;
-;;;; Name:          tester.asd
-;;;; Purpose:       ASDF definition file for Tester
-;;;; Programmer:    Kevin M. Rosenberg
-;;;; Date Started:  Sep 2002
-;;;;
-;;;; $Id: tester.asd,v 1.4 2002/11/08 16:51:40 kevin Exp $
-;;;;
-;;;; This file, part of cl-tester, is Copyright (c) 2002 by Kevin M. Rosenberg
-;;;;
-;;;; cl-tester 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)
-
-#-allegro
-(defsystem :tester
-  :name "cl-tester"
-  :author "Kevin Layer, Franz, Inc"
-  :version "2.2.12.2.6.1"
-  :maintainer "Kevin M. Rosenberg <kmr@debian.org>"
-  :licence "GNU Lesser General Public License"
-  :description "Franz's Test Harness Package"
-  :long-description "Tester provides an framework for creating automated testing progams."
-  
-  :perform (load-op :after (op tester)
-           (pushnew :tester cl:*features*))
-  
-  :components
-  ((:file "tester")))
-
-
diff --git a/tester.asd b/tester.asd
new file mode 100644 (file)
index 0000000..6bf07e9
--- /dev/null
@@ -0,0 +1,40 @@
+;;;; -*- Mode: LISP; Syntax: ANSI-Common-Lisp; Base: 10 -*-
+;;;; *************************************************************************
+;;;; FILE IDENTIFICATION
+;;;;
+;;;; Name:          tester.asd
+;;;; Purpose:       ASDF definition file for Tester
+;;;; Programmer:    Kevin M. Rosenberg
+;;;; Date Started:  Sep 2002
+;;;;
+;;;; $Id: tester.asd,v 1.1 2003/01/10 05:17:27 kevin Exp $
+;;;;
+;;;; This file, part of cl-tester, is Copyright (c) 2002 by Kevin M. Rosenberg
+;;;;
+;;;; cl-tester 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)
+
+#+allegro (require 'tester)
+
+(defsystem :tester
+  :name "cl-tester"
+  :author "Kevin Layer, Franz, Inc"
+  :version "2.2.12.2.6.1"
+  :maintainer "Kevin M. Rosenberg <kmr@debian.org>"
+  :licence "GNU Lesser General Public License"
+  :description "Franz's Test Harness Package"
+  :long-description "Tester provides an framework for creating automated testing progams."
+  
+  :perform (load-op :after (op tester)
+           (pushnew :tester cl:*features*))
+  
+  :components
+  (
+   #-allegro (:file "tester")
+            ))
+
+