From: Kevin M. Rosenberg Date: Fri, 20 Sep 2002 06:40:56 +0000 (+0000) Subject: r2787: *** empty log message *** X-Git-Tag: v3.8.6~936 X-Git-Url: http://git.kpe.io/?p=clsql.git;a=commitdiff_plain;h=d9b90caa2f0450deffff461b70294bc741faae7f r2787: *** empty log message *** --- diff --git a/clsql-base.asd b/clsql-base.asd index b33abed..bf75d30 100644 --- a/clsql-base.asd +++ b/clsql-base.asd @@ -7,7 +7,7 @@ ;;;; Programmer: Kevin M. Rosenberg ;;;; Date Started: Feb 2002 ;;;; -;;;; $Id: clsql-base.asd,v 1.12 2002/09/20 01:40:54 kevin Exp $ +;;;; $Id: clsql-base.asd,v 1.13 2002/09/20 06:37:39 kevin Exp $ ;;;; ;;;; This file, part of CLSQL, is Copyright (c) 2002 by Kevin M. Rosenberg ;;;; @@ -18,7 +18,7 @@ (in-package :asdf) -(defsystem clsql-base +(defsystem :clsql-base :name "cl-sql-base" :author "Kevin M. Rosenberg " :version "0.9.2" @@ -27,21 +27,23 @@ :description "Common Lisp SQL Base Package" :long-description "cl-sql-base package provides the low-level interface for the database drivers." - :perform (load-op :after (op clsql-base) - (pushnew :clsql-base cl:*features*)) - :components - ((:module :base - :components - ((:file "cmucl-compat") - (:file "package") - (:file "utils" :depends-on ("package")) - (:file "classes" :depends-on ("package")) - (:file "conditions" :depends-on ("classes")) - (:file "db-interface" :depends-on ("conditions")) - (:file "initialize" :depends-on ("db-interface")))))) + (pushnew :clsql-base cl:*features*)) + :components + ((:module :base + :components + ((:file "cmucl-compat") + (:file "package") + (:file "utils" :depends-on ("package")) + (:file "classes" :depends-on ("package")) + (:file "conditions" :depends-on ("classes")) + (:file "db-interface" :depends-on ("conditions")) + (:file "initialize" :depends-on ("db-interface")))))) (defmethod source-file-type ((c cl-source-file) (s (eql (find-system :clsql-base)))) "cl") +(when (ignore-errors (find-class 'load-compiled-op)) + (defmethod perform :after ((op load-compiled-op) (c (eql (find-system :clsql-base)))) + (pushnew :clsql-base cl:*features*))) diff --git a/clsql-mysql.asd b/clsql-mysql.asd index a29ac1c..aaae2af 100644 --- a/clsql-mysql.asd +++ b/clsql-mysql.asd @@ -7,7 +7,7 @@ ;;;; Programmer: Kevin M. Rosenberg ;;;; Date Started: Aug 2002 ;;;; -;;;; $Id: clsql-mysql.asd,v 1.8 2002/09/20 01:40:54 kevin Exp $ +;;;; $Id: clsql-mysql.asd,v 1.9 2002/09/20 06:37:39 kevin Exp $ ;;;; ;;;; This file, part of CLSQL, is Copyright (c) 2002 by Kevin M. Rosenberg ;;;; @@ -16,8 +16,6 @@ ;;;; (http://opensource.franz.com/preamble.html), also known as the LLGPL. ;;;; ************************************************************************* -(declaim (optimize (debug 3) (speed 3) (safety 1) (compilation-speed 0))) - (in-package :asdf) ;;; System definition diff --git a/clsql-postgresql-socket.asd b/clsql-postgresql-socket.asd index e1569cf..ee84407 100644 --- a/clsql-postgresql-socket.asd +++ b/clsql-postgresql-socket.asd @@ -7,7 +7,7 @@ ;;;; Programmer: Kevin M. Rosenberg ;;;; Date Started: Aug 2002 ;;;; -;;;; $Id: clsql-postgresql-socket.asd,v 1.8 2002/09/20 01:40:54 kevin Exp $ +;;;; $Id: clsql-postgresql-socket.asd,v 1.9 2002/09/20 06:37:39 kevin Exp $ ;;;; ;;;; This file, part of CLSQL, is Copyright (c) 2002 by Kevin M. Rosenberg ;;;; @@ -16,12 +16,11 @@ ;;;; (http://opensource.franz.com/preamble.html), also known as the LLGPL. ;;;; ************************************************************************* -(declaim (optimize (debug 3) (speed 3) (safety 1) (compilation-speed 0))) (in-package :asdf) ;;; System definition -(defsystem clsql-postgresql-socket +(defsystem :clsql-postgresql-socket :name "cl-sql-postgresql-socket" :author "Kevin M. Rosenberg " :version "0.9.2" diff --git a/clsql-postgresql.asd b/clsql-postgresql.asd index d7b9c07..64b67a1 100644 --- a/clsql-postgresql.asd +++ b/clsql-postgresql.asd @@ -7,7 +7,7 @@ ;;;; Programmer: Kevin M. Rosenberg ;;;; Date Started: Aug 2002 ;;;; -;;;; $Id: clsql-postgresql.asd,v 1.8 2002/09/20 01:40:54 kevin Exp $ +;;;; $Id: clsql-postgresql.asd,v 1.9 2002/09/20 06:37:39 kevin Exp $ ;;;; ;;;; This file, part of CLSQL, is Copyright (c) 2002 by Kevin M. Rosenberg ;;;; @@ -41,4 +41,3 @@ (defmethod source-file-type ((c cl-source-file) (s (eql (find-system :clsql-postgresql)))) "cl") - diff --git a/clsql.asd b/clsql.asd index 74dab7b..06607ab 100644 --- a/clsql.asd +++ b/clsql.asd @@ -7,7 +7,7 @@ ;;;; Programmer: Kevin M. Rosenberg ;;;; Date Started: Feb 2002 ;;;; -;;;; $Id: clsql.asd,v 1.10 2002/09/20 01:40:54 kevin Exp $ +;;;; $Id: clsql.asd,v 1.11 2002/09/20 06:37:39 kevin Exp $ ;;;; ;;;; This file, part of CLSQL, is Copyright (c) 2002 by Kevin M. Rosenberg ;;;; @@ -18,7 +18,7 @@ (in-package :asdf) -(defsystem clsql +(defsystem :clsql :name "cl-sql" :author "Kevin M. Rosenberg " :version "0.9.2" @@ -45,3 +45,9 @@ (defmethod source-file-type ((c cl-source-file) (s (eql (find-system :clsql)))) "cl") + + +(when (ignore-errors (find-class 'load-compiled-op)) + (defmethod perform :after ((op load-compiled-op) (c (eql (find-system :clsql)))) + (pushnew :clsql cl:*features*))) + diff --git a/debian/changelog b/debian/changelog index eb03a2f..486e1b0 100644 --- a/debian/changelog +++ b/debian/changelog @@ -1,3 +1,9 @@ +cl-sql (0.9.3-1) unstable; urgency=low + + * push onto cl:*features* if loaded with 'asdf:load-compiled-op + + -- Kevin M. Rosenberg Fri, 20 Sep 2002 00:07:25 -0600 + cl-sql (0.9.2-1) unstable; urgency=low * Add information fields to .asd files