From: Kevin M. Rosenberg Date: Sat, 19 Apr 2003 16:23:56 +0000 (+0000) Subject: r4544: Auto commit for Debian build X-Git-Tag: debian-1.2.3-2~7 X-Git-Url: http://git.kpe.io/?p=xptest.git;a=commitdiff_plain;h=f5bd853cb9bab049c66ce93cc7fb4a3dcacac185 r4544: Auto commit for Debian build --- diff --git a/debian/xptest.asd b/debian/xptest.asd deleted file mode 100644 index 7539937..0000000 --- a/debian/xptest.asd +++ /dev/null @@ -1,29 +0,0 @@ -;;;; -*- Mode: LISP; Syntax: ANSI-Common-Lisp; Base: 10 -*- -;;;; ************************************************************************* -;;;; FILE IDENTIFICATION -;;;; -;;;; Name: xptest.asd -;;;; Purpose: ASDF definition file for Xptest -;;;; Programmer: Kevin M. Rosenberg -;;;; Date Started: Sep 2002 -;;;; -;;;; $Id: xptest.asd,v 1.2 2002/11/08 16:51:40 kevin Exp $ -;;;; ************************************************************************* - -(in-package :asdf) - -(defsystem :xptest - :name "cl-xptest" - :author "Craig Brozensky" - :version "2002.10.21" - :maintainer "Kevin M. Rosenberg " - :licence "Public domain" - :description "Extreme Programming Testing Suite" - :long-description "The XPTEST package is toolkit for building test suites, very much inspired by the test frameworks that the Extreme Programming crew made available for Smalltalk an other languages." - - :perform (load-op :after (op xptest) - (pushnew :xptest cl:*features*)) - - :components - ((:file "package") - (:file "xptestsuite" :depends-on ("package")))) diff --git a/xptest.asd b/xptest.asd index d4b0699..147af2f 100644 --- a/xptest.asd +++ b/xptest.asd @@ -1,7 +1,29 @@ -;;; -*- Mode: Lisp -*- +;;;; -*- Mode: LISP; Syntax: ANSI-Common-Lisp; Base: 10 -*- +;;;; ************************************************************************* +;;;; FILE IDENTIFICATION +;;;; +;;;; Name: xptest.asd +;;;; Purpose: ASDF definition file for Xptest +;;;; Programmer: Kevin M. Rosenberg +;;;; Date Started: Sep 2002 +;;;; +;;;; $Id: xptest.asd,v 1.7 2003/04/19 16:23:56 kevin Exp $ +;;;; ************************************************************************* (defpackage #:xptest-system (:use #:asdf #:cl)) (in-package #:xptest-system) (defsystem :xptest - :components ((:file "xptestsuite"))) + :name "cl-xptest" + :author "Craig Brozensky" + :version "2003.04.21" + :maintainer "Kevin M. Rosenberg " + :licence "Public domain" + :description "Extreme Programming Testing Suite" + :long-description "The XPTEST package is toolkit for building test suites, very much inspired by the test frameworks that the Extreme Programming crew made available for Smalltalk an other languages." + + :perform (load-op :after (op xptest) + (pushnew :xptest cl:*features*)) + + :components + ((:file "xptestsuite")))