From f2aa50f699230755d702460c179c03d018595cb1d8b77d331712f3b83cb6f93a Mon Sep 17 00:00:00 2001 From: Martin Pluskal Date: Thu, 15 Oct 2015 15:23:13 +0000 Subject: [PATCH] Accepting request 339128 from home:AndreasStieger:branches:server:database SQLite 3.9.0 OBS-URL: https://build.opensuse.org/request/show/339128 OBS-URL: https://build.opensuse.org/package/show/server:database/sqlite3?expand=0&rev=133 --- sqlite-autoconf-3081101.tar.gz | 3 --- sqlite-autoconf-3090000.tar.gz | 3 +++ sqlite-doc-3081101.zip | 3 --- sqlite-doc-3090000.zip | 3 +++ sqlite3.changes | 26 ++++++++++++++++++++++++++ sqlite3.spec | 11 ++++++++--- 6 files changed, 40 insertions(+), 9 deletions(-) delete mode 100644 sqlite-autoconf-3081101.tar.gz create mode 100644 sqlite-autoconf-3090000.tar.gz delete mode 100644 sqlite-doc-3081101.zip create mode 100644 sqlite-doc-3090000.zip diff --git a/sqlite-autoconf-3081101.tar.gz b/sqlite-autoconf-3081101.tar.gz deleted file mode 100644 index 56dda40..0000000 --- a/sqlite-autoconf-3081101.tar.gz +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:fb99b0ac038c4a7e48b44b61836cb41d4eeba36b4d0ee757beeab59031a1d3b6 -size 2101885 diff --git a/sqlite-autoconf-3090000.tar.gz b/sqlite-autoconf-3090000.tar.gz new file mode 100644 index 0000000..852fb75 --- /dev/null +++ b/sqlite-autoconf-3090000.tar.gz @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a324143f4cc35cd7e9605a0a8dec9f9e4861d0be8305f3642e7d05008b77e60d +size 2283997 diff --git a/sqlite-doc-3081101.zip b/sqlite-doc-3081101.zip deleted file mode 100644 index 50f9498..0000000 --- a/sqlite-doc-3081101.zip +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:89e3fc4bce7463885da3b03602b4260fe07240f9ea674ba4ac7ce2ee4987357f -size 5108061 diff --git a/sqlite-doc-3090000.zip b/sqlite-doc-3090000.zip new file mode 100644 index 0000000..b8e01fd --- /dev/null +++ b/sqlite-doc-3090000.zip @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:2b5f4116b16907ab087548047c0489e4cc8124e249b3f8c55005098db863be17 +size 5284463 diff --git a/sqlite3.changes b/sqlite3.changes index 74dc27c..eb6684d 100644 --- a/sqlite3.changes +++ b/sqlite3.changes @@ -1,3 +1,29 @@ +------------------------------------------------------------------- +Thu Oct 15 14:35:51 UTC 2015 - astieger@suse.com + +- SQLite 3.9.0 + * Add json1 extension module + * The CREATE VIEW statement now accepts an optional list of + column names following the view name. + * Added support for indexes on expressions. + * Added support for table-valued functions in the FROM clause of a + SELECT statement. + * Added support for eponymous virtual tables. + * A VIEW may now reference undefined tables and functions when + initially created. Missing tables and functions are reported + when the VIEW is used in a query. + * Added the sqlite3_value_subtype() and sqlite3_result_subtype() + interfaced (used by the json1 extension). + * The query planner is now able to use partial indexes that + contain AND-connected terms in the WHERE clause. + * The sqlite3_analyzer utility is updated to report the depth of + each btree and to show the average fanout for indexes and + WITHOUT ROWID tables. + * Enhanced the dbstat virtual table so that it can be used as a + table-valued function where the argument is the schema to be + analyzed. + * sqlite3_memory_alarm() no-op. + ------------------------------------------------------------------- Fri Jul 31 11:44:40 UTC 2015 - mpluskal@suse.com diff --git a/sqlite3.spec b/sqlite3.spec index a711019..5a6cc0f 100644 --- a/sqlite3.spec +++ b/sqlite3.spec @@ -21,9 +21,9 @@ %define oname sqlite Name: %pname -Version: 3.8.11.1 +Version: 3.9.0 Release: 0 -%define tarversion 3081101 +%define tarversion 3090000 Summary: Embeddable SQL Database Engine License: SUSE-Public-Domain Group: Productivity/Databases/Servers @@ -124,7 +124,12 @@ rm -v sqlite-doc-%{tarversion}/releaselog/current.html ln -sv `echo %{version} | sed "s/\./_/g"`.html sqlite-doc-%{tarversion}/releaselog/current.html %build -export CFLAGS="%optflags -DSQLITE_ENABLE_COLUMN_METADATA -DSQLITE_ENABLE_FTS4 -DSQLITE_ENABLE_UNLOCK_NOTIFY" +export CFLAGS="%optflags \ + -DSQLITE_ENABLE_COLUMN_METADATA \ + -DSQLITE_ENABLE_FTS4 \ + -DSQLITE_ENABLE_UNLOCK_NOTIFY \ + -DSQLITE_ENABLE_JSON1 \ + " %configure --disable-static make