r2822: *** empty log message ***
authorKevin M. Rosenberg <kevin@rosenberg.net>
Mon, 23 Sep 2002 05:34:12 +0000 (05:34 +0000)
committerKevin M. Rosenberg <kevin@rosenberg.net>
Mon, 23 Sep 2002 05:34:12 +0000 (05:34 +0000)
debian/changelog
debian/control
debian/postinst.template
debian/preinst.template

index 486e1b0a8aa98acb09cb5a9f8f50eac657e14bda..7385889e278c6c5e21bcb2b6b7bbb1fbb3466578 100644 (file)
@@ -1,3 +1,9 @@
+cl-sql (0.9.3-2) unstable; urgency=low
+
+  * Add call to common-lisp-source-compatible
+
+ -- Kevin M. Rosenberg <kmr@debian.org>  Sun, 22 Sep 2002 21:01:20 -0600
+
 cl-sql (0.9.3-1) unstable; urgency=low
 
   * push onto cl:*features* if loaded with 'asdf:load-compiled-op
index 9228b0b3b7d8e821acb2302c242f0265b06efca5..8d603cf2b895db6a3675f6fecfd828e51c250420 100644 (file)
@@ -14,7 +14,7 @@ Description: SQL Interface for Common Lisp
 
 Package: cl-sql-base
 Architecture: any
-Depends: common-lisp-controller, cmucl | lisp-compiler
+Depends: common-lisp-controller (>= 3.23), cmucl | lisp-compiler
 Recommends: cl-sql-backend
 Description: SQL Interface for Common Lisp
  CLSQL uses the UFFI library to provide SQL to multiple SQL databases
@@ -24,7 +24,7 @@ Description: SQL Interface for Common Lisp
 
 Package: cl-sql-uffi
 Architecture: any
-Depends: common-lisp-controller, cl-uffi, cl-sql-base, cmucl | lisp-compiler
+Depends: common-lisp-controller (>= 3.23), cl-uffi, cl-sql-base, cmucl | lisp-compiler
 Recommends: cl-sql-backend
 Description: Common UFFI functions for CLSQL database backends
  This package provides an interface to several UFFI functions used by multiple CLSQL database backends.
index be0cc161d7f5c0a65e72f78552fd21d8ff3edc5f..a67ba93c132b8efd7572d9b66309910be69eb9f0 100644 (file)
@@ -1,10 +1,12 @@
-#!/bin/bash -e
+#!/bin/sh 
+set -e
 
 pkg=%%
 
 case "$1" in
     configure)
-       /usr/sbin/register-common-lisp-source ${pkg}
+       common-lisp-only-compatible $pkg allegro cmucl lispworks
+       register-common-lisp-source $pkg
        ;;
     abort-upgrade|abort-remove|abort-deconfigure)
        ;;
index e7b00520eac4a3cbbaf4aee7d4f12f9661e7786a..e0b5f37034e51b0c1fbbd77b952c1870eb80d203 100755 (executable)
@@ -1,9 +1,11 @@
-#!/bin/bash
+#!/bin/sh
 # This is part of clsql program: 
 #    http://clsql.med-info.com
 #
 # Copyright (c) 2002 Kevin M. Rosenberg
 
+set -e
+
 pkg=%%
 dir=/usr/share/common-lisp/source/$pkg
 
@@ -11,7 +13,6 @@ case "$1" in
     install|upgrade|abort-upgrade)
        test -h $dir && rm $dir 
        rm -rf ${dir}-[0-9\.]*
-
        ;;
     *)
         echo "preinst called with unknown argument '$1'" >&2