X-Git-Url: http://git.kpe.io/?a=blobdiff_plain;f=clsql.asd;h=55562fd4da5666e47d5c136d6d2a29effeb12174;hb=e8ba5d74df41712b33209e0b40ecbcc77892996e;hp=36c688cab3f037b22adfbffac8448760fe799d94;hpb=33dcd7b49025344bd4c9827d1cd2b6e6857a0c03;p=clsql.git diff --git a/clsql.asd b/clsql.asd index 36c688c..55562fd 100644 --- a/clsql.asd +++ b/clsql.asd @@ -7,7 +7,7 @@ ;;;; Programmer: Kevin M. Rosenberg ;;;; Date Started: Feb 2002 ;;;; -;;;; $Id: clsql.asd,v 1.15 2002/10/16 11:51:04 kevin Exp $ +;;;; $Id: clsql.asd,v 1.17 2003/05/02 03:05:54 kevin Exp $ ;;;; ;;;; This file, part of CLSQL, is Copyright (c) 2002 by Kevin M. Rosenberg ;;;; @@ -20,16 +20,14 @@ #+(or allegro lispworks cmu sbcl openmcl mcl scl) (defsystem :clsql - :name "cl-sql" - :author "Kevin M. Rosenberg " - :version "0.9.2" + :name "clsql" + :author "Kevin Rosenberg " :maintainer "Kevin M. Rosenberg " + :version "1.5.x" :licence "Lessor Lisp General Public License" :description "Common Lisp SQL Interface Library" :long-description "cl-sql package provides the high-level interface for the CLSQL system." - :perform (load-op :after (op clsql) - (pushnew :clsql cl:*features*)) :components ((:module :sql :components @@ -44,7 +42,6 @@ ) #+(or allegro lispworks cmu sbcl openmcl mcl scl) -(when (ignore-errors (find-class 'load-compiled-op)) - (defmethod perform :after ((op load-compiled-op) (c (eql (find-system :clsql)))) - (pushnew :clsql cl:*features*))) - +(defmethod perform ((o test-op) (c (eql (find-system :clsql)))) + (oos 'load-op 'clsql-tests) + (oos 'test-op 'clsql-tests))