X-Git-Url: http://git.kpe.io/?p=clsql.git;a=blobdiff_plain;f=clsql.asd;h=03faf1a084564e889ac56ef1e684ed91b898e2ea;hp=06607abda4e2a6112bba8cb3bf40bcdd1e1689b2;hb=736227185dd5fcda15796ef2a0da1bebb82ee9e5;hpb=d9b90caa2f0450deffff461b70294bc741faae7f diff --git a/clsql.asd b/clsql.asd index 06607ab..03faf1a 100644 --- a/clsql.asd +++ b/clsql.asd @@ -7,7 +7,7 @@ ;;;; Programmer: Kevin M. Rosenberg ;;;; Date Started: Feb 2002 ;;;; -;;;; $Id: clsql.asd,v 1.11 2002/09/20 06:37:39 kevin Exp $ +;;;; $Id: clsql.asd,v 1.18 2003/05/07 02:45:08 kevin Exp $ ;;;; ;;;; This file, part of CLSQL, is Copyright (c) 2002 by Kevin M. Rosenberg ;;;; @@ -16,19 +16,19 @@ ;;;; (http://opensource.franz.com/preamble.html), also known as the LLGPL. ;;;; ************************************************************************* -(in-package :asdf) +(defpackage #:clsql-system (:use #:asdf #:cl)) +(in-package #:clsql-system) -(defsystem :clsql - :name "cl-sql" - :author "Kevin M. Rosenberg " - :version "0.9.2" +#+(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." - :perform (load-op :after (op clsql) - (pushnew :clsql cl:*features*)) :components ((:module :sql :components @@ -42,12 +42,7 @@ :depends-on (:clsql-base) ) -(defmethod source-file-type ((c cl-source-file) - (s (eql (find-system :clsql)))) - "cl") - - -(when (ignore-errors (find-class 'load-compiled-op)) - (defmethod perform :after ((op load-compiled-op) (c (eql (find-system :clsql)))) - (pushnew :clsql cl:*features*))) - +#+(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))