From: Kevin M. Rosenberg Date: Fri, 10 Jan 2003 05:17:27 +0000 (+0000) Subject: r3737: *** empty log message *** X-Git-Url: http://git.kpe.io/?p=ptester.git;a=commitdiff_plain;h=cfec80591f62db0b3996b83cfb2cfbd3b3cc4326 r3737: *** empty log message *** --- diff --git a/debian/changelog b/debian/changelog index 0ef943a..b76c4b4 100644 --- a/debian/changelog +++ b/debian/changelog @@ -1,3 +1,9 @@ +cl-tester (1.1.1.1-1) unstable; urgency=low + + * Move .asd into upstream + + -- Kevin M. Rosenberg Fri, 8 Nov 2002 09:44:56 -0700 + cl-tester (1.1.1-4) unstable; urgency=low * Remove 'load-compiled-op from .asd file diff --git a/debian/rules b/debian/rules index 15e528a..0c6c6c4 100755 --- a/debian/rules +++ b/debian/rules @@ -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 index ab01cd2..0000000 --- a/debian/tester.asd +++ /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 " - :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 index 0000000..6bf07e9 --- /dev/null +++ b/tester.asd @@ -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 " + :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") + )) + +