X-Git-Url: http://git.kpe.io/?a=blobdiff_plain;f=clsql.asd;h=15a3249ada4fe72f19837478c6a1a6ab186fa957;hb=4661cdbb26de93d072226ab6cd9325c1ca7bb75e;hp=f4a609d36fee469bd94c61991d18a9b7e5f85041;hpb=7d50938ba2db52a713498e49aa1679deae6f0b6b;p=clsql.git diff --git a/clsql.asd b/clsql.asd index f4a609d..15a3249 100644 --- a/clsql.asd +++ b/clsql.asd @@ -2,12 +2,12 @@ ;;;; ************************************************************************* ;;;; FILE IDENTIFICATION ;;;; -;;;; Name: clsql.system -;;;; Purpose: Defsystem-3/4 for CLSQL +;;;; Name: clsql.asd +;;;; Purpose: System definition for CLSQL ;;;; Programmer: Kevin M. Rosenberg ;;;; Date Started: Feb 2002 ;;;; -;;;; $Id: clsql.asd,v 1.13 2002/09/30 10:19:23 kevin Exp $ +;;;; $Id$ ;;;; ;;;; This file, part of CLSQL, is Copyright (c) 2002 by Kevin M. Rosenberg ;;;; @@ -16,20 +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) -#+(or allegro lispworks cmu openmcl mcl) -(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 @@ -43,8 +42,7 @@ :depends-on (:clsql-base) ) -#+(or allegro lispworks cmu openmcl mcl) -(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))