summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorHans-Christoph Steiner <hans@eds.org>2012-03-31 19:55:19 -0400
committerHans-Christoph Steiner <hans@eds.org>2012-03-31 21:33:26 -0400
commit82a39958ded1bfc014069e716d465807bf63e115 (patch)
tree0f787009f3dce89a5d7edc6cba0d072cc31d5a09
parent67eedee1f3f4419a9ded56b1990ff48800c00711 (diff)
rename packages from SQLite to SQLCipher
-rw-r--r--debian/README.Debian25
-rw-r--r--debian/control50
-rw-r--r--debian/libsqlcipher-dev.dirs (renamed from debian/libsqlite3-dev.dirs)0
-rw-r--r--debian/libsqlcipher-dev.install (renamed from debian/libsqlite3-dev.install)0
-rw-r--r--debian/libsqlcipher0-dbg.dirs (renamed from debian/libsqlite3-0-dbg.dirs)0
-rw-r--r--debian/libsqlcipher0.dirs (renamed from debian/libsqlite3-0.dirs)0
-rw-r--r--debian/libsqlcipher0.docs (renamed from debian/libsqlite3-0.docs)0
-rw-r--r--debian/libsqlcipher0.install (renamed from debian/libsqlite3-0.install)0
-rw-r--r--debian/libsqlcipher0.postinst (renamed from debian/libsqlite3-0.postinst)0
-rw-r--r--debian/libsqlcipher0.symbols (renamed from debian/libsqlite3-0.symbols)0
-rwxr-xr-xdebian/rules4
-rw-r--r--debian/sqlcipher.dirs (renamed from debian/sqlite3.dirs)0
-rw-r--r--debian/sqlcipher.install (renamed from debian/sqlite3.install)0
13 files changed, 36 insertions, 43 deletions
diff --git a/debian/README.Debian b/debian/README.Debian
index 60cef24..5bf51b3 100644
--- a/debian/README.Debian
+++ b/debian/README.Debian
@@ -1,21 +1,10 @@
-SQLite for Debian
------------------
+SQLCipher for Debian
+--------------------
-SQLite 3 for Debian is split up in four packages:
+SQLCipher for Debian is split up in three packages:
-libsqlite0-dev: Development files (headers, static library)
-libsqlite0: The database engine library itself
-sqlite3: The text-mode user interface
-sqlite3-doc: Documentation
+libsqlcipher-dev: Development files (headers, static library)
+libsqlcipher0: The database engine library itself
+sqlcipher: The text-mode user interface
-About lemon
------------
-
-Additionally, since 2.8.12-2, a lemon package is generated by the
-sqlite source package. The lemon parser generator was previously
-maintained in a separate source package, but since upstream maintains
-it as part of SQLite, Debian switched to doing it this way, too. The
-maintainer of the now-obsolete separate lemon package was Guus
-Sliepen <guus@debian.org>.
-
- -- Andreas Rottmann <rotty@debian.org>, Sun Nov 7 13:58:10 2004
+ -- Hans-Christoph Steiner <hans@eds.org>, Sat, 31 Mar 2012 19:54:55 -0400
diff --git a/debian/control b/debian/control
index b7c5bca..47fa551 100644
--- a/debian/control
+++ b/debian/control
@@ -7,50 +7,54 @@ Build-Conflicts: tcl8.4, tcl8.4-dev
Homepage: http://sqlcipher.net/
Standards-Version: 3.9.3
-Package: sqlite3
+Package: sqlcipher
Section: database
Architecture: any
-Depends: ${shlibs:Depends}, ${misc:Depends}, libsqlite3-0 (= ${binary:Version})
+Depends: ${shlibs:Depends}, ${misc:Depends}, libsqlcipher0 (= ${binary:Version})
Suggests: sqlite3-doc
Multi-Arch: foreign
-Description: Command line interface for SQLite 3
- SQLite is a C library that implements an SQL database engine.
- Programs that link with the SQLite library can have SQL database
- access without running a separate RDBMS process.
+Description: Command line interface for SQLCipher
+ SQLCipher is a C library that implements an encryption in the SQLite 3
+ database engine. Programs that link with the SQLCipher library can have SQL
+ database access without running a separate RDBMS process. It allows one to
+ have per-database or page-by-page encryption using AES-256 from OpenSSL.
-Package: libsqlite3-0-dbg
+Package: libsqlcipher0-dbg
Section: debug
Architecture: any
Priority: extra
-Depends: libsqlite3-0 (= ${binary:Version}), ${misc:Depends}
+Depends: libsqlcipher0 (= ${binary:Version}), ${misc:Depends}
Multi-Arch: foreign
-Description: SQLite 3 debugging symbols
- SQLite is a C library that implements an SQL database engine.
- Programs that link with the SQLite library can have SQL database
- access without running a separate RDBMS process.
+Description: SQLCipher debugging symbols
+ SQLCipher is a C library that implements an encryption in the SQLite 3
+ database engine. Programs that link with the SQLCipher library can have SQL
+ database access without running a separate RDBMS process. It allows one to
+ have per-database or page-by-page encryption using AES-256 from OpenSSL.
.
This package contains the debugging symbols for the libraries.
-Package: libsqlite3-0
+Package: libsqlcipher0
Section: libs
Architecture: any
Priority: standard
Depends: ${shlibs:Depends}, ${misc:Depends}
Multi-Arch: same
Pre-Depends: ${misc:Pre-Depends}
-Description: SQLite 3 shared library
- SQLite is a C library that implements an SQL database engine.
- Programs that link with the SQLite library can have SQL database
- access without running a separate RDBMS process.
+Description: SQLCipher shared library
+ SQLCipher is a C library that implements an encryption in the SQLite 3
+ database engine. Programs that link with the SQLCipher library can have SQL
+ database access without running a separate RDBMS process. It allows one to
+ have per-database or page-by-page encryption using AES-256 from OpenSSL.
-Package: libsqlite3-dev
+Package: libsqlcipher-dev
Suggests: sqlite3-doc
Section: libdevel
Architecture: any
-Depends: libsqlite3-0 (= ${binary:Version}), ${misc:Depends}, libc6-dev
-Description: SQLite 3 development files
- SQLite is a C library that implements an SQL database engine.
- Programs that link with the SQLite library can have SQL database
- access without running a separate RDBMS process.
+Depends: libsqlcipher0 (= ${binary:Version}), ${misc:Depends}, libc6-dev
+Description: SQLCipher development files
+ SQLCipher is a C library that implements an encryption in the SQLite 3
+ database engine. Programs that link with the SQLCipher library can have SQL
+ database access without running a separate RDBMS process. It allows one to
+ have per-database or page-by-page encryption using AES-256 from OpenSSL.
.
This package contains the development files (headers, static libraries)
diff --git a/debian/libsqlite3-dev.dirs b/debian/libsqlcipher-dev.dirs
index da07fdd..da07fdd 100644
--- a/debian/libsqlite3-dev.dirs
+++ b/debian/libsqlcipher-dev.dirs
diff --git a/debian/libsqlite3-dev.install b/debian/libsqlcipher-dev.install
index 6f3b50c..6f3b50c 100644
--- a/debian/libsqlite3-dev.install
+++ b/debian/libsqlcipher-dev.install
diff --git a/debian/libsqlite3-0-dbg.dirs b/debian/libsqlcipher0-dbg.dirs
index 08d9e7a..08d9e7a 100644
--- a/debian/libsqlite3-0-dbg.dirs
+++ b/debian/libsqlcipher0-dbg.dirs
diff --git a/debian/libsqlite3-0.dirs b/debian/libsqlcipher0.dirs
index 6845771..6845771 100644
--- a/debian/libsqlite3-0.dirs
+++ b/debian/libsqlcipher0.dirs
diff --git a/debian/libsqlite3-0.docs b/debian/libsqlcipher0.docs
index e174728..e174728 100644
--- a/debian/libsqlite3-0.docs
+++ b/debian/libsqlcipher0.docs
diff --git a/debian/libsqlite3-0.install b/debian/libsqlcipher0.install
index 5d85381..5d85381 100644
--- a/debian/libsqlite3-0.install
+++ b/debian/libsqlcipher0.install
diff --git a/debian/libsqlite3-0.postinst b/debian/libsqlcipher0.postinst
index fea4184..fea4184 100644
--- a/debian/libsqlite3-0.postinst
+++ b/debian/libsqlcipher0.postinst
diff --git a/debian/libsqlite3-0.symbols b/debian/libsqlcipher0.symbols
index ad738ff..ad738ff 100644
--- a/debian/libsqlite3-0.symbols
+++ b/debian/libsqlcipher0.symbols
diff --git a/debian/rules b/debian/rules
index 23c86f9..7d13b22 100755
--- a/debian/rules
+++ b/debian/rules
@@ -92,12 +92,12 @@ binary-arch: build install
dh_installman -a
dh_installdocs -a
dh_installchangelogs -a
- dh_strip -a --dbg-package=libsqlite3-0-dbg
+ dh_strip -a --dbg-package=libsqlcipher0-dbg
dh_compress -a
dh_fixperms -a
dh_makeshlibs -a
dh_installdeb -a
- dh_shlibdeps -a -Ldebian/libsqlite3-0/usr/lib/$(DEB_HOST_MULTIARCH)
+ dh_shlibdeps -a -Ldebian/libsqlcipher0/usr/lib/$(DEB_HOST_MULTIARCH)
dh_gencontrol -a
dh_md5sums -a
dh_builddeb -a
diff --git a/debian/sqlite3.dirs b/debian/sqlcipher.dirs
index e772481..e772481 100644
--- a/debian/sqlite3.dirs
+++ b/debian/sqlcipher.dirs
diff --git a/debian/sqlite3.install b/debian/sqlcipher.install
index cb5782b..cb5782b 100644
--- a/debian/sqlite3.install
+++ b/debian/sqlcipher.install