X-Git-Url: http://git.kpe.io/?a=blobdiff_plain;f=clsql.asd;h=15a3249ada4fe72f19837478c6a1a6ab186fa957;hb=43ec897ec7d84892fa59cc9b7858ce23d64a8a1a;hp=74dab7be1ad16242e50a9a33c551f9f24b5f12dd;hpb=94a7bd5cfc5413a85312a6363664ae262241c309;p=clsql.git diff --git a/clsql.asd b/clsql.asd index 74dab7b..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.10 2002/09/20 01:40:54 kevin Exp $ +;;;; $Id$ ;;;; ;;;; 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) +#+(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 @@ -42,6 +42,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))