From 7890cc49c2826f47c5831e56fd81cc2fed73432f62ad9da1d53b24c429015edb Mon Sep 17 00:00:00 2001 From: Reinhard Max Date: Tue, 4 Feb 2014 15:09:58 +0000 Subject: [PATCH 1/2] - New version: 3.8.3: * Added support for common table expressions and the WITH clause. * Added the printf() SQL function. * Added SQLITE_DETERMINISTIC as an optional bit in the 4th argument to the sqlite3_create_function() and related interfaces, providing applications with the ability to create new functions that can be factored out of inner loops when they have constant arguments. * Add SQLITE_READONLY_DBMOVED error code, returned at the beginning of a transaction, to indicate that the underlying database file has been renamed or moved out from under SQLite. * Allow arbitrary expressions, including function calls and subqueries, in the filename argument to ATTACH. * Allow a VALUES clause to be used anywhere a SELECT statement is valid. * Reseed the PRNG used by sqlite3_randomness(N,P) when invoked with N==0. Automatically reseed after a fork() on unix. * Enhance the spellfix1 virtual table so that it can search efficiently by rowid. * Performance enhancements. * Improvements to the comments in the VDBE byte-code display when running EXPLAIN. * Add the "%token_class" directive to LEMON parser generator and use it to simplify the grammar. * Change the LEMON source code to avoid calling C-library functions that OpenBSD considers dangerous. (Ex: sprintf). * Bug fix: In the command-line shell CSV import feature, do not end a field when an escaped double-quote occurs at the end of a CRLN line. OBS-URL: https://build.opensuse.org/package/show/server:database/sqlite3?expand=0&rev=88 --- sqlite-autoconf-3080200.tar.gz | 3 --- sqlite-autoconf-3080300.tar.gz | 3 +++ sqlite3.changes | 34 ++++++++++++++++++++++++++++++++++ sqlite3.spec | 4 ++-- 4 files changed, 39 insertions(+), 5 deletions(-) delete mode 100644 sqlite-autoconf-3080200.tar.gz create mode 100644 sqlite-autoconf-3080300.tar.gz diff --git a/sqlite-autoconf-3080200.tar.gz b/sqlite-autoconf-3080200.tar.gz deleted file mode 100644 index 0cf7397..0000000 --- a/sqlite-autoconf-3080200.tar.gz +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:a0851d06092c8208e4dd947f569f40db476b472b22e3e10e2f52f3c5e94fef92 -size 1917056 diff --git a/sqlite-autoconf-3080300.tar.gz b/sqlite-autoconf-3080300.tar.gz new file mode 100644 index 0000000..8342726 --- /dev/null +++ b/sqlite-autoconf-3080300.tar.gz @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:dabe38cf6732a9dfd57e9a2d2629dfb12ea3f2bf8948987f91318d01e6f72a26 +size 1923594 diff --git a/sqlite3.changes b/sqlite3.changes index 294934d..c0e6153 100644 --- a/sqlite3.changes +++ b/sqlite3.changes @@ -1,3 +1,37 @@ +------------------------------------------------------------------- +Tue Feb 4 14:55:29 UTC 2014 - max@suse.com + +- New version: 3.8.3: + * Added support for common table expressions and the WITH + clause. + * Added the printf() SQL function. + * Added SQLITE_DETERMINISTIC as an optional bit in the 4th + argument to the sqlite3_create_function() and related + interfaces, providing applications with the ability to create + new functions that can be factored out of inner loops when + they have constant arguments. + * Add SQLITE_READONLY_DBMOVED error code, returned at the + beginning of a transaction, to indicate that the underlying + database file has been renamed or moved out from under SQLite. + * Allow arbitrary expressions, including function calls and + subqueries, in the filename argument to ATTACH. + * Allow a VALUES clause to be used anywhere a SELECT statement + is valid. + * Reseed the PRNG used by sqlite3_randomness(N,P) when invoked + with N==0. Automatically reseed after a fork() on unix. + * Enhance the spellfix1 virtual table so that it can search + efficiently by rowid. + * Performance enhancements. + * Improvements to the comments in the VDBE byte-code display + when running EXPLAIN. + * Add the "%token_class" directive to LEMON parser generator and + use it to simplify the grammar. + * Change the LEMON source code to avoid calling C-library + functions that OpenBSD considers dangerous. (Ex: sprintf). + * Bug fix: In the command-line shell CSV import feature, do not + end a field when an escaped double-quote occurs at the end of + a CRLN line. + ------------------------------------------------------------------- Tue Jan 7 17:07:55 UTC 2014 - max@suse.com diff --git a/sqlite3.spec b/sqlite3.spec index e957f74..818a4cc 100644 --- a/sqlite3.spec +++ b/sqlite3.spec @@ -21,9 +21,9 @@ %define oname sqlite Name: %pname -Version: 3.8.2 +Version: 3.8.3 Release: 0 -%define tarversion 3080200 +%define tarversion 3080300 Summary: Embeddable SQL Database Engine License: SUSE-Public-Domain Group: Productivity/Databases/Servers From f1a83bcdea0cd7e88b95adecc9fd959b4bd269b3736b170a979910b5651b94ef Mon Sep 17 00:00:00 2001 From: Reinhard Max Date: Tue, 4 Feb 2014 15:16:17 +0000 Subject: [PATCH 2/2] Fix source URL OBS-URL: https://build.opensuse.org/package/show/server:database/sqlite3?expand=0&rev=89 --- sqlite3.spec | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/sqlite3.spec b/sqlite3.spec index 818a4cc..c68ab4c 100644 --- a/sqlite3.spec +++ b/sqlite3.spec @@ -38,7 +38,7 @@ BuildRequires: update-desktop-files Requires: libsqlite3-0 = %version Provides: %oname = %version Obsoletes: %oname < %version -Source0: http://www.sqlite.org/2013/sqlite-autoconf-%tarversion.tar.gz +Source0: http://www.sqlite.org/2014/sqlite-autoconf-%tarversion.tar.gz Source1: baselibs.conf BuildRoot: %{_tmppath}/%{name}-%{version}-build # bug437293