From cc0da6fce14b3ecd9092ca7baceaf5651a14202a Mon Sep 17 00:00:00 2001 From: "Kevin M. Rosenberg" Date: Tue, 13 Oct 2020 03:05:12 +0000 Subject: [PATCH] Remove from Debian package support for deprecated SQLite 2 library --- debian/changelog | 6 ++++++ debian/control | 9 --------- debian/rules | 9 +-------- 3 files changed, 7 insertions(+), 17 deletions(-) diff --git a/debian/changelog b/debian/changelog index 906d4b7..9987179 100644 --- a/debian/changelog +++ b/debian/changelog @@ -1,3 +1,9 @@ +cl-sql (6.7.1-2) unstable; urgency=medium + + * Remove cl-sql-sqlite binary package (closes: 972124) + + -- Kevin M. Rosenberg Tue, 13 Oct 2020 02:51:11 +0000 + cl-sql (6.7.1-1) unstable; urgency=medium * New upstream diff --git a/debian/control b/debian/control index 455d1e2..84e80fe 100644 --- a/debian/control +++ b/debian/control @@ -74,15 +74,6 @@ Description: CLSQL database backend, PostgreSQL via sockets server. CLSQL is a Common Lisp interface to SQL databases. -Package: cl-sql-sqlite -Architecture: all -Depends: cl-sql (= ${source:Version}), libsqlite0-dev, cl-sql-uffi (>= ${source:Version}), ${misc:Depends} -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-sqlite3 Architecture: all Depends: cl-sql (= ${source:Version}), libsqlite3-dev, cl-sql-uffi (>= ${source:Version}), ${misc:Depends} diff --git a/debian/rules b/debian/rules index 57f41d3..8db784f 100755 --- a/debian/rules +++ b/debian/rules @@ -9,11 +9,10 @@ pkg-pg := cl-sql-postgresql pkg-pg-socket := cl-sql-postgresql-socket pkg-aodbc := cl-sql-aodbc pkg-odbc := cl-sql-odbc -pkg-sqlite := cl-sql-sqlite pkg-sqlite3 := cl-sql-sqlite3 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-sqlite3) $(pkg-tests) +all-pkgs := $(pkg) $(pkg-uffi) $(pkg-mysql) $(pkg-pg) $(pkg-pg-socket) $(pkg-aodbc) $(pkg-odbc) $(pkg-sqlite3) $(pkg-tests) UPSTREAM_VER := $(shell sed -n -e "s/${pkg} (\(.*\)-[0-9A-Za-z\.]).*/\1/p" < debian/changelog |head -1) @@ -28,7 +27,6 @@ srcs-pg := $(wildcard db-postgresql/*.lisp) 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-sqlite3 := $(wildcard db-sqlite3/*.lisp) srcs-oracle := $(wildcard db-oracle/*.lisp) srcs-tests := $(wildcard tests/*.lisp) @@ -56,8 +54,6 @@ clc-aodbc := $(clc-source)/clsql-aodbc lispdir-aodbc := $(clc-aodbc)/db-aodbc 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-sqlite3 := $(clc-source)/clsql-sqlite3 lispdir-sqlite3 := $(clc-sqlite3)/db-sqlite3 clc-oracle := $(clc-source)/clsql-oracle @@ -98,7 +94,6 @@ install-indep: dh_installdirs -p $(pkg-pg-socket) $(lispdir-pg-socket) 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-sqlite3) $(lispdir-sqlite3) dh_installdirs -p $(pkg-oracle) $(lispdir-oracle) dh_installdirs -p $(pkg-tests) $(lispdir-tests) @@ -116,8 +111,6 @@ install-indep: dh_install -p $(pkg-aodbc) clsql-aodbc.asd $(clc-aodbc) dh_install -p $(pkg-odbc) $(srcs-odbc) $(lispdir-odbc) 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-sqlite3) $(srcs-sqlite3) $(lispdir-sqlite3) dh_install -p $(pkg-sqlite3) clsql-sqlite3.asd $(clc-sqlite3) dh_install -p $(pkg-oracle) $(srcs-oracle) $(lispdir-oracle) -- 2.34.1