X-Git-Url: http://git.kpe.io/?a=blobdiff_plain;ds=sidebyside;f=clsql-classic.asd;fp=clsql-classic.asd;h=75cffe219efb5deedba9a2c6fc25350be84b71a1;hb=39d3fefaebf35a19a211d1ab6552d7ff54faccd2;hp=0000000000000000000000000000000000000000;hpb=0196e0db0edccccab4cd8a0d6309e768a98667fd;p=clsql.git diff --git a/clsql-classic.asd b/clsql-classic.asd new file mode 100644 index 0000000..75cffe2 --- /dev/null +++ b/clsql-classic.asd @@ -0,0 +1,46 @@ +;;;; -*- Mode: LISP; Syntax: ANSI-Common-Lisp; Base: 10 -*- +;;;; ************************************************************************* +;;;; FILE IDENTIFICATION +;;;; +;;;; Name: clsql-classic.asd +;;;; Purpose: System definition for CLSQL-CLASSIC +;;;; Programmer: Kevin M. Rosenberg +;;;; Date Started: Feb 2002 +;;;; +;;;; $Id$ +;;;; +;;;; This file, part of CLSQL, is Copyright (c) 2002 by Kevin M. Rosenberg +;;;; +;;;; 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-classic-system (:use #:asdf #:cl)) +(in-package #:clsql-classic-system) + +#+(or allegro lispworks cmu sbcl openmcl mcl scl) +(defsystem clsql-classic + :name "clsql-classic" + :author "Kevin Rosenberg " + :maintainer "Kevin M. Rosenberg " + :version "2.1.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 :classic + :components + ((:file "package") + (:file "sql" :depends-on ("package")) + (: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-classic)))) + (oos 'load-op 'clsql-classic-tests) + (oos 'test-op 'clsql-classic-tests))