X-Git-Url: http://git.kpe.io/?p=clsql.git;a=blobdiff_plain;f=clsql.asd;h=c880e68fb98f0cc881a2ead0c969ac3544c8d951;hp=3d29edca90114eba89dc12540f5315e115d0928d;hb=c4ffac239e4910bff542dadf3212ad95803af64e;hpb=1776004eedb08c52fe909be73a9d34900808e172 diff --git a/clsql.asd b/clsql.asd index 3d29edc..c880e68 100644 --- a/clsql.asd +++ b/clsql.asd @@ -2,49 +2,51 @@ ;;;; ************************************************************************* ;;;; FILE IDENTIFICATION ;;;; -;;;; Name: clsql.system -;;;; Purpose: Defsystem-3/4 for CLSQL -;;;; Programmer: Kevin M. Rosenberg -;;;; Date Started: Feb 2002 +;;;; Name: clsql.asd +;;;; Purpose: System definition for CLSQL-CLASSIC +;;;; Authors: Marcus Pearce and Kevin M. Rosenberg +;;;; Created: March 2004 ;;;; -;;;; $Id: clsql.asd,v 1.1 2002/08/18 02:57:50 kevin Exp $ -;;;; -;;;; 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. ;;;; ************************************************************************* -(declaim (optimize (debug 3) (speed 3) (safety 1) (compilation-speed 0))) -(in-package :make) - -;; For use with non-Debian installations -(let ((helper-pathname (make-pathname :name "set-cl-library" :type "cl" - :defaults *load-truename*))) - (when (probe-file helper-pathname) - (load helper-pathname))) - -(in-package :asdf) - -;;; System definitions - -(unless (find-class 'clsql-cl-source-file) - (defclass clsql-cl-source-file (cl-source-file) ()) - (defmethod source-file-type ((c clsql-cl-source-file) (s module)) - "cl")) - -(defsystem clsql - :default-component-class clsql-cl-source-file - :pathname "cl-library:clsql;" - :perform (load-op :after (op clsql) - (pushnew :clsql cl:*features*)) - :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) - ) +(asdf:defsystem #:clsql + :name "CLSQL" + :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)))))) +