From b44b120b0aff6b055ae980ae87d7fbd11a26174e879fd6f0c6251a0cbd0f3bdc Mon Sep 17 00:00:00 2001 From: Stephan Kulow Date: Sat, 15 Oct 2011 05:22:34 +0000 Subject: [PATCH] trigger service run OBS-URL: https://build.opensuse.org/package/show/server:database/sqlite3?expand=0&rev=51 --- sqlite-autoconf-3070701.tar.gz | 3 --- sqlite-autoconf-3070800.tar.gz | 3 +++ sqlite3.changes | 24 ++++++++++++++++++ sqlite3.spec | 46 ++++++++++++++++++---------------- 4 files changed, 51 insertions(+), 25 deletions(-) delete mode 100644 sqlite-autoconf-3070701.tar.gz create mode 100644 sqlite-autoconf-3070800.tar.gz diff --git a/sqlite-autoconf-3070701.tar.gz b/sqlite-autoconf-3070701.tar.gz deleted file mode 100644 index 730c564..0000000 --- a/sqlite-autoconf-3070701.tar.gz +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:7dcc36b25f7bcbe2938d0ea2baea5b706f0af93473d02a3f612d7ab39e386edf -size 1748837 diff --git a/sqlite-autoconf-3070800.tar.gz b/sqlite-autoconf-3070800.tar.gz new file mode 100644 index 0000000..6b607d4 --- /dev/null +++ b/sqlite-autoconf-3070800.tar.gz @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:fd8c7f70db7e06b51196efccb937f2a657abc7b27ef61fe3a7fb8e72ac4dfa32 +size 1776215 diff --git a/sqlite3.changes b/sqlite3.changes index 33371d5..04c37e1 100644 --- a/sqlite3.changes +++ b/sqlite3.changes @@ -1,3 +1,27 @@ +------------------------------------------------------------------- +Fri Oct 7 11:26:43 UTC 2011 - max@suse.com + +- New version 3.8: + * Orders of magnitude performance improvement for CREATE INDEX on + very large tables. + * Improved the windows VFS to better defend against interference + from anti-virus software. + * Improved query plan optimization when the DISTINCT keyword is + present. + * Allow more system calls to be overridden in the unix VFS - to + provide better support for chromium sandboxes. + * Increase the default size of a lookahead cache line from 100 to + 128 bytes. + * Enhancements to the test_quota.c module so that it can track + preexisting files. + * Bug fix: Virtual tables now handle IS NOT NULL constraints + correctly. + * Bug fixes: Correctly handle nested correlated subqueries used + with indices in a WHERE clause. + +- Re-integrate the Tcl bidings as a subpackage, now that it is + easier to build both out of a single tarball. + ------------------------------------------------------------------- Thu Aug 4 13:56:02 UTC 2011 - idonmez@novell.com diff --git a/sqlite3.spec b/sqlite3.spec index 729f2b1..9dd5261 100644 --- a/sqlite3.spec +++ b/sqlite3.spec @@ -15,9 +15,7 @@ # Please submit bugfixes or comments via http://bugs.opensuse.org/ # -# norootforbuild -%define tarversion %{expand:%(IFS=.; a="%{version}"; printf "%d%02d%02d%02d" $a)} # %if 0%{?suse_version} >= 1100 # The package naming scheme changed starting with openSUSE 11.0 @@ -27,7 +25,7 @@ %endif Name: sqlite3 -BuildRequires: pkg-config readline-devel +BuildRequires: pkg-config readline-devel tcl-devel %if %{?suse_version:1}%{?!suse_version:0} BuildRequires: update-desktop-files %endif @@ -35,8 +33,9 @@ License: Public Domain, Freeware Group: Productivity/Databases/Servers Summary: Embeddable SQL Database Engine Url: http://www.sqlite.org/ -Version: 3.7.7.1 +Version: 3.7.8 Release: 1 +%define tarversion %{expand:%(IFS=.; a="%{version}"; printf "%d%02d%02d%02d" $a)} # bug437293 %ifarch ppc64 Obsoletes: sqlite-64bit @@ -63,12 +62,6 @@ directly to and from the database files on disk. SQLite can be used via the sqlite command line tool or via any application that supports the Qt database plug-ins. - - -Authors: --------- - D. Richard Hipp - %if %newscheme %package -n libsqlite3-0 @@ -91,12 +84,6 @@ directly to and from the database files on disk. SQLite can be used via the sqlite command line tool or via any application that supports the Qt database plug-ins. - - -Authors: --------- - D. Richard Hipp - %endif %package devel @@ -119,11 +106,18 @@ directly to and from the database files on disk. SQLite can be used via the sqlite command-line tool or via any application which supports the Qt database plug-ins. +%package tcl +License: Public Domain, Freeware +Group: Development/Libraries/Tcl +Summary: Tcl binding for SQLite +%description tcl +This package contains laguage bindings from the Tcl programming +language SQLite. -Authors: --------- - D. Richard Hipp +SQLite is a C library that implements an embeddable SQL database +engine. Programs that link with the SQLite library can have SQL +database access without running a separate RDBMS process. %prep %setup -q -n sqlite-autoconf-%tarversion @@ -132,14 +126,17 @@ Authors: export CFLAGS="-DSQLITE_ENABLE_COLUMN_METADATA -DSQLITE_USE_URI" %configure --disable-static make +cd tea +export CFLAGS=-I.. +export LDFLAGS=-L../.libs +%configure --with-tcl=%_libdir --with-system-sqlite %install make install DESTDIR=%buildroot rm %buildroot/%_libdir/*.la +cd tea +make install DESTDIR=%buildroot libdir=%tcl_archdir -%clean - rm -rf %buildroot -# %if %newscheme %post -n libsqlite3-0 -p /sbin/ldconfig @@ -170,4 +167,9 @@ rm %buildroot/%_libdir/*.la %_libdir/libsqlite*.so %_libdir/pkgconfig/sqlite3.pc +%files tcl +%defattr(-,root,root) +%tcl_archdir +%doc %_mandir/mann/* + %changelog