r2569: Auto commit for Debian build
authorKevin M. Rosenberg <kevin@rosenberg.net>
Fri, 6 Sep 2002 10:26:17 +0000 (10:26 +0000)
committerKevin M. Rosenberg <kevin@rosenberg.net>
Fri, 6 Sep 2002 10:26:17 +0000 (10:26 +0000)
clsql-aodbc.asd
clsql-base.asd
clsql-mysql.asd
clsql-oracle.asd
clsql-postgresql-socket.asd
clsql-postgresql.asd
clsql-uffi.asd
clsql.asd
debian/changelog

index b50d362c332ab518b6f20c9c589cf87ba52587f1..f98104653d3ec2cdf49a0cb3679d6644dd0be69f 100644 (file)
@@ -7,7 +7,7 @@
 ;;;; Programmer:    Kevin M. Rosenberg
 ;;;; Date Started:  Aug 2002
 ;;;;
-;;;; $Id: clsql-aodbc.asd,v 1.3 2002/09/01 09:00:14 kevin Exp $
+;;;; $Id: clsql-aodbc.asd,v 1.4 2002/09/06 10:26:17 kevin Exp $
 ;;;;
 ;;;; This file, part of CLSQL, is Copyright (c) 2002 by Kevin M. Rosenberg
 ;;;;
 (declaim (optimize (debug 3) (speed 3) (safety 1) (compilation-speed 0)))
 (in-package :asdf)
 
-(defmethod source-file-type  ((c cl-source-file)
-                             (s (eql (find-system 'clsql-aodbc)))) 
-   "cl")
-
 (defsystem clsql-aodbc
   :pathname #.(format nil "~A:clsql-aodbc;" +clsql-logical-host+)
   :components ((:file "aodbc-package")
@@ -30,3 +26,7 @@
   :depends-on (:clsql-base))
 
     
+(defmethod source-file-type  ((c cl-source-file)
+                             (s (eql (find-system 'clsql-aodbc)))) 
+   "cl")
+
index a7b9fae1d08c28c9dedbdd75a177a1d68ca6a914..3642a207b53716c77f702c28da7fbaec3e6dbd77 100644 (file)
@@ -7,7 +7,7 @@
 ;;;; Programmer:    Kevin M. Rosenberg
 ;;;; Date Started:  Feb 2002
 ;;;;
-;;;; $Id: clsql-base.asd,v 1.5 2002/09/01 09:00:14 kevin Exp $
+;;;; $Id: clsql-base.asd,v 1.6 2002/09/06 10:26:17 kevin Exp $
 ;;;;
 ;;;; This file, part of CLSQL, is Copyright (c) 2002 by Kevin M. Rosenberg
 ;;;;
   #-common-lisp-controller "clsql"
   "Logical hostname for loading system")
 
-(defmethod source-file-type  ((c cl-source-file)
-                             (s (eql (find-system 'clsql-base)))) 
-   "cl")
-
  ;;; System definitions
 
 (defsystem clsql-base
@@ -54,3 +50,8 @@
               (: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")
+
index a18db47823a6fda7b5f098a0e56d5dfa048747b7..44789a6a05a4fcc10da3a2c529904821170e0f1c 100644 (file)
@@ -7,7 +7,7 @@
 ;;;; Programmer:    Kevin M. Rosenberg\r
 ;;;; Date Started:  Aug 2002\r
 ;;;;\r
-;;;; $Id: clsql-mysql.asd,v 1.3 2002/09/01 09:00:14 kevin Exp $\r
+;;;; $Id: clsql-mysql.asd,v 1.4 2002/09/06 10:26:17 kevin Exp $\r
 ;;;;\r
 ;;;; This file, part of CLSQL, is Copyright (c) 2002 by Kevin M. Rosenberg\r
 ;;;;\r
 \r
 ;;; System definition\r
 \r
-(defmethod source-file-type  ((c cl-source-file)\r
-                             (s (eql (find-system 'clsql-mysql)))) \r
-   "cl")\r
-\r
 (defsystem clsql-mysql\r
   :pathname #.(format nil "~A:clsql-mysql;" +clsql-logical-host+)\r
   :components ((:file "mysql-package")\r
@@ -36,6 +32,7 @@
   :depends-on (:uffi :clsql-base :clsql-uffi))\r
 \r
 \r
-\r
-\r
+(defmethod source-file-type  ((c cl-source-file)\r
+                             (s (eql (find-system 'clsql-mysql)))) \r
+   "cl")\r
 \r
index 08bf7be2daa2f21ab04bef088bc0b26cb6f8155f..5d754667fe7b9209ee4b8350f3b89f82b18de868 100644 (file)
@@ -1,16 +1,12 @@
 ;;;; -*- Mode: LISP; Syntax: ANSI-Common-Lisp; Base: 10 -*-
 ;;;; This is copyrighted software.  See interfaces/oracle/* files for terms.
 ;;;; 
-;;;; $Id: clsql-oracle.asd,v 1.3 2002/09/01 09:00:15 kevin Exp $
+;;;; $Id: clsql-oracle.asd,v 1.4 2002/09/06 10:26:17 kevin Exp $
 
 (in-package :asdf)
 
 ;;; System definition
 
-(defmethod source-file-type  ((c cl-source-file)
-                             (s (eql (find-system 'clsql-oracle)))) 
-   "cl")
-
 (defsystem :clsql-oracle
   :pathname #.(format nil "~A:clsql-oracle;" +clsql-logical-host+)
   :pathname "cl-library:clsql-oracle"
@@ -26,4 +22,9 @@
 
 
 
+(defmethod source-file-type  ((c cl-source-file)
+                             (s (eql (find-system 'clsql-oracle)))) 
+   "cl")
+
+
 
index 7faa04bbac26ad3ce6375a8abf7fa14d13f56774..ca43518c72930975c67197c1dd209562526f5d8f 100644 (file)
@@ -7,7 +7,7 @@
 ;;;; Programmer:    Kevin M. Rosenberg\r
 ;;;; Date Started:  Aug 2002\r
 ;;;;\r
-;;;; $Id: clsql-postgresql-socket.asd,v 1.3 2002/09/01 09:00:15 kevin Exp $\r
+;;;; $Id: clsql-postgresql-socket.asd,v 1.4 2002/09/06 10:26:17 kevin Exp $\r
 ;;;;\r
 ;;;; This file, part of CLSQL, is Copyright (c) 2002 by Kevin M. Rosenberg\r
 ;;;;\r
 \r
 ;;; System definition\r
 \r
-(defmethod source-file-type  ((c cl-source-file)\r
-                             (s (eql (find-system 'clsql-postgresql-socket)))) \r
-   "cl")\r
-\r
 (defsystem clsql-postgresql-socket\r
   :pathname #.(format nil "~A:clsql-postgresql-socket;" +clsql-logical-host+)\r
   :components ((:file "postgresql-socket-package")\r
@@ -33,3 +29,8 @@
               (:file "postgresql-socket-sql"\r
                      :depends-on ("postgresql-socket-api")))\r
   :depends-on (:clsql-base :uffi))\r
+\r
+(defmethod source-file-type  ((c cl-source-file)\r
+                             (s (eql (find-system 'clsql-postgresql-socket)))) \r
+   "cl")\r
+\r
index d9c24b97651347c7d5c2dc5189a683edf0b24843..21f6725aa66d912bebd4a15693f870d5cdfc9a22 100644 (file)
@@ -7,7 +7,7 @@
 ;;;; Programmer:    Kevin M. Rosenberg\r
 ;;;; Date Started:  Aug 2002\r
 ;;;;\r
-;;;; $Id: clsql-postgresql.asd,v 1.3 2002/09/01 09:00:15 kevin Exp $\r
+;;;; $Id: clsql-postgresql.asd,v 1.4 2002/09/06 10:26:17 kevin Exp $\r
 ;;;;\r
 ;;;; This file, part of CLSQL, is Copyright (c) 2002 by Kevin M. Rosenberg\r
 ;;;;\r
 (declaim (optimize (debug 3) (speed 3) (safety 1) (compilation-speed 0)))\r
 (in-package :asdf)\r
 \r
-(defmethod source-file-type  ((c cl-source-file)\r
-                             (s (eql (find-system 'clsql-postgresql)))) \r
-   "cl")\r
-\r
 (defsystem clsql-postgresql\r
   :pathname #.(format nil "~A:clsql-postgresql;" +clsql-logical-host+)\r
   :components ((:file "postgresql-package")\r
@@ -32,3 +28,8 @@
               (:file "postgresql-usql" :depends-on ("postgresql-sql")))\r
   :depends-on (:uffi :clsql-base :clsql-uffi))\r
 \r
+\r
+(defmethod source-file-type  ((c cl-source-file)\r
+                             (s (eql (find-system 'clsql-postgresql)))) \r
+   "cl")\r
+\r
index 9d5c21e4cd41e7d5ad56479a7f997d5a3115d88e..f5b5a32c2aad95f611f581b648bf063748d3361c 100644 (file)
@@ -7,7 +7,7 @@
 ;;;; Programmer:    Kevin M. Rosenberg
 ;;;; Date Started:  Aug 2002
 ;;;;
-;;;; $Id: clsql-uffi.asd,v 1.4 2002/09/01 09:00:15 kevin Exp $
+;;;; $Id: clsql-uffi.asd,v 1.5 2002/09/06 10:26:17 kevin Exp $
 ;;;;
 ;;;; This file, part of CLSQL, is Copyright (c) 2002 by Kevin M. Rosenberg
 ;;;;
 
 ;;; System definition
 
-(defmethod source-file-type  ((c cl-source-file)
-                             (s (eql (find-system 'clsql-uffi)))) 
-   "cl")
-
 (defsystem clsql-uffi
   :pathname #.(format nil "~A:clsql-uffi;" +clsql-logical-host+)
   :components ((:file "clsql-uffi-package")
@@ -33,3 +29,8 @@
               (:file "clsql-uffi" :depends-on ("clsql-uffi-loader")))
   :depends-on (:uffi))
 
+
+(defmethod source-file-type  ((c cl-source-file)
+                             (s (eql (find-system 'clsql-uffi)))) 
+   "cl")
+
index 9a1460b476059217fe0e77109fef4c0fa743c910..ac2fb352d32265010d3eed499711d404a7649317 100644 (file)
--- a/clsql.asd
+++ b/clsql.asd
@@ -7,7 +7,7 @@
 ;;;; Programmer:    Kevin M. Rosenberg
 ;;;; Date Started:  Feb 2002
 ;;;;
-;;;; $Id: clsql.asd,v 1.4 2002/09/01 09:00:15 kevin Exp $
+;;;; $Id: clsql.asd,v 1.5 2002/09/06 10:26:17 kevin Exp $
 ;;;;
 ;;;; This file, part of CLSQL, is Copyright (c) 2002 by Kevin M. Rosenberg
 ;;;;
 ;;; System definitions
 
 
-(defmethod source-file-type  ((c cl-source-file)
-                             (s (eql (find-system 'clsql)))) 
-   "cl")
-
 (defsystem clsql
   :pathname #.(format nil "~A:clsql;" +clsql-logical-host+)
   :perform (load-op :after (op clsql)
@@ -46,3 +42,8 @@
                 (:file "usql" :depends-on ("sql")))
   :depends-on (:clsql-base)
   )
+
+(defmethod source-file-type  ((c cl-source-file)
+                             (s (eql (find-system 'clsql)))) 
+   "cl")
+
index fecf9ea99eb55fdaf914c1581d34b78a8761d3df..485cff898ed346257c435e40316f71bb4db8c925 100644 (file)
@@ -1,3 +1,9 @@
+cl-sql (0.8.6-1) unstable; urgency=low
+
+  * New upstream version, fixes problem with .asd files
+
+ -- Kevin M. Rosenberg <kmr@debian.org>  Fri,  6 Sep 2002 04:26:06 -0600
+
 cl-sql (0.8.5-1) unstable; urgency=low
 
   * New upstream version