From: Kevin M. Rosenberg Date: Fri, 20 Sep 2002 01:40:54 +0000 (+0000) Subject: r2780: *** empty log message *** X-Git-Tag: v3.8.6~937 X-Git-Url: http://git.kpe.io/?p=clsql.git;a=commitdiff_plain;h=94a7bd5cfc5413a85312a6363664ae262241c309 r2780: *** empty log message *** --- diff --git a/clsql-aodbc.asd b/clsql-aodbc.asd index 1c8e964..1f6f734 100644 --- a/clsql-aodbc.asd +++ b/clsql-aodbc.asd @@ -7,7 +7,7 @@ ;;;; Programmer: Kevin M. Rosenberg ;;;; Date Started: Aug 2002 ;;;; -;;;; $Id: clsql-aodbc.asd,v 1.9 2002/09/18 07:50:01 kevin Exp $ +;;;; $Id: clsql-aodbc.asd,v 1.10 2002/09/20 01:40:54 kevin Exp $ ;;;; ;;;; This file, part of CLSQL, is Copyright (c) 2002 by Kevin M. Rosenberg ;;;; @@ -19,7 +19,15 @@ (in-package :asdf) (defsystem :clsql-aodbc - :components + :name "cl-sql-aodbc" + :author "Kevin M. Rosenberg " + :version "0.9.2" + :maintainer "Kevin M. Rosenberg " + :licence "Lessor Lisp General Public License" + :description "Common Lisp SQL AODBC Driver" + :long-description "cl-sql-aodbc package provides a database driver to AllegroCL's AODBC database interface." + + :components ((:module :db-aodbc :components ((:file "aodbc-package") diff --git a/clsql-base.asd b/clsql-base.asd index 48c68a2..b33abed 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.11 2002/09/18 07:50:01 kevin Exp $ +;;;; $Id: clsql-base.asd,v 1.12 2002/09/20 01:40:54 kevin Exp $ ;;;; ;;;; This file, part of CLSQL, is Copyright (c) 2002 by Kevin M. Rosenberg ;;;; @@ -19,7 +19,16 @@ (in-package :asdf) (defsystem clsql-base - :perform (load-op :after (op clsql-base) + :name "cl-sql-base" + :author "Kevin M. Rosenberg " + :version "0.9.2" + :maintainer "Kevin M. Rosenberg " + :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 diff --git a/clsql-mysql.asd b/clsql-mysql.asd index 515e873..a29ac1c 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.7 2002/09/18 07:50:01 kevin Exp $ +;;;; $Id: clsql-mysql.asd,v 1.8 2002/09/20 01:40:54 kevin Exp $ ;;;; ;;;; This file, part of CLSQL, is Copyright (c) 2002 by Kevin M. Rosenberg ;;;; @@ -23,6 +23,14 @@ ;;; System definition (defsystem :clsql-mysql + :name "cl-sql-mysql" + :author "Kevin M. Rosenberg " + :version "0.9.2" + :maintainer "Kevin M. Rosenberg " + :licence "Lessor Lisp General Public License" + :description "Common Lisp SQL MySQL Driver" + :long-description "cl-sql-mysql package provides a database driver to the MySQL database system." + :components ((:module :db-mysql :components diff --git a/clsql-oracle.asd b/clsql-oracle.asd index 8cace75..6cd61e1 100644 --- a/clsql-oracle.asd +++ b/clsql-oracle.asd @@ -1,14 +1,22 @@ ;;;; -*- Mode: LISP; Syntax: ANSI-Common-Lisp; Base: 10 -*- ;;;; This is copyrighted software. See interfaces/oracle/* files for terms. ;;;; -;;;; $Id: clsql-oracle.asd,v 1.7 2002/09/18 07:50:01 kevin Exp $ +;;;; $Id: clsql-oracle.asd,v 1.8 2002/09/20 01:40:54 kevin Exp $ (in-package :asdf) ;;; System definition (defsystem :clsql-oracle - :components + :name "cl-sql-oracle" + :author "Kevin M. Rosenberg " + :version "0.9.2" + :maintainer "Kevin M. Rosenberg " + :licence "Lessor Lisp General Public License" + :description "Common Lisp SQL Oracle Driver" + :long-description "cl-sql-oracle package provides a database driver to the Oracle database system." + + :components ((:module :db-oracle :components ((:file "oracle-package") diff --git a/clsql-postgresql-socket.asd b/clsql-postgresql-socket.asd index 96e9d30..e1569cf 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.7 2002/09/18 07:50:01 kevin Exp $ +;;;; $Id: clsql-postgresql-socket.asd,v 1.8 2002/09/20 01:40:54 kevin Exp $ ;;;; ;;;; This file, part of CLSQL, is Copyright (c) 2002 by Kevin M. Rosenberg ;;;; @@ -22,6 +22,14 @@ ;;; System definition (defsystem clsql-postgresql-socket + :name "cl-sql-postgresql-socket" + :author "Kevin M. Rosenberg " + :version "0.9.2" + :maintainer "Kevin M. Rosenberg " + :licence "Lessor Lisp General Public License" + :description "Common Lisp SQL PostgreSQL Socket Driver" + :long-description "cl-sql-postgresql-socket package provides a database driver to the PostgreSQL database via a socket interface." + :components ((:module :db-postgresql-socket :components diff --git a/clsql-postgresql.asd b/clsql-postgresql.asd index 410dbdf..d7b9c07 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.7 2002/09/18 07:50:01 kevin Exp $ +;;;; $Id: clsql-postgresql.asd,v 1.8 2002/09/20 01:40:54 kevin Exp $ ;;;; ;;;; This file, part of CLSQL, is Copyright (c) 2002 by Kevin M. Rosenberg ;;;; @@ -20,6 +20,14 @@ (in-package :asdf) (defsystem :clsql-postgresql + :name "cl-sql-postgresql" + :author "Kevin M. Rosenberg " + :version "0.9.2" + :maintainer "Kevin M. Rosenberg " + :licence "Lessor Lisp General Public License" + :description "Common Lisp PostgreSQL API Driver" + :long-description "cl-sql-postgresql package provides a the database driver for the PostgreSQL API." + :components ((:module :db-postgresql :components diff --git a/clsql-uffi.asd b/clsql-uffi.asd index e6fe6b8..803be55 100644 --- a/clsql-uffi.asd +++ b/clsql-uffi.asd @@ -7,7 +7,7 @@ ;;;; Programmer: Kevin M. Rosenberg ;;;; Date Started: Aug 2002 ;;;; -;;;; $Id: clsql-uffi.asd,v 1.9 2002/09/18 07:50:01 kevin Exp $ +;;;; $Id: clsql-uffi.asd,v 1.10 2002/09/20 01:40:54 kevin Exp $ ;;;; ;;;; This file, part of CLSQL, is Copyright (c) 2002 by Kevin M. Rosenberg ;;;; @@ -23,6 +23,14 @@ ;;; System definition (defsystem :clsql-uffi + :name "cl-sql-base" + :author "Kevin M. Rosenberg " + :version "0.9.2" + :maintainer "Kevin M. Rosenberg " + :licence "Lessor Lisp General Public License" + :description "Common UFFI Helper functions for Common Lisp SQL Interface Library" + :long-description "cl-sql-uffi package provides common helper functions using the UFFI for the CLSQL package." + :components ((:module :uffi :components diff --git a/clsql.asd b/clsql.asd index eafc5a8..74dab7b 100644 --- a/clsql.asd +++ b/clsql.asd @@ -7,7 +7,7 @@ ;;;; Programmer: Kevin M. Rosenberg ;;;; Date Started: Feb 2002 ;;;; -;;;; $Id: clsql.asd,v 1.9 2002/09/19 21:27:54 kevin Exp $ +;;;; $Id: clsql.asd,v 1.10 2002/09/20 01:40:54 kevin Exp $ ;;;; ;;;; This file, part of CLSQL, is Copyright (c) 2002 by Kevin M. Rosenberg ;;;; @@ -19,6 +19,14 @@ (in-package :asdf) (defsystem clsql + :name "cl-sql" + :author "Kevin M. Rosenberg " + :version "0.9.2" + :maintainer "Kevin M. Rosenberg " + :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." + :perform (load-op :after (op clsql) (pushnew :clsql cl:*features*)) :components diff --git a/debian/changelog b/debian/changelog index 60c850a..eb03a2f 100644 --- a/debian/changelog +++ b/debian/changelog @@ -1,3 +1,9 @@ +cl-sql (0.9.2-1) unstable; urgency=low + + * Add information fields to .asd files + + -- Kevin M. Rosenberg Thu, 19 Sep 2002 19:40:43 -0600 + cl-sql (0.9.1-1) unstable; urgency=low * New upstream fixing typo in clsql.asdf