X-Git-Url: http://git.kpe.io/?a=blobdiff_plain;f=clsql.asd;h=55562fd4da5666e47d5c136d6d2a29effeb12174;hb=8d558ce162d1360f92e4d65d054e2f61c786319e;hp=162520037dcc8fa2dff25e74a842302304dc96eb;hpb=31d1a78ee915ae4db7c042b7e5cb1ab7b5a73448;p=clsql.git diff --git a/clsql.asd b/clsql.asd index 1625200..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.7 2002/09/17 17:16:43 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 ;;;; @@ -18,9 +18,16 @@ (in-package :asdf) -(defsystem clsql - :perform (load-op :after (op clsql) - (pushnew :clsql cl:*features*)) +#+(or allegro lispworks cmu sbcl openmcl mcl scl) +(defsystem :clsql + :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." + :components ((:module :sql :components @@ -34,6 +41,7 @@ :depends-on (:clsql-base) ) -(defmethod source-file-type ((c cl-source-file) - (s (eql (find-system 'clsql)))) - "cl") +#+(or allegro lispworks cmu sbcl openmcl mcl scl) +(defmethod perform ((o test-op) (c (eql (find-system :clsql)))) + (oos 'load-op 'clsql-tests) + (oos 'test-op 'clsql-tests))