r4863: Auto commit for Debian build
authorKevin M. Rosenberg <kevin@rosenberg.net>
Wed, 7 May 2003 02:45:08 +0000 (02:45 +0000)
committerKevin M. Rosenberg <kevin@rosenberg.net>
Wed, 7 May 2003 02:45:08 +0000 (02:45 +0000)
18 files changed:
base/package.lisp
clsql-aodbc.asd
clsql-base.asd
clsql-mysql.asd
clsql-oracle.asd
clsql-postgresql-socket.asd
clsql-postgresql.asd
clsql-tests.asd
clsql-uffi.asd
clsql.asd
db-aodbc/aodbc-package.lisp
db-mysql/mysql-package.lisp
db-postgresql-socket/postgresql-socket-package.lisp
db-postgresql/postgresql-package.lisp
debian/changelog
sql/package.lisp
tests/package.lisp
uffi/clsql-uffi-package.lisp

index 18ce31b9889c02d60d44d16f00abcf187ab77225..b0cd10b2e14582d2c3bfbfb49d4c3e29217760bc 100644 (file)
@@ -8,7 +8,7 @@
 ;;;;                Original code by Pierre R. Mai 
 ;;;; Date Started:  Feb 2002
 ;;;;
 ;;;;                Original code by Pierre R. Mai 
 ;;;; Date Started:  Feb 2002
 ;;;;
-;;;; $Id: package.lisp,v 1.1 2002/09/30 10:19:01 kevin Exp $
+;;;; $Id: package.lisp,v 1.2 2003/05/07 02:45:08 kevin Exp $
 ;;;;
 ;;;; This file, part of CLSQL, is Copyright (c) 2002 by Kevin M. Rosenberg
 ;;;; and Copyright (c) 1999-2001 by Pierre R. Mai
 ;;;;
 ;;;; This file, part of CLSQL, is Copyright (c) 2002 by Kevin M. Rosenberg
 ;;;; and Copyright (c) 1999-2001 by Pierre R. Mai
 ;;;; (http://opensource.franz.com/preamble.html), also known as the LLGPL.
 ;;;; *************************************************************************
 
 ;;;; (http://opensource.franz.com/preamble.html), also known as the LLGPL.
 ;;;; *************************************************************************
 
-(declaim (optimize (debug 3) (speed 3) (safety 1) (compilation-speed 0)))
-(in-package :cl-user)
+(in-package #:cl-user)
 
 ;;;; This file makes the required package definitions for CLSQL's
 ;;;; core packages.
 
 (eval-when (:compile-toplevel :load-toplevel :execute)
 
 ;;;; This file makes the required package definitions for CLSQL's
 ;;;; core packages.
 
 (eval-when (:compile-toplevel :load-toplevel :execute)
-(defpackage :clsql-base-sys
-  (:use :common-lisp)
+(defpackage #:clsql-base-sys
+  (:use #:cl)
   (:export
      ;; "Private" exports for use by interface packages
      #:check-connection-spec
   (:export
      ;; "Private" exports for use by interface packages
      #:check-connection-spec
index a996f85a9c7141561fd87ded623e287134266645..d593596aa41c4cf3521fcd7af660cf33cbf67782 100644 (file)
@@ -7,7 +7,7 @@
 ;;;; Programmer:    Kevin M. Rosenberg
 ;;;; Date Started:  Aug 2002
 ;;;;
 ;;;; Programmer:    Kevin M. Rosenberg
 ;;;; Date Started:  Aug 2002
 ;;;;
-;;;; $Id: clsql-aodbc.asd,v 1.12 2002/09/30 10:19:23 kevin Exp $
+;;;; $Id: clsql-aodbc.asd,v 1.13 2003/05/07 02:45:08 kevin Exp $
 ;;;;
 ;;;; This file, part of CLSQL, is Copyright (c) 2002 by Kevin M. Rosenberg
 ;;;;
 ;;;;
 ;;;; This file, part of CLSQL, is Copyright (c) 2002 by Kevin M. Rosenberg
 ;;;;
 ;;;; (http://opensource.franz.com/preamble.html), also known as the LLGPL.
 ;;;; *************************************************************************
 
 ;;;; (http://opensource.franz.com/preamble.html), also known as the LLGPL.
 ;;;; *************************************************************************
 
-(in-package :asdf)
+(defpackage #:clsql-aodbc-system (:use #:asdf #:cl))
+(in-package #:clsql-aodbc-system)
 
 #+(and allegro (not allegro-cl-trial))
 
 #+(and allegro (not allegro-cl-trial))
-(defsystem :clsql-aodbc
+(defsystem clsql-aodbc
   :name "cl-sql-aodbc"
   :author "Kevin M. Rosenberg <kmr@debian.org>"
   :name "cl-sql-aodbc"
   :author "Kevin M. Rosenberg <kmr@debian.org>"
-  :version "0.9.2"
   :maintainer "Kevin M. Rosenberg <kmr@debian.org>"
   :licence "Lessor Lisp General Public License"
   :description "Common Lisp SQL AODBC Driver"
   :maintainer "Kevin M. Rosenberg <kmr@debian.org>"
   :licence "Lessor Lisp General Public License"
   :description "Common Lisp SQL AODBC Driver"
index 72e02b8409936b7289eed3d0e1b0f9d11e12dcdf..534f2a559bdaa4d52f8fa7e8329a00939c3bcdfe 100644 (file)
@@ -7,7 +7,7 @@
 ;;;; Programmer:    Kevin M. Rosenberg
 ;;;; Date Started:  Feb 2002
 ;;;;
 ;;;; Programmer:    Kevin M. Rosenberg
 ;;;; Date Started:  Feb 2002
 ;;;;
-;;;; $Id: clsql-base.asd,v 1.18 2002/11/08 16:51:50 kevin Exp $
+;;;; $Id: clsql-base.asd,v 1.19 2003/05/07 02:45:08 kevin Exp $
 ;;;;
 ;;;; This file, part of CLSQL, is Copyright (c) 2002 by Kevin M. Rosenberg
 ;;;;
 ;;;;
 ;;;; This file, part of CLSQL, is Copyright (c) 2002 by Kevin M. Rosenberg
 ;;;;
 ;;;; (http://opensource.franz.com/preamble.html), also known as the LLGPL.
 ;;;; *************************************************************************
 
 ;;;; (http://opensource.franz.com/preamble.html), also known as the LLGPL.
 ;;;; *************************************************************************
 
-(in-package :asdf)
+(defpackage #:clsql-base-system (:use #:asdf #:cl))
+(in-package #:clsql-base-system)
 
 #+(or allegro lispworks cmu sbcl openmcl mcl scl)
 
 #+(or allegro lispworks cmu sbcl openmcl mcl scl)
-(defsystem :clsql-base
+(defsystem clsql-base
   :name "cl-sql-base"
   :name "cl-sql-base"
-  :author "Kevin M. Rosenberg <kmr@debian.org>"
-  :version "0.9.2"
+  :author "Kevin Rosenberg <kevin@rosenberg.net>"
   :maintainer "Kevin M. Rosenberg <kmr@debian.org>"
   :licence "Lessor Lisp General Public License"
   :description "Common Lisp SQL Base Package"
   :long-description "cl-sql-base package provides the low-level interface for the database drivers."
 
   :maintainer "Kevin M. Rosenberg <kmr@debian.org>"
   :licence "Lessor Lisp General Public License"
   :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
   :components
   ((:module :base
            :components
index 0fa706ec256bfe824cf64cb690a0ac2ade2e0a24..00982cc08c2b4d0bef7355f915f5c880d1d0d11d 100644 (file)
@@ -7,7 +7,7 @@
 ;;;; Programmer:    Kevin M. Rosenberg\r
 ;;;; Date Started:  Aug 2002\r
 ;;;;\r
 ;;;; Programmer:    Kevin M. Rosenberg\r
 ;;;; Date Started:  Aug 2002\r
 ;;;;\r
-;;;; $Id: clsql-mysql.asd,v 1.13 2002/10/16 11:51:04 kevin Exp $\r
+;;;; $Id: clsql-mysql.asd,v 1.14 2003/05/07 02:45:08 kevin Exp $\r
 ;;;;\r
 ;;;; This file, part of CLSQL, is Copyright (c) 2002 by Kevin M. Rosenberg\r
 ;;;;\r
 ;;;;\r
 ;;;; This file, part of CLSQL, is Copyright (c) 2002 by Kevin M. Rosenberg\r
 ;;;;\r
@@ -16,7 +16,8 @@
 ;;;; (http://opensource.franz.com/preamble.html), also known as the LLGPL.\r
 ;;;; *************************************************************************\r
 \r
 ;;;; (http://opensource.franz.com/preamble.html), also known as the LLGPL.\r
 ;;;; *************************************************************************\r
 \r
-(in-package :asdf)\r
+(defpackage #:clsql-mysql-system (:use #:asdf #:cl))\r
+(in-package #:clsql-mysql-system)\r
 \r
 ;;; System definition\r
 \r
 \r
 ;;; System definition\r
 \r
@@ -24,7 +25,6 @@
 (defsystem :clsql-mysql\r
   :name "cl-sql-mysql"\r
   :author "Kevin M. Rosenberg <kmr@debian.org>"\r
 (defsystem :clsql-mysql\r
   :name "cl-sql-mysql"\r
   :author "Kevin M. Rosenberg <kmr@debian.org>"\r
-  :version "0.9.2"\r
   :maintainer "Kevin M. Rosenberg <kmr@debian.org>"\r
   :licence "Lessor Lisp General Public License"\r
   :description "Common Lisp SQL MySQL Driver"\r
   :maintainer "Kevin M. Rosenberg <kmr@debian.org>"\r
   :licence "Lessor Lisp General Public License"\r
   :description "Common Lisp SQL MySQL Driver"\r
index d7834573d0bacffd2a74266d34697201377bd18b..00e09e51ef8a495a1d9ce330b73af9d10731a8b1 100644 (file)
@@ -1,17 +1,17 @@
 ;;;; -*- Mode: LISP; Syntax: ANSI-Common-Lisp; Base: 10 -*-
 ;;;; This is copyrighted software.  See interfaces/oracle/* files for terms.
 ;;;; 
 ;;;; -*- Mode: LISP; Syntax: ANSI-Common-Lisp; Base: 10 -*-
 ;;;; This is copyrighted software.  See interfaces/oracle/* files for terms.
 ;;;; 
-;;;; $Id: clsql-oracle.asd,v 1.12 2002/10/16 11:51:04 kevin Exp $
+;;;; $Id: clsql-oracle.asd,v 1.13 2003/05/07 02:45:08 kevin Exp $
 
 
-(in-package :asdf)
+(defpackage #:clsql-oracle-system (:use #:asdf #:cl))
+(in-package #:clsql-oracle-system)
 
 ;;; System definition
 
 #+(or allegro lispworks cmu sbcl openmcl mcl scl)
 
 ;;; System definition
 
 #+(or allegro lispworks cmu sbcl openmcl mcl scl)
-(defsystem :clsql-oracle
+(defsystem clsql-oracle
   :name "cl-sql-oracle"
   :author "Kevin M. Rosenberg <kmr@debian.org>"
   :name "cl-sql-oracle"
   :author "Kevin M. Rosenberg <kmr@debian.org>"
-  :version "0.9.2"
   :maintainer "Kevin M. Rosenberg <kmr@debian.org>"
   :licence "Lessor Lisp General Public License"
   :description "Common Lisp SQL Oracle Driver"
   :maintainer "Kevin M. Rosenberg <kmr@debian.org>"
   :licence "Lessor Lisp General Public License"
   :description "Common Lisp SQL Oracle Driver"
index b8d0a63abf768f37d783bc3fe3f6823dc71d7790..eb39db3761bd69bb99bba0726ad8c47d838afe3a 100644 (file)
@@ -7,7 +7,7 @@
 ;;;; Programmer:    Kevin M. Rosenberg\r
 ;;;; Date Started:  Aug 2002\r
 ;;;;\r
 ;;;; Programmer:    Kevin M. Rosenberg\r
 ;;;; Date Started:  Aug 2002\r
 ;;;;\r
-;;;; $Id: clsql-postgresql-socket.asd,v 1.15 2003/03/02 20:02:02 kevin Exp $\r
+;;;; $Id: clsql-postgresql-socket.asd,v 1.16 2003/05/07 02:45:08 kevin Exp $\r
 ;;;;\r
 ;;;; This file, part of CLSQL, is Copyright (c) 2002 by Kevin M. Rosenberg\r
 ;;;;\r
 ;;;;\r
 ;;;; This file, part of CLSQL, is Copyright (c) 2002 by Kevin M. Rosenberg\r
 ;;;;\r
 ;;;; (http://opensource.franz.com/preamble.html), also known as the LLGPL.\r
 ;;;; *************************************************************************\r
 \r
 ;;;; (http://opensource.franz.com/preamble.html), also known as the LLGPL.\r
 ;;;; *************************************************************************\r
 \r
-(in-package :asdf)\r
+(defpackage #:clsql-postgresql-socket-system (:use #:asdf #:cl))\r
+(in-package #:clsql-postgresql-socket-system)\r
 \r
 ;;; System definition\r
 \r
 #+(or allegro lispworks cmu sbcl openmcl mcl scl)\r
 \r
 ;;; System definition\r
 \r
 #+(or allegro lispworks cmu sbcl openmcl mcl scl)\r
-(defsystem :clsql-postgresql-socket\r
+(defsystem clsql-postgresql-socket\r
   :name "cl-sql-postgresql-socket"\r
   :author "Kevin M. Rosenberg <kmr@debian.org>"\r
   :name "cl-sql-postgresql-socket"\r
   :author "Kevin M. Rosenberg <kmr@debian.org>"\r
-  :version "0.9.2"\r
   :maintainer "Kevin M. Rosenberg <kmr@debian.org>"\r
   :licence "Lessor Lisp General Public License"\r
   :description "Common Lisp SQL PostgreSQL Socket Driver"\r
   :maintainer "Kevin M. Rosenberg <kmr@debian.org>"\r
   :licence "Lessor Lisp General Public License"\r
   :description "Common Lisp SQL PostgreSQL Socket Driver"\r
index 204a59c620d4be9f1e281a19011e0f71163f5e36..33f485d4e3de1d85cd8762b2bae1fec8fe8431db 100644 (file)
@@ -7,7 +7,7 @@
 ;;;; Programmer:    Kevin M. Rosenberg\r
 ;;;; Date Started:  Aug 2002\r
 ;;;;\r
 ;;;; Programmer:    Kevin M. Rosenberg\r
 ;;;; Date Started:  Aug 2002\r
 ;;;;\r
-;;;; $Id: clsql-postgresql.asd,v 1.13 2002/10/16 11:51:04 kevin Exp $\r
+;;;; $Id: clsql-postgresql.asd,v 1.14 2003/05/07 02:45:08 kevin Exp $\r
 ;;;;\r
 ;;;; This file, part of CLSQL, is Copyright (c) 2002 by Kevin M. Rosenberg\r
 ;;;;\r
 ;;;;\r
 ;;;; This file, part of CLSQL, is Copyright (c) 2002 by Kevin M. Rosenberg\r
 ;;;;\r
 ;;;; (http://opensource.franz.com/preamble.html), also known as the LLGPL.\r
 ;;;; *************************************************************************\r
 \r
 ;;;; (http://opensource.franz.com/preamble.html), also known as the LLGPL.\r
 ;;;; *************************************************************************\r
 \r
-(declaim (optimize (debug 3) (speed 3) (safety 1) (compilation-speed 0)))\r
-(in-package :asdf)\r
+(defpackage #:clsql-postgresql-system (:use #:asdf #:cl))\r
+(in-package #:clsql-postgresql-system)\r
 \r
 #+(or allegro lispworks cmu sbcl openmcl mcl scl)\r
 \r
 #+(or allegro lispworks cmu sbcl openmcl mcl scl)\r
-(defsystem :clsql-postgresql\r
+(defsystem clsql-postgresql\r
   :name "cl-sql-postgresql"\r
   :author "Kevin M. Rosenberg <kmr@debian.org>"\r
   :name "cl-sql-postgresql"\r
   :author "Kevin M. Rosenberg <kmr@debian.org>"\r
-  :version "0.9.2"\r
   :maintainer "Kevin M. Rosenberg <kmr@debian.org>"\r
   :licence "Lessor Lisp General Public License"\r
   :description "Common Lisp PostgreSQL API Driver"\r
   :maintainer "Kevin M. Rosenberg <kmr@debian.org>"\r
   :licence "Lessor Lisp General Public License"\r
   :description "Common Lisp PostgreSQL API Driver"\r
index 19883027c8bdbb6c36eafe85ea3ab0714228068b..f9633ed4005731e7370d488c3c1d82dcd372a1fa 100644 (file)
@@ -7,11 +7,10 @@
 ;;;; Author:        Kevin M. Rosenberg
 ;;;; Date Started:  Apr 2003
 ;;;;
 ;;;; Author:        Kevin M. Rosenberg
 ;;;; Date Started:  Apr 2003
 ;;;;
-;;;; $Id: clsql-tests.asd,v 1.1 2003/05/02 03:05:54 kevin Exp $
+;;;; $Id: clsql-tests.asd,v 1.2 2003/05/07 02:45:08 kevin Exp $
 ;;;; *************************************************************************
 
 ;;;; *************************************************************************
 
-(defpackage #:clsql-tests-system
-  (:use #:asdf #:cl))
+(defpackage #:clsql-tests-system (:use #:asdf #:cl))
 (in-package #:clsql-tests-system)
 
 (defsystem clsql-tests
 (in-package #:clsql-tests-system)
 
 (defsystem clsql-tests
index 21ef79a4ac08ee3b220e5550cedafe4a680ae1da..c633488ec00cc226674fb88c0d1ffb40e63a8020 100644 (file)
@@ -7,7 +7,7 @@
 ;;;; Programmer:    Kevin M. Rosenberg
 ;;;; Date Started:  Aug 2002
 ;;;;
 ;;;; Programmer:    Kevin M. Rosenberg
 ;;;; Date Started:  Aug 2002
 ;;;;
-;;;; $Id: clsql-uffi.asd,v 1.14 2002/10/16 11:51:04 kevin Exp $
+;;;; $Id: clsql-uffi.asd,v 1.15 2003/05/07 02:45:08 kevin Exp $
 ;;;;
 ;;;; This file, part of CLSQL, is Copyright (c) 2002 by Kevin M. Rosenberg
 ;;;;
 ;;;;
 ;;;; This file, part of CLSQL, is Copyright (c) 2002 by Kevin M. Rosenberg
 ;;;;
 ;;;; (http://opensource.franz.com/preamble.html), also known as the LLGPL.
 ;;;; *************************************************************************
 
 ;;;; (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)
+(defpackage #:clsql-uffi-system (:use #:asdf #:cl))
+(in-package #:clsql-uffi-system)
 
 
-;;; System definition
 
 #+(or allegro lispworks cmu sbcl openmcl mcl scl)
 
 #+(or allegro lispworks cmu sbcl openmcl mcl scl)
-(defsystem :clsql-uffi
+(defsystem clsql-uffi
   :name "cl-sql-base"
   :author "Kevin M. Rosenberg <kmr@debian.org>"
   :name "cl-sql-base"
   :author "Kevin M. Rosenberg <kmr@debian.org>"
-  :version "0.9.2"
   :maintainer "Kevin M. Rosenberg <kmr@debian.org>"
   :licence "Lessor Lisp General Public License"
   :description "Common UFFI Helper functions for Common Lisp SQL Interface Library"
   :maintainer "Kevin M. Rosenberg <kmr@debian.org>"
   :licence "Lessor Lisp General Public License"
   :description "Common UFFI Helper functions for Common Lisp SQL Interface Library"
index 55562fd4da5666e47d5c136d6d2a29effeb12174..03faf1a084564e889ac56ef1e684ed91b898e2ea 100644 (file)
--- a/clsql.asd
+++ b/clsql.asd
@@ -7,7 +7,7 @@
 ;;;; Programmer:    Kevin M. Rosenberg
 ;;;; Date Started:  Feb 2002
 ;;;;
 ;;;; Programmer:    Kevin M. Rosenberg
 ;;;; Date Started:  Feb 2002
 ;;;;
-;;;; $Id: clsql.asd,v 1.17 2003/05/02 03:05:54 kevin Exp $
+;;;; $Id: clsql.asd,v 1.18 2003/05/07 02:45:08 kevin Exp $
 ;;;;
 ;;;; This file, part of CLSQL, is Copyright (c) 2002 by Kevin M. Rosenberg
 ;;;;
 ;;;;
 ;;;; This file, part of CLSQL, is Copyright (c) 2002 by Kevin M. Rosenberg
 ;;;;
 ;;;; (http://opensource.franz.com/preamble.html), also known as the LLGPL.
 ;;;; *************************************************************************
 
 ;;;; (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)
 
 #+(or allegro lispworks cmu sbcl openmcl mcl scl)
-(defsystem :clsql
+(defsystem clsql
   :name "clsql"
   :author "Kevin Rosenberg <kevin@rosenberg.net>"
   :maintainer "Kevin M. Rosenberg <kmr@debian.org>"
   :name "clsql"
   :author "Kevin Rosenberg <kevin@rosenberg.net>"
   :maintainer "Kevin M. Rosenberg <kmr@debian.org>"
index 82137e7cc2fa80588777ffa803e15ce11028d32c..aa7cca8f98a9cbe671b639ec5ae75e46e85fd58a 100644 (file)
@@ -7,7 +7,7 @@
 ;;;; Programmer:    Kevin M. Rosenberg
 ;;;; Date Started:  Feb 2002
 ;;;;
 ;;;; Programmer:    Kevin M. Rosenberg
 ;;;; Date Started:  Feb 2002
 ;;;;
-;;;; $Id: aodbc-package.lisp,v 1.3 2003/05/02 04:42:14 kevin Exp $
+;;;; $Id: aodbc-package.lisp,v 1.4 2003/05/07 02:45:08 kevin Exp $
 ;;;;
 ;;;; This file, part of CLSQL, is Copyright (c) 2002 by Kevin M. Rosenberg
 ;;;;
 ;;;;
 ;;;; This file, part of CLSQL, is Copyright (c) 2002 by Kevin M. Rosenberg
 ;;;;
 ;;;; (http://opensource.franz.com/preamble.html), also known as the LLGPL.
 ;;;; *************************************************************************
 
 ;;;; (http://opensource.franz.com/preamble.html), also known as the LLGPL.
 ;;;; *************************************************************************
 
-(in-package :cl-user)
+(in-package #:cl-user)
 
 #+allegro 
 (eval-when (:compile-toplevel :load-toplevel :execute) 
   (require :aodbc-v2))
 #-allegro (warn "This system requires Allegro's AODBC library to operate")
 
 
 #+allegro 
 (eval-when (:compile-toplevel :load-toplevel :execute) 
   (require :aodbc-v2))
 #-allegro (warn "This system requires Allegro's AODBC library to operate")
 
-(defpackage :clsql-aodbc
-    (:nicknames :aodbc)
-    (:use :common-lisp :clsql-base-sys)
+(defpackage #:clsql-aodbc
+    (:nicknames #:aodbc)
+    (:use :cl :clsql-base-sys)
     (:export #:aodbc-database)
     (:documentation "This is the CLSQL interface to Allegro's AODBC"))
     (:export #:aodbc-database)
     (:documentation "This is the CLSQL interface to Allegro's AODBC"))
index 12d6bef13a5ad654881929342addf784f3bb8a0b..7c74f098fbbfb5a2f1f3c9ee1292bb1df1a8c683 100644 (file)
@@ -7,7 +7,7 @@
 ;;;; Programmers:   Kevin M. Rosenberg
 ;;;; Date Started:  Feb 2002
 ;;;;
 ;;;; Programmers:   Kevin M. Rosenberg
 ;;;; Date Started:  Feb 2002
 ;;;;
-;;;; $Id: mysql-package.lisp,v 1.2 2002/10/14 04:09:02 kevin Exp $
+;;;; $Id: mysql-package.lisp,v 1.3 2003/05/07 02:45:08 kevin Exp $
 ;;;;
 ;;;; This file, part of CLSQL, is Copyright (c) 2002 by Kevin M. Rosenberg
 ;;;;
 ;;;;
 ;;;; This file, part of CLSQL, is Copyright (c) 2002 by Kevin M. Rosenberg
 ;;;;
 ;;;; (http://opensource.franz.com/preamble.html), also known as the LLGPL.
 ;;;; *************************************************************************
 
 ;;;; (http://opensource.franz.com/preamble.html), also known as the LLGPL.
 ;;;; *************************************************************************
 
-(declaim (optimize (debug 3) (speed 3) (safety 1) (compilation-speed 0)))
-(in-package :cl-user)
+(in-package #:cl-user)
 
 
-(defpackage :mysql
-    (:use #:common-lisp #:clsql-uffi)
+(defpackage #:mysql
+    (:use #:cl #:clsql-uffi)
     (:export 
      #:database-library-loaded
      
     (:export 
      #:database-library-loaded
      
index 23b7747335abf8f2ebc92e956d68a95f0b0484bb..2dbcf4c691c120b4c91372710bb97fe2b540c426 100644 (file)
@@ -7,7 +7,7 @@
 ;;;; Programmers:   Kevin M. Rosenberg
 ;;;; Date Started:  Feb 2002
 ;;;;
 ;;;; Programmers:   Kevin M. Rosenberg
 ;;;; Date Started:  Feb 2002
 ;;;;
-;;;; $Id: postgresql-socket-package.lisp,v 1.3 2002/10/21 07:45:50 kevin Exp $
+;;;; $Id: postgresql-socket-package.lisp,v 1.4 2003/05/07 02:45:08 kevin Exp $
 ;;;;
 ;;;; This file, part of CLSQL, is Copyright (c) 2002 by Kevin M. Rosenberg
 ;;;;
 ;;;;
 ;;;; This file, part of CLSQL, is Copyright (c) 2002 by Kevin M. Rosenberg
 ;;;;
 ;;;; (http://opensource.franz.com/preamble.html), also known as the LLGPL.
 ;;;; *************************************************************************
 
 ;;;; (http://opensource.franz.com/preamble.html), also known as the LLGPL.
 ;;;; *************************************************************************
 
-(declaim (optimize (debug 3) (speed 3) (safety 1) (compilation-speed 0)))
-(in-package :cl-user)
+(in-package #:cl-user)
 
 #+lispworks (require "comm")
 
 
 #+lispworks (require "comm")
 
-(defpackage :postgresql-socket
-  (:use #:common-lisp)
+(defpackage #:postgresql-socket
+  (:use #:cl)
   (:export #:pgsql-ftype
           #:pgsql-ftype#bytea
           #:pgsql-ftype#int2
   (:export #:pgsql-ftype
           #:pgsql-ftype#bytea
           #:pgsql-ftype#int2
index cd007c6d9e053d23df628705fde77ec9e049ae36..60c6571135ed0fefaa8bfa8cb81e29c205751868 100644 (file)
@@ -7,7 +7,7 @@
 ;;;; Programmer:    Kevin M. Rosenberg
 ;;;; Date Started:  Feb 2002
 ;;;;
 ;;;; Programmer:    Kevin M. Rosenberg
 ;;;; Date Started:  Feb 2002
 ;;;;
-;;;; $Id: postgresql-package.lisp,v 1.1 2002/09/30 10:19:23 kevin Exp $
+;;;; $Id: postgresql-package.lisp,v 1.2 2003/05/07 02:45:08 kevin Exp $
 ;;;;
 ;;;; This file, part of CLSQL, is Copyright (c) 2002 by Kevin M. Rosenberg
 ;;;;
 ;;;;
 ;;;; This file, part of CLSQL, is Copyright (c) 2002 by Kevin M. Rosenberg
 ;;;;
 ;;;; (http://opensource.franz.com/preamble.html), also known as the LLGPL.
 ;;;; *************************************************************************
 
 ;;;; (http://opensource.franz.com/preamble.html), also known as the LLGPL.
 ;;;; *************************************************************************
 
-(declaim (optimize (debug 3) (speed 3) (safety 1) (compilation-speed 0)))
-(in-package :cl-user)
+(in-package #:cl-user)
 
 
-(defpackage :postgresql
-    (:nicknames :pgsql)
-    (:use :common-lisp :clsql-uffi)
+(defpackage #:postgresql
+    (:nicknames #:pgsql)
+    (:use #:cl #:clsql-uffi)
     (:export
      #:pgsql-oid
      #:pgsql-conn-status-type
     (:export
      #:pgsql-oid
      #:pgsql-conn-status-type
index b54a589e37ca7870bbe9e023f63546aa7d2c961e..0a37ac9fffd8999f83c39e974d0a0992725b0c54 100644 (file)
@@ -1,3 +1,9 @@
+cl-sql (1.5.4-1) unstable; urgency=low
+
+  * Improve .asd files
+
+ -- Kevin M. Rosenberg <kmr@debian.org>  Tue,  6 May 2003 18:30:19 -0600
+
 cl-sql (1.5.3-1) unstable; urgency=low
 
   * New upstream
 cl-sql (1.5.3-1) unstable; urgency=low
 
   * New upstream
index 2d0ab0d2a0b1a04b31efeda9266f1ddc5fc45dd3..0b834687622de4c4f3daed8741a0c4e412eba4be 100644 (file)
@@ -8,7 +8,7 @@
 ;;;;                Original code by Pierre R. Mai 
 ;;;; Date Started:  Feb 2002
 ;;;;
 ;;;;                Original code by Pierre R. Mai 
 ;;;; Date Started:  Feb 2002
 ;;;;
-;;;; $Id: package.lisp,v 1.3 2002/10/21 14:11:09 kevin Exp $
+;;;; $Id: package.lisp,v 1.4 2003/05/07 02:45:08 kevin Exp $
 ;;;;
 ;;;; This file, part of CLSQL, is Copyright (c) 2002 by Kevin M. Rosenberg
 ;;;; and Copyright (c) 1999-2001 by Pierre R. Mai
 ;;;;
 ;;;; This file, part of CLSQL, is Copyright (c) 2002 by Kevin M. Rosenberg
 ;;;; and Copyright (c) 1999-2001 by Pierre R. Mai
 ;;;; (http://opensource.franz.com/preamble.html), also known as the LLGPL.
 ;;;; *************************************************************************
 
 ;;;; (http://opensource.franz.com/preamble.html), also known as the LLGPL.
 ;;;; *************************************************************************
 
-(declaim (optimize (debug 3) (speed 3) (safety 1) (compilation-speed 0)))
-(in-package :cl-user)
-
+(in-package #:cl-user)
 
 (eval-when (:compile-toplevel :load-toplevel :execute)
 
 (eval-when (:compile-toplevel :load-toplevel :execute)
-  (defpackage :clsql-sys
-    (:nicknames :clsql)
-    (:use :common-lisp :clsql-base-sys)
+  (defpackage #:clsql-sys
+    (:nicknames #:clsql)
+    (:use #:cl #:clsql-base-sys)
     (:import-from 
     (:import-from 
-     :clsql-base
+     #:clsql-base
      .
      #1=(
         #:clsql-condition
      .
      #1=(
         #:clsql-condition
index 706af43a00e0a3ffedc0489e86db2c94d6f06a63..144f2e170deaddb0d60ec67dc19b401d927a36e7 100644 (file)
@@ -7,11 +7,12 @@
 ;;;; Author:        Kevin M. Rosenberg
 ;;;; Date Started:  Apr 2003
 ;;;;
 ;;;; Author:        Kevin M. Rosenberg
 ;;;; Date Started:  Apr 2003
 ;;;;
-;;;; $Id: package.lisp,v 1.2 2003/05/02 03:26:46 kevin Exp $
+;;;; $Id: package.lisp,v 1.3 2003/05/07 02:45:08 kevin Exp $
 ;;;; *************************************************************************
 
 ;;;; *************************************************************************
 
+(in-package #:cl-user)
+
 (defpackage #:clsql-tests
   (:use #:asdf #:cl #:clsql #:rtest #:util.test))
 
 (defpackage #:clsql-tests
   (:use #:asdf #:cl #:clsql #:rtest #:util.test))
 
-(in-package #:clsql-tests)
 
 
index c2eb33d500fc6e7fe6a9888c87a1f09e5ba2792f..f9c313c171037680aedf7e6eb8157f7029ebcba2 100644 (file)
@@ -7,7 +7,7 @@
 ;;;; Programmers:   Kevin M. Rosenberg
 ;;;; Date Started:  Mar 2002
 ;;;;
 ;;;; Programmers:   Kevin M. Rosenberg
 ;;;; Date Started:  Mar 2002
 ;;;;
-;;;; $Id: clsql-uffi-package.lisp,v 1.2 2002/10/14 04:09:02 kevin Exp $
+;;;; $Id: clsql-uffi-package.lisp,v 1.3 2003/05/07 02:45:08 kevin Exp $
 ;;;;
 ;;;; This file, part of CLSQL, is Copyright (c) 2002 by Kevin M. Rosenberg
 ;;;;
 ;;;;
 ;;;; This file, part of CLSQL, is Copyright (c) 2002 by Kevin M. Rosenberg
 ;;;;
 ;;;; (http://opensource.franz.com/preamble.html), also known as the LLGPL.
 ;;;; *************************************************************************
 
 ;;;; (http://opensource.franz.com/preamble.html), also known as the LLGPL.
 ;;;; *************************************************************************
 
-(declaim (optimize (debug 3) (speed 3) (safety 1) (compilation-speed 0)))
-(in-package :cl-user)
+(in-package #:cl-user)
 
 
-(defpackage :clsql-uffi
-  (:use #:common-lisp)
+(defpackage #:clsql-uffi
+  (:use #:cl #:uffi)
   (:export
    #:canonicalize-type-list
    #:convert-raw-field
   (:export
    #:canonicalize-type-list
    #:convert-raw-field