From 3af3a416aa3f8e4e18c41753cc89698000a7b1a0 Mon Sep 17 00:00:00 2001 From: "Kevin M. Rosenberg" Date: Wed, 26 May 2004 15:33:56 +0000 Subject: [PATCH] r9483: add cl-sql-oracle binary package --- debian/changelog | 7 +++++++ debian/control | 10 ++++++++++ debian/rules | 8 ++++++++ 3 files changed, 25 insertions(+) diff --git a/debian/changelog b/debian/changelog index b7c55eb..cd754d8 100644 --- a/debian/changelog +++ b/debian/changelog @@ -1,3 +1,10 @@ +cl-sql (2.11.2-1) unstable; urgency=low + + * New upstream + * Add cl-sql-oracle binary package + + -- Kevin M. Rosenberg Wed, 26 May 2004 09:10:12 -0600 + cl-sql (2.11.1-1) unstable; urgency=low * New upstream diff --git a/debian/control b/debian/control index ec32826..ee4fc93 100644 --- a/debian/control +++ b/debian/control @@ -80,6 +80,16 @@ Description: CLSQL database backend, SQLite with SQLite databases. CLSQL is a Common Lisp interface to SQL databases. +Package: cl-sql-oracle +Architecture: all +Depends: cl-sql (>= ${Source-Version}), cl-sql-uffi (>= ${Source-Version}) +Provides: cl-sql-backend +Description: CLSQL database backend, Oracle + This package enables you to use the CLSQL data access package + with Oracle databases. This package requires the Oracle Instant + Client libraries to operate. + CLSQL is a Common Lisp interface to SQL databases. + Package: cl-sql-tests Architecture: all Depends: cl-sql, cl-sql-postgresql, cl-sql-postgresql-socket, cl-sql-mysql, cl-sql-sqlite, cl-sql-odbc, cl-rt diff --git a/debian/rules b/debian/rules index 29881dd..c901c18 100755 --- a/debian/rules +++ b/debian/rules @@ -10,6 +10,7 @@ pkg-pg-socket := cl-sql-postgresql-socket pkg-aodbc := cl-sql-aodbc pkg-odbc := cl-sql-odbc pkg-sqlite := cl-sql-sqlite +pkg-oracle := cl-sql-oracle pkg-tests := cl-sql-tests all-pkgs := $(pkg) $(pkg-uffi) $(pkg-mysql) $(pkg-pg) $(pkg-pg-socket) $(pkg-aodbc) $(pkg-odbc) $(pkg-sqlite) $(pkg-tests) @@ -27,6 +28,7 @@ srcs-pg-socket := $(wildcard db-postgresql-socket/*.lisp) srcs-aodbc := $(wildcard db-aodbc/*.lisp) srcs-odbc := $(wildcard db-odbc/*.lisp) srcs-sqlite := $(wildcard db-sqlite/*.lisp) +srcs-oracle := $(wildcard db-oracle/*.lisp) srcs-tests := $(wildcard tests/*.lisp) clc-base := usr/share/common-lisp @@ -54,6 +56,8 @@ clc-odbc := $(clc-source)/clsql-odbc lispdir-odbc := $(clc-odbc)/db-odbc clc-sqlite := $(clc-source)/clsql-sqlite lispdir-sqlite := $(clc-sqlite)/db-sqlite +clc-oracle := $(clc-source)/clsql-oracle +lispdir-oracle := $(clc-sqlite)/db-oracle clc-tests := $(clc-source)/clsql-tests lispdir-tests := $(clc-tests)/tests @@ -108,6 +112,7 @@ install: build dh_installdirs -p $(pkg-aodbc) $(lispdir-aodbc) dh_installdirs -p $(pkg-odbc) $(lispdir-odbc) dh_installdirs -p $(pkg-sqlite) $(lispdir-sqlite) + dh_installdirs -p $(pkg-oracle) $(lispdir-oracle) dh_installdirs -p $(pkg-tests) $(lispdir-tests) # Main package @@ -133,6 +138,8 @@ install: build dh_install -p $(pkg-odbc) clsql-odbc.asd $(clc-odbc) dh_install -p $(pkg-sqlite) $(srcs-sqlite) $(lispdir-sqlite) dh_install -p $(pkg-sqlite) clsql-sqlite.asd $(clc-sqlite) + dh_install -p $(pkg-oracle) $(srcs-oracle) $(lispdir-oracle) + dh_install -p $(pkg-oracle) clsql-oracle.asd $(clc-oracle) dh_install -p $(pkg-tests) $(srcs-tests) $(lispdir-tests) dh_install -p $(pkg-tests) clsql-tests.asd $(clc-tests) @@ -146,6 +153,7 @@ install: build dh_link -p $(pkg-aodbc) $(clc-aodbc)/clsql-aodbc.asd $(clc-systems)/clsql-aodbc.asd dh_link -p $(pkg-odbc) $(clc-odbc)/clsql-odbc.asd $(clc-systems)/clsql-odbc.asd dh_link -p $(pkg-sqlite) $(clc-sqlite)/clsql-sqlite.asd $(clc-systems)/clsql-sqlite.asd + dh_link -p $(pkg-oracle) $(clc-oracle)/clsql-oracle.asd $(clc-systems)/clsql-oracle.asd dh_link -p $(pkg-tests) $(clc-tests)/clsql-tests.asd $(clc-systems)/clsql-tests.asd # Documentation -- 2.34.1