X-Git-Url: http://git.kpe.io/?a=blobdiff_plain;f=clsql.asd;h=cebcee1a1177e220870768d8372ad0433d13d752;hb=7f0e4a65d1b425f2fa58fc7cce8296c1a6c52c2f;hp=7ad36fa1f664be515973cb1314ea44bd6bd95732;hpb=bada52b7a8fd2cc484dee33cccd64ca09a52ec3d;p=clsql.git diff --git a/clsql.asd b/clsql.asd index 7ad36fa..cebcee1 100644 --- a/clsql.asd +++ b/clsql.asd @@ -2,47 +2,51 @@ ;;;; ************************************************************************* ;;;; FILE IDENTIFICATION ;;;; -;;;; Name: clsql.system -;;;; Purpose: Defsystem-3/4 for CLSQL -;;;; Programmer: Kevin M. Rosenberg -;;;; Date Started: Feb 2002 +;;;; Name: clsql-classic.asd +;;;; Purpose: System definition for CLSQL-CLASSIC +;;;; Authors: Marcus Pearce and Kevin M. Rosenberg +;;;; Created: March 2004 ;;;; -;;;; $Id$ -;;;; -;;;; This file, part of CLSQL, is Copyright (c) 2002 by Kevin M. Rosenberg +;;;; $Id: clsql-classic.asd 8847 2004-04-07 14:38:14Z kevin $ ;;;; ;;;; CLSQL users are granted the rights to distribute and use this software ;;;; as governed by the terms of the Lisp Lesser GNU Public License ;;;; (http://opensource.franz.com/preamble.html), also known as the LLGPL. ;;;; ************************************************************************* -(defpackage #:clsql-system (:use #:asdf #:cl)) -(in-package #:clsql-system) - -#+(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 - ((:file "package") - (:file "pool" :depends-on ("package")) - (:file "loop-extension") - (:file "sql" :depends-on ("pool")) - (:file "transactions" :depends-on ("sql")) - (:file "functional" :depends-on ("sql")) - (:file "usql" :depends-on ("sql"))))) - :depends-on (:clsql-base) - ) - -#+(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)) +(asdf:defsystem #:clsql-usql + :name "CLSQL-USQL" + :author "" + :maintainer "" + :version "" + :licence "" + :description "A high level Common Lisp interface to SQL RDBMS." + :long-description "A high level Common Lisp interface to SQL RDBMS +based on the Xanalys CommonSQL interface for Lispworks. It depends on +the low-level database interfaces provided by CLSQL and includes both +a functional and an object oriented interface." + :depends-on (clsql-base) + :components + ((:module sql + :components + ((:module :package + :pathname "" + :components ((:file "package") + (:file "kmr-mop" :depends-on ("package")))) + (:module :core + :pathname "" + :components ((:file "classes") + (:file "operations" :depends-on ("classes")) + (:file "syntax")) + :depends-on (:package)) + (:module :functional + :pathname "" + :components ((:file "sql") + (:file "table")) + :depends-on (:core)) + (:module :object + :pathname "" + :components ((:file "metaclasses") + (:file "objects" :depends-on ("metaclasses"))) + :depends-on (:functional)))))) +