SHA256
1
0
forked from pool/sqlite3

trigger service run

OBS-URL: https://build.opensuse.org/package/show/server:database/sqlite3?expand=0&rev=51
This commit is contained in:
Stephan Kulow 2011-10-15 05:22:34 +00:00 committed by Git OBS Bridge
parent ca3d4348f3
commit b44b120b0a
4 changed files with 51 additions and 25 deletions

View File

@ -1,3 +0,0 @@
version https://git-lfs.github.com/spec/v1
oid sha256:7dcc36b25f7bcbe2938d0ea2baea5b706f0af93473d02a3f612d7ab39e386edf
size 1748837

View File

@ -0,0 +1,3 @@
version https://git-lfs.github.com/spec/v1
oid sha256:fd8c7f70db7e06b51196efccb937f2a657abc7b27ef61fe3a7fb8e72ac4dfa32
size 1776215

View File

@ -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

View File

@ -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 <drh@hwaci.com>
%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 <drh@hwaci.com>
%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 <drh@hwaci.com>
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