From 887f5e4047033c019c7f14d53e7c628dbc6e115d Mon Sep 17 00:00:00 2001 From: "Kevin M. Rosenberg" Date: Wed, 10 Mar 2004 23:07:16 +0000 Subject: [PATCH] r8712: Automated commit for clsql debian-version-1.9.0-2 --- debian/changelog | 6 ++++++ debian/control | 19 +++++++++++++++++-- debian/rules | 10 +++++++++- 3 files changed, 32 insertions(+), 3 deletions(-) diff --git a/debian/changelog b/debian/changelog index 22e69c3..6cb96bb 100644 --- a/debian/changelog +++ b/debian/changelog @@ -1,3 +1,9 @@ +cl-sql (1.9.0-2) unstable; urgency=low + + * Add cl-sql-sqlite binary package + + -- Kevin M. Rosenberg Wed, 10 Mar 2004 16:07:03 -0700 + cl-sql (1.9.0-1) unstable; urgency=low * Add SQLlite backend as contributed by Aurelio Bignoli diff --git a/debian/control b/debian/control index e432b38..ba5b125 100644 --- a/debian/control +++ b/debian/control @@ -10,8 +10,9 @@ Package: cl-sql Architecture: all Depends: cl-sql-base Description: SQL Interface for Common Lisp - CLSQL uses the UFFI library to provide SQL to multiple SQL databases - on multiple Common Lisp implementations. + CLSQL is a Common Lisp interface for multiple SQL databases + on multiple Common Lisp implementations. It uses the UFFI + foreign language interface. Package: cl-sql-base Architecture: all @@ -30,6 +31,7 @@ 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. + CLSQL is a Common Lisp interface to SQL databases. Package: cl-sql-mysql Architecture: any @@ -38,6 +40,7 @@ Provides: cl-sql-backend Description: CLSQL database backend, MySQL This package enables you to use the CLSQL data access package with MySQL databases. + CLSQL is a Common Lisp interface to SQL databases. Package: cl-sql-aodbc Architecture: all @@ -47,6 +50,7 @@ Suggests: acl-pro-installer Description: CLSQL database backend, AODBC This package enables you to use the CLSQL data access package with AllegroCL's AODBC databases. + CLSQL is a Common Lisp interface to SQL databases. Package: cl-sql-postgresql Architecture: all @@ -55,6 +59,7 @@ Provides: cl-sql-backend Description: CLSQL database backend, PostgreSQL This package enables you to use the CLSQL data access package with PostgreSQL databases. + CLSQL is a Common Lisp interface to SQL databases. Package: cl-sql-postgresql-socket Architecture: all @@ -63,6 +68,16 @@ Provides: cl-sql-backend Description: CLSQL database backend, PostgreSQL This package enables you to use the CLSQL data access package with PostgreSQL databases via a socket interface. + CLSQL is a Common Lisp interface to SQL databases. + +Package: cl-sql-sqlite +Architecture: all +Depends: cl-sql-base (>= ${Source-Version}), libsqlite0-dev, cl-sql-uffi (>= ${Source-Version}) +Provides: cl-sql-backend +Description: CLSQL database backend, SQLite + This package enables you to use the CLSQL data access package + with SQLite databases. + CLSQL is a Common Lisp interface to SQL databases. Package: cl-sql-tests Architecture: all diff --git a/debian/rules b/debian/rules index 299e58e..8bd136f 100755 --- a/debian/rules +++ b/debian/rules @@ -9,8 +9,9 @@ pkg-mysql := cl-sql-mysql pkg-pg := cl-sql-postgresql pkg-pg-socket := cl-sql-postgresql-socket pkg-aodbc := cl-sql-aodbc +pkg-sqlite := cl-sql-sqlite pkg-tests := cl-sql-tests -all-pkgs := $(pkg) $(pkg-base) $(pkg-uffi) $(pkg-mysql) $(pkg-pg) $(pkg-pg-socket) $(pkg-aodbc) $(pkg-tests) +all-pkgs := $(pkg) $(pkg-base) $(pkg-uffi) $(pkg-mysql) $(pkg-pg) $(pkg-pg-socket) $(pkg-aodbc) $(pkg-sqlite) $(pkg-tests) UPSTREAM_VER := $(shell sed -n -e "s/${pkg} (\(.*\)-[0-9A-Za-z\.]).*/\1/p" < debian/changelog |head -1) @@ -25,6 +26,7 @@ srcs-mysql-so := $(wildcard db-mysql/*.so) srcs-pg := $(wildcard db-postgresql/*.lisp) srcs-pg-socket := $(wildcard db-postgresql-socket/*.lisp) srcs-aodbc := $(wildcard db-aodbc/*.lisp) +srcs-sqlite := $(wildcard db-sqlite/*.lisp) srcs-tests := $(wildcard tests/*.lisp) clc-base := usr/share/common-lisp @@ -50,6 +52,8 @@ clc-pg-socket := $(clc-source)/clsql-postgresql-socket lispdir-pg-socket := $(clc-pg-socket)/db-postgresql-socket clc-aodbc := $(clc-source)/clsql-aodbc lispdir-aodbc := $(clc-aodbc)/db-aodbc +clc-sqlite := $(clc-source)/clsql-sqlite +lispdir-sqlite := $(clc-sqlite)/db-sqlite clc-tests := $(clc-source)/clsql-tests lispdir-tests := $(clc-tests)/tests @@ -102,6 +106,7 @@ install: build dh_installdirs -p $(pkg-pg-socket) $(lispdir-pg-socket) dh_installdirs -p $(pkg-mysql) $(lispdir-mysql) $(sodir-mysql) dh_installdirs -p $(pkg-aodbc) $(lispdir-aodbc) + dh_installdirs -p $(pkg-sqlite) $(lispdir-sqlite) dh_installdirs -p $(pkg-tests) $(lispdir-tests) # Main package @@ -127,6 +132,8 @@ install: build dh_install -p $(pkg-pg-socket) clsql-postgresql-socket.asd $(clc-pg-socket) dh_install -p $(pkg-aodbc) $(srcs-aodbc) $(lispdir-aodbc) dh_install -p $(pkg-aodbc) clsql-aodbc.asd $(clc-aodbc) + dh_install -p $(pkg-sqlite) $(srcs-sqlite) $(lispdir-sqlite) + dh_install -p $(pkg-sqlite) clsql-sqlite.asd $(clc-sqlite) dh_install -p $(pkg-tests) $(srcs-tests) $(lispdir-tests) dh_install -p $(pkg-tests) clsql-tests.asd $(clc-tests) @@ -139,6 +146,7 @@ install: build dh_link -p $(pkg-pg) $(clc-pg)/clsql-postgresql.asd $(clc-systems)/clsql-postgresql.asd dh_link -p $(pkg-pg-socket) $(clc-pg-socket)/clsql-postgresql-socket.asd $(clc-systems)/clsql-postgresql-socket.asd dh_link -p $(pkg-aodbc) $(clc-aodbc)/clsql-aodbc.asd $(clc-systems)/clsql-aodbc.asd + dh_link -p $(pkg-sqlite) $(clc-sqlite)/clsql-sqlite.asd $(clc-systems)/clsql-sqlite.asd dh_link -p $(pkg-tests) $(clc-tests)/clsql-tests.asd $(clc-systems)/clsql-tests.asd # Documentation -- 2.34.1