diff --git a/.sqlite.metadata b/.sqlite.metadata new file mode 100644 index 0000000..8817889 --- /dev/null +++ b/.sqlite.metadata @@ -0,0 +1,2 @@ +0b0a8676690b1e4d879643d065f771d4a1fa919f SOURCES/sqlite-src-3071700.zip +6b533b0a9a21eb2c2d1c9f278b8defbeb5a432a7 SOURCES/sqlite-doc-3071700.zip diff --git a/README.md b/README.md deleted file mode 100644 index 0e7897f..0000000 --- a/README.md +++ /dev/null @@ -1,5 +0,0 @@ -The master branch has no content - -Look at the c7 branch if you are working with CentOS-7, or the c4/c5/c6 branch for CentOS-4, 5 or 6 - -If you find this file in a distro specific branch, it means that no content has been checked in yet diff --git a/SOURCES/sqlite-3.6.23-lemon-system-template.patch b/SOURCES/sqlite-3.6.23-lemon-system-template.patch new file mode 100644 index 0000000..16db588 --- /dev/null +++ b/SOURCES/sqlite-3.6.23-lemon-system-template.patch @@ -0,0 +1,21 @@ +diff -up sqlite-3.6.23/tool/lemon.c.system-template sqlite-3.6.23/tool/lemon.c +--- sqlite-3.6.23/tool/lemon.c.system-template 2010-03-10 16:40:35.000000000 +0200 ++++ sqlite-3.6.23/tool/lemon.c 2010-03-10 16:40:39.000000000 +0200 +@@ -3106,6 +3106,8 @@ PRIVATE FILE *tplt_open(struct lemon *le + tpltname = buf; + }else if( access(templatename,004)==0 ){ + tpltname = templatename; ++ }else if( access("/usr/share/lemon/lempar.c", R_OK)==0){ ++ tpltname = "/usr/share/lemon/lempar.c"; + }else{ + tpltname = pathsearch(lemp->argv0,templatename,0); + } +@@ -3117,7 +3119,7 @@ PRIVATE FILE *tplt_open(struct lemon *le + } + in = fopen(tpltname,"rb"); + if( in==0 ){ +- fprintf(stderr,"Can't open the template file \"%s\".\n",templatename); ++ fprintf(stderr,"Can't open the template file \"%s\".\n",tpltname); + lemp->errorcnt++; + return 0; + } diff --git a/SOURCES/sqlite-3.7.10-pagecache-overflow-test.patch b/SOURCES/sqlite-3.7.10-pagecache-overflow-test.patch new file mode 100644 index 0000000..79405ab --- /dev/null +++ b/SOURCES/sqlite-3.7.10-pagecache-overflow-test.patch @@ -0,0 +1,17 @@ +diff -up sqlite-src-3071000/test/memsubsys1.test.testfail sqlite-src-3071000/test/memsubsys1.test +--- sqlite-src-3071000/test/memsubsys1.test.testfail 2012-03-07 18:05:32.916081341 +0200 ++++ sqlite-src-3071000/test/memsubsys1.test 2012-03-07 18:06:43.354841101 +0200 +@@ -122,9 +122,10 @@ build_test_db memsubsys1-3.1 {PRAGMA pag + do_test memsubsys1-3.1.3 { + set pg_used [lindex [sqlite3_status SQLITE_STATUS_PAGECACHE_USED 0] 2] + } 0 +-do_test memsubsys1-3.1.4 { +- set overflow [lindex [sqlite3_status SQLITE_STATUS_PAGECACHE_OVERFLOW 0] 2] +-} $max_pagecache ++# The exact value returned here depends on compile options and whatnot, *shrug* ++#do_test memsubsys1-3.1.4 { ++# set overflow [lindex [sqlite3_status SQLITE_STATUS_PAGECACHE_OVERFLOW 0] 2] ++#} $max_pagecache + do_test memsubsys1-3.1.5 { + set s_used [lindex [sqlite3_status SQLITE_STATUS_SCRATCH_USED 0] 2] + } 0 diff --git a/SOURCES/sqlite-3.7.15-no-malloc-usable-size.patch b/SOURCES/sqlite-3.7.15-no-malloc-usable-size.patch new file mode 100644 index 0000000..e949434 --- /dev/null +++ b/SOURCES/sqlite-3.7.15-no-malloc-usable-size.patch @@ -0,0 +1,24 @@ +diff -up sqlite-src-3071500/configure.ac.malloc-usable-size sqlite-src-3071500/configure.ac +--- sqlite-src-3071500/configure.ac.malloc-usable-size 2012-12-13 14:00:32.685869844 +0200 ++++ sqlite-src-3071500/configure.ac 2012-12-13 14:00:43.321830496 +0200 +@@ -127,7 +127,7 @@ AC_CHECK_HEADERS([sys/types.h stdlib.h s + ######### + # Figure out whether or not we have these functions + # +-AC_CHECK_FUNCS([usleep fdatasync localtime_r gmtime_r localtime_s utime malloc_usable_size]) ++AC_CHECK_FUNCS([usleep fdatasync localtime_r gmtime_r localtime_s utime]) + + ######### + # By default, we use the amalgamation (this may be changed below...) +diff -up sqlite-src-3071500/configure.malloc-usable-size sqlite-src-3071500/configure +--- sqlite-src-3071500/configure.malloc-usable-size 2012-12-13 14:00:28.552884276 +0200 ++++ sqlite-src-3071500/configure 2012-12-13 14:00:54.720788024 +0200 +@@ -12147,7 +12147,7 @@ done + + + +-for ac_func in usleep fdatasync localtime_r gmtime_r localtime_s utime malloc_usable_size ++for ac_func in usleep fdatasync localtime_r gmtime_r localtime_s utime + do + as_ac_var=`$as_echo "ac_cv_func_$ac_func" | $as_tr_sh` + { $as_echo "$as_me:$LINENO: checking for $ac_func" >&5 diff --git a/SOURCES/sqlite-3.7.16-man-missing-options.patch b/SOURCES/sqlite-3.7.16-man-missing-options.patch new file mode 100644 index 0000000..62e8bb3 --- /dev/null +++ b/SOURCES/sqlite-3.7.16-man-missing-options.patch @@ -0,0 +1,59 @@ +diff -up sqlite-src-3071602/sqlite3.1.broken sqlite-src-3071602/sqlite3.1 +--- sqlite-src-3071602/sqlite3.1.broken 2013-05-16 14:30:05.985387506 +0200 ++++ sqlite-src-3071602/sqlite3.1 2013-05-16 14:43:37.434861289 +0200 +@@ -147,7 +147,7 @@ sqlite> + .B sqlite3 + has the following options: + .TP +-.BI \-init\ file ++.BI \-init\ file + Read and execute commands from + .I file + , which can contain a mix of SQL statements and meta-commands. +@@ -158,11 +158,28 @@ Print commands before execution. + .B \-[no]header + Turn headers on or off. + .TP ++.B \-bail ++Stop after hitting an error. ++.TP ++.B \-interactive ++Force interactive I/O. ++.TP ++.B \-batch ++Force batch I/O. ++.TP + .B \-column + Query results will be displayed in a table like form, using + whitespace characters to separate the columns and align the + output. + .TP ++.BI \-cmd\ command ++Run ++.I command ++before reading stdin. ++.TP ++.B \-csv ++Set output mode to CSV (comma separated values). ++.TP + .B \-html + Query results will be output as simple HTML tables. + .TP +@@ -182,9 +199,17 @@ Set output field separator. Default is + Set string used to represent NULL values. Default is '' + (empty string). + .TP ++.B \-stats ++Print memory stats before each finalize. ++.TP + .B \-version + Show SQLite version. + .TP ++.BI \-vfs\ name ++Use ++.I name ++as the default VFS. ++.TP + .B \-help + Show help on options and exit. + diff --git a/SOURCES/sqlite-3.7.7.1-stupid-openfiles-test.patch b/SOURCES/sqlite-3.7.7.1-stupid-openfiles-test.patch new file mode 100644 index 0000000..ec6d3f7 --- /dev/null +++ b/SOURCES/sqlite-3.7.7.1-stupid-openfiles-test.patch @@ -0,0 +1,36 @@ +diff -up sqlite-src-3070701/test/oserror.test.openfiles sqlite-src-3070701/test/oserror.test +--- sqlite-src-3070701/test/oserror.test.openfiles 2011-07-13 09:56:46.025857411 +0300 ++++ sqlite-src-3070701/test/oserror.test 2011-07-13 09:57:11.634759798 +0300 +@@ -51,19 +51,19 @@ proc do_re_test {tn script expression} { + # a call to getcwd() may fail if there are no free file descriptors. So + # an error may be reported for either open() or getcwd() here. + # +-puts "Possible valgrind error about invalid file descriptor follows:" +-do_test 1.1.1 { +- set ::log [list] +- list [catch { +- for {set i 0} {$i < 2000} {incr i} { sqlite3 dbh_$i test.db -readonly 1 } +- } msg] $msg +-} {1 {unable to open database file}} +-do_test 1.1.2 { +- catch { for {set i 0} {$i < 2000} {incr i} { dbh_$i close } } +-} {1} +-do_re_test 1.1.3 { +- lindex $::log 0 +-} {^os_unix.c:\d+: \(\d+\) (open|getcwd)\(.*test.db\) - } ++#puts "Possible valgrind error about invalid file descriptor follows:" ++#do_test 1.1.1 { ++# set ::log [list] ++# list [catch { ++# for {set i 0} {$i < 2000} {incr i} { sqlite3 dbh_$i test.db -readonly 1 } ++# } msg] $msg ++#} {1 {unable to open database file}} ++#do_test 1.1.2 { ++# catch { for {set i 0} {$i < 2000} {incr i} { dbh_$i close } } ++#} {1} ++#do_re_test 1.1.3 { ++# lindex $::log 0 ++#} {^os_unix.c:\d+: \(\d+\) (open|getcwd)\(.*test.db\) - } + + + # Test a failure in open() due to the path being a directory. diff --git a/SPECS/sqlite.spec b/SPECS/sqlite.spec new file mode 100644 index 0000000..d2dd0b7 --- /dev/null +++ b/SPECS/sqlite.spec @@ -0,0 +1,522 @@ +# bcond default logic is nicely backwards... +%bcond_without tcl +%bcond_with static +%bcond_without check + +%define realver 3071700 +%define docver 3071700 +%define rpmver 3.7.17 + +Summary: Library that implements an embeddable SQL database engine +Name: sqlite +Version: %{rpmver} +Release: 1%{?dist} +License: Public Domain +Group: Applications/Databases +URL: http://www.sqlite.org/ +Source0: http://www.sqlite.org/sqlite-src-%{realver}.zip +Source1: http://www.sqlite.org/sqlite-doc-%{docver}.zip +# Support a system-wide lemon template +Patch1: sqlite-3.6.23-lemon-system-template.patch +# Shut up stupid tests depending on system settings of allowed open fd's +Patch2: sqlite-3.7.7.1-stupid-openfiles-test.patch +# Shut up pagecache overflow test whose expected result depends on compile +# options and whatnot. Dunno why this started failing in 3.7.10 but +# doesn't seem particularly critical... +Patch3: sqlite-3.7.10-pagecache-overflow-test.patch +# sqlite >= 3.7.10 is buggy if malloc_usable_size() is detected, disable it: +# https://bugzilla.redhat.com/show_bug.cgi?id=801981 +# http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=665363 +Patch4: sqlite-3.7.15-no-malloc-usable-size.patch +# Man page completion +Patch5: sqlite-3.7.16-man-missing-options.patch +BuildRequires: ncurses-devel readline-devel glibc-devel +BuildRequires: autoconf +%if %{with tcl} +BuildRequires: /usr/bin/tclsh +BuildRequires: tcl-devel +%{!?tcl_version: %global tcl_version 8.5} +%{!?tcl_sitearch: %global tcl_sitearch %{_libdir}/tcl%{tcl_version}} +%endif +BuildRoot: %{_tmppath}/%{name}-root + +%description +SQLite is a C library that implements an SQL database engine. A large +subset of SQL92 is supported. A complete database is stored in a +single disk file. The API is designed for convenience and ease of use. +Applications that link against SQLite can enjoy the power and +flexibility of an SQL database without the administrative hassles of +supporting a separate database server. Version 2 and version 3 binaries +are named to permit each to be installed on a single host + +%package devel +Summary: Development tools for the sqlite3 embeddable SQL database engine +Group: Development/Libraries +Requires: %{name} = %{version}-%{release} +Requires: pkgconfig + +%description devel +This package contains the header files and development documentation +for %{name}. If you like to develop programs using %{name}, you will need +to install %{name}-devel. + +%package doc +Summary: Documentation for sqlite +Group: Documentation +BuildArch: noarch + +%description doc +This package contains most of the static HTML files that comprise the +www.sqlite.org website, including all of the SQL Syntax and the +C/C++ interface specs and other miscellaneous documentation. + +%package -n lemon +Summary: A parser generator +Group: Development/Tools + +%description -n lemon +Lemon is an LALR(1) parser generator for C or C++. It does the same +job as bison and yacc. But lemon is not another bison or yacc +clone. It uses a different grammar syntax which is designed to reduce +the number of coding errors. Lemon also uses a more sophisticated +parsing engine that is faster than yacc and bison and which is both +reentrant and thread-safe. Furthermore, Lemon implements features +that can be used to eliminate resource leaks, making is suitable for +use in long-running programs such as graphical user interfaces or +embedded controllers. + +%if %{with tcl} +%package tcl +Summary: Tcl module for the sqlite3 embeddable SQL database engine +Group: Development/Languages +Requires: %{name} = %{version}-%{release} +Requires: tcl(abi) = %{tcl_version} + +%description tcl +This package contains the tcl modules for %{name}. +%endif + +%prep +%setup -q -a1 -n %{name}-src-%{realver} +%patch1 -p1 -b .lemon-system-template +%patch2 -p1 -b .stupid-openfiles-test +%patch3 -p1 -b .pagecache-overflow-test +%patch4 -p1 -b .no-malloc-usable-size +%patch5 -p1 -b .man-missing-options + +# Remove cgi-script erroneously included in sqlite-doc-3070500 +rm -f %{name}-doc-%{realver}/search + +autoconf # Rerun with new autoconf to add support for aarm64 + +%build +export CFLAGS="$RPM_OPT_FLAGS -DSQLITE_ENABLE_COLUMN_METADATA=1 -DSQLITE_DISABLE_DIRSYNC=1 -DSQLITE_ENABLE_FTS3=3 -DSQLITE_ENABLE_RTREE=1 -DSQLITE_SECURE_DELETE=1 -DSQLITE_ENABLE_UNLOCK_NOTIFY=1 -Wall -fno-strict-aliasing" +%configure %{!?with_tcl:--disable-tcl} \ + --enable-threadsafe \ + --enable-threads-override-locks \ + --enable-load-extension \ + %{?with_tcl:TCLLIBDIR=%{tcl_sitearch}/sqlite3} + +# rpath removal +sed -i 's|^hardcode_libdir_flag_spec=.*|hardcode_libdir_flag_spec=""|g' libtool +sed -i 's|^runpath_var=LD_RUN_PATH|runpath_var=DIE_RPATH_DIE|g' libtool + +make %{?_smp_mflags} + +%install +rm -rf $RPM_BUILD_ROOT + +make DESTDIR=${RPM_BUILD_ROOT} install + +install -D -m0644 sqlite3.1 $RPM_BUILD_ROOT/%{_mandir}/man1/sqlite3.1 +install -D -m0755 lemon $RPM_BUILD_ROOT/%{_bindir}/lemon +install -D -m0644 tool/lempar.c $RPM_BUILD_ROOT/%{_datadir}/lemon/lempar.c + +%if %{with tcl} +# fix up permissions to enable dep extraction +chmod 0755 ${RPM_BUILD_ROOT}/%{tcl_sitearch}/sqlite3/*.so +%endif + +%if ! %{with static} +rm -f $RPM_BUILD_ROOT/%{_libdir}/*.{la,a} +%endif + +%if %{with check} +%check +# XXX shell tests are broken due to loading system libsqlite3, work around... +export LD_LIBRARY_PATH=`pwd`/.libs +export MALLOC_CHECK_=3 +%ifarch s390 s390x ppc ppc64 %{sparc} %{arm} +make test || : +%else +make test +%endif +%endif + +%clean +rm -rf $RPM_BUILD_ROOT + +%post -p /sbin/ldconfig + +%postun -p /sbin/ldconfig + +%files +%defattr(-, root, root) +%doc README +%{_bindir}/sqlite3 +%{_libdir}/*.so.* +%{_mandir}/man?/* + +%files devel +%defattr(-, root, root) +%{_includedir}/*.h +%{_libdir}/*.so +%{_libdir}/pkgconfig/*.pc +%if %{with static} +%{_libdir}/*.a +%exclude %{_libdir}/*.la +%endif + +%files doc +%defattr(-, root, root) +%doc %{name}-doc-%{docver}/* + +%files -n lemon +%defattr(-, root, root) +%{_bindir}/lemon +%{_datadir}/lemon + +%if %{with tcl} +%files tcl +%defattr(-, root, root) +%{tcl_sitearch}/sqlite3 +%endif + +%changelog +* Wed May 22 2013 Jan Stanek - 3.7.17-1 +- Update to 3.7.17 (http://www.sqlite.org/releaselog/3_7_17.html) + +* Thu May 16 2013 Jan Stanek - 3.7.16.2-2 +- Added missing options to man page (#948862) + +* Mon Apr 29 2013 Jan Stanek - 3.7.16.2-1 +- update to 3.7.16.2 (http://www.sqlite.org/releaselog/3_7_16_2.html) +- add support for aarch64 (rerunning autoconf) (#926568) + +* Sun Mar 31 2013 Panu Matilainen - 3.7.16.1-1 +- update to 3.7.16.1 (https://www.sqlite.org/releaselog/3_7_16_1.html) + +* Wed Mar 20 2013 Panu Matilainen - 3.7.16-1 +- update to 3.7.16 (http://www.sqlite.org/releaselog/3_7_16.html) + +* Fri Feb 15 2013 Fedora Release Engineering - 3.7.15.2-2 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_19_Mass_Rebuild + +* Thu Jan 10 2013 Panu Matilainen - 3.7.15.2-1 +- update to 3.7.15.2 (http://www.sqlite.org/releaselog/3_7_15_2.html) + +* Thu Dec 13 2012 Panu Matilainen - 3.7.15-1 +- update to 3.7.15 (http://www.sqlite.org/releaselog/3_7_15.html) +- fix an old incorrect date in spec changelog + +* Tue Nov 06 2012 Panu Matilainen - 3.7.14.1-1 +- update to 3.7.14.1 (http://www.sqlite.org/releaselog/3_7_14_1.html) + +* Wed Oct 03 2012 Panu Matilainen - 3.7.14-1 +- update to 3.7.14 (http://www.sqlite.org/releaselog/3_7_14.html) + +* Sat Jul 21 2012 Fedora Release Engineering - 3.7.13-2 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_18_Mass_Rebuild + +* Mon Jun 25 2012 Panu Matilainen - 3.7.13-1 +- update to 3.7.13 (http://www.sqlite.org/releaselog/3_7_13.html) +- drop no longer needed savepoint relase patch + +* Fri Jun 01 2012 Panu Matilainen - 3.7.11-3 +- don't abort pending queries on release of nested savepoint (#821642) + +* Wed Apr 25 2012 Panu Matilainen - 3.7.11-2 +- run test-suite with MALLOC_CHECK_=3 +- disable buggy malloc_usable_size code (#801981) + +* Mon Mar 26 2012 Panu Matilainen - 3.7.11-1 +- update to 3.7.11 (http://www.sqlite.org/releaselog/3_7_11.html) + +* Wed Mar 07 2012 Panu Matilainen - 3.7.10-1 +- update to 3.7.10 (http://www.sqlite.org/releaselog/3_7_10.html) + +* Sat Jan 14 2012 Fedora Release Engineering - 3.7.9-2 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_17_Mass_Rebuild + +* Tue Nov 22 2011 Panu Matilainen - 3.7.9-1 +- update to 3.7.9 (http://www.sqlite.org/releaselog/3_7_9.html) + +* Fri Oct 28 2011 Panu Matilainen - 3.7.8-1 +- update to 3.7.8 (http://www.sqlite.org/releaselog/3_7_8.html) + +* Wed Jul 13 2011 Panu Matilainen - 3.7.7.1-1 +- update to 3.7.7.1 (http://www.sqlite.org/releaselog/3_7_7_1.html) +- autoconf no longer needed for build, libdl check finally upstreamed + +* Wed May 25 2011 Panu Matilainen - 3.7.6.3-1 +- update to 3.7.6.3 (http://www.sqlite.org/releaselog/3_7_6_3.html) + +* Sat May 21 2011 Peter Robinson - 3.7.6.2-3 +- add arm to the exclude from tests list + +* Fri Apr 29 2011 Panu Matilainen - 3.7.6.2-2 +- comment out stupid tests causing very bogus build failure on koji + +* Thu Apr 21 2011 Panu Matilainen - 3.7.6.2-1 +- update to 3.7.6.2 (http://www.sqlite.org/releaselog/3_7_6_2.html) + +* Fri Feb 25 2011 Dennis Gilmore - 3.7.5-4 +- build tests on sparc expecting failures same as the other big endian arches + +* Wed Feb 09 2011 Fedora Release Engineering - 3.7.5-3 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_15_Mass_Rebuild + +* Wed Feb 2 2011 Panu Matilainen - 3.7.5-2 +- unwanted cgi-script in docs creating broken dependencies, remove it +- make doc sub-package noarch + +* Tue Feb 1 2011 Panu Matilainen - 3.7.5-1 +- update to 3.7.5 (http://www.sqlite.org/releaselog/3_7_5.html) + +* Thu Dec 9 2010 Panu Matilainen - 3.7.4-1 +- update to 3.7.4 (http://www.sqlite.org/releaselog/3_7_4.html) +- deal with upstream source naming, versioning and format changing +- fixup wal2-test expections wrt SQLITE_DISABLE_DIRSYNC use + +* Fri Nov 5 2010 Dan Horák - 3.7.3-2 +- expect test failures also on s390x + +* Mon Nov 1 2010 Panu Matilainen - 3.7.3-1 +- update to 3.7.3 (http://www.sqlite.org/releaselog/3_7_3.html) + +* Thu Sep 2 2010 Tom "spot" Callaway - 3.7.0.1-2 +- enable SQLITE_SECURE_DELETE, SQLITE_ENABLE_UNLOCK_NOTIFY for firefox 4 + +* Fri Aug 13 2010 Panu Matilainen - 3.7.0.1-1 +- update to 3.7.0.1 (http://www.sqlite.org/releaselog/3_7_0_1.html) + +* Sat Jul 3 2010 Dan Horák - 3.6.23.1-2 +- some tests are failing on s390 and ppc/ppc64 so don't fail the whole build there + +* Mon Apr 19 2010 Panu Matilainen - 3.6.23.1-1 +- update to 3.6.23.1 (http://www.sqlite.org/releaselog/3_6_23_1.html) + +* Wed Mar 10 2010 Panu Matilainen - 3.6.23-1 +- update to 3.6.23 (http://www.sqlite.org/releaselog/3_6_23.html) +- drop the lemon sprintf patch, upstream doesn't want it +- make test-suite errors fail build finally + +* Mon Jan 18 2010 Panu Matilainen - 3.6.22-1 +- update to 3.6.22 (http://www.sqlite.org/releaselog/3_6_22.html) + +* Tue Dec 08 2009 Panu Matilainen - 3.6.21-1 +- update to 3.6.21 (http://www.sqlite.org/releaselog/3_6_21.html) + +* Tue Nov 17 2009 Panu Matilainen - 3.6.20-1 +- update to 3.6.20 (http://www.sqlite.org/releaselog/3_6_20.html) + +* Tue Oct 06 2009 Panu Matilainen - 3.6.18-1 +- update to 3.6.18 (http://www.sqlite.org/releaselog/3_6_18.html) +- drop no longer needed test-disabler patches + +* Fri Aug 21 2009 Panu Matilainen - 3.6.17-1 +- update to 3.6.17 (http://www.sqlite.org/releaselog/3_6_17.html) +- disable to failing tests until upstream fixes + +* Sun Jul 26 2009 Fedora Release Engineering - 3.6.14.2-2 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + +* Fri Jun 12 2009 Panu Matilainen - 3.6.14.2-1 +- update to 3.6.14.2 (#505229) + +* Mon May 18 2009 Panu Matilainen - 3.6.14-2 +- disable rpath +- add -doc subpackage instead of patching out reference to it + +* Thu May 14 2009 Panu Matilainen - 3.6.14-1 +- update to 3.6.14 (http://www.sqlite.org/releaselog/3_6_14.html) +- merge-review cosmetics (#226429) + - drop ancient sqlite3 obsoletes + - fix tab vs space whitespace issues + - remove commas from summaries +- fixup io-test fsync expectations wrt SQLITE_DISABLE_DIRSYNC + +* Wed Apr 15 2009 Panu Matilainen - 3.6.13-1 +- update to 3.6.13 + +* Thu Apr 09 2009 Dennis Gilmore - 3.6.12-3 +- apply upstream patch for memory alignment issue (#494906) + +* Tue Apr 07 2009 Panu Matilainen - 3.6.12-2 +- disable strict aliasing to work around brokenness on 3.6.12 (#494266) +- run test-suite on build but let it fail for now + +* Fri Apr 03 2009 Panu Matilainen - 3.6.12-1 +- update to 3.6.12 (#492662) +- remove reference to non-existent sqlite-doc from manual (#488883) + +* Wed Feb 25 2009 Fedora Release Engineering - 3.6.10-4 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild + +* Wed Feb 04 2009 Panu Matilainen - 3.6.10-3 +- enable RTREE and FTS3 extensions (#481417) + +* Thu Jan 22 2009 Panu Matilainen - 3.6.10-2 +- upstream fix yum breakage caused by new keywords (#481189) + +* Thu Jan 22 2009 Panu Matilainen - 3.6.10-1 +- update to 3.6.10 + +* Wed Dec 31 2008 Panu Matilainen - 3.6.7-1 +- update to 3.6.7 +- avoid lemon ending up in main sqlite package too + +* Fri Dec 05 2008 Panu Matilainen - 3.6.6.2-4 +- add lemon subpackage + +* Thu Dec 4 2008 Matthias Clasen - 3.6.6.2-3 +- Rebuild for pkg-config provides + +* Tue Dec 02 2008 Panu Matilainen - 3.6.6.2-2 +- require tcl(abi) in sqlite-tcl subpackage (#474034) +- move tcl extensions to arch-specific location +- enable dependency extraction on the tcl dso +- require pkgconfig in sqlite-devel + +* Sat Nov 29 2008 Panu Matilainen - 3.6.6.2-1 +- update to 3.6.6.2 + +* Sat Nov 08 2008 Panu Matilainen - 3.6.4-1 +- update to 3.6.4 +- drop patches already upstream + +* Mon Sep 22 2008 Panu Matilainen - 3.5.9-2 +- Remove references to temporary registers from cache on release (#463061) +- Enable loading of external extensions (#457433) + +* Tue Jun 17 2008 Stepan Kasal - 3.5.9-1 +- update to 3.5.9 + +* Wed Apr 23 2008 Panu Matilainen - 3.5.8-1 +- update to 3.5.8 +- provide full version in pkg-config (#443692) + +* Mon Mar 31 2008 Panu Matilainen - 3.5.6-2 +- remove reference to static libs from -devel description (#439376) + +* Tue Feb 12 2008 Panu Matilainen - 3.5.6-1 +- update to 3.5.6 +- also fixes #432447 + +* Fri Jan 25 2008 Panu Matilainen - 3.5.4-3 +- enable column metadata API (#430258) + +* Tue Jan 08 2008 Panu Matilainen - 3.5.4-2 +- avoid packaging CVS directory as documentation (#427755) + +* Fri Dec 21 2007 Panu Matilainen - 3.5.4-1 +- Update to 3.5.4 (#413801) + +* Fri Sep 28 2007 Panu Matilainen - 3.4.2-3 +- Add another build conditional for enabling %%check + +* Fri Sep 28 2007 Panu Matilainen - 3.4.2-2 +- Use bconds for the spec build conditionals +- Enable -tcl subpackage again (#309041) + +* Wed Aug 15 2007 Paul Nasrat - 3.4.2-1 +- Update to 3.4.2 + +* Sat Jul 21 2007 Paul Nasrat - 3.4.1-1 +- Update to 3.4.1 + +* Sun Jun 24 2007 Paul Nasrat - 3.4.0-2 +- Disable load for now (#245486) + +* Tue Jun 19 2007 Paul Nasrat - 3.4.0-1 +- Update to 3.4.0 + +* Fri Jun 01 2007 Paul Nasrat - 3.3.17-2 +- Enable load +- Build fts1 and fts2 +- Don't sync on dirs (#237427) + +* Tue May 29 2007 Paul Nasrat - 3.3.17-1 +- Update to 3.3.17 + +* Mon Mar 19 2007 Paul Nasrat - 3.3.13-1 +- Update to 3.3.13 + +* Fri Aug 11 2006 Paul Nasrat - 3.3.6-2 +- Fix conditional typo (patch from Gareth Armstrong) + +* Wed Jul 12 2006 Jesse Keating - 3.3.6-1.1 +- rebuild + +* Mon Jun 26 2006 Paul Nasrat - 3.3.6-1 +- Update to 3.3.6 +- Fix typo (#189647) +- Enable threading fixes (#181298) +- Conditionalize static library + +* Mon Apr 17 2006 Paul Nasrat - 3.3.5-1 +- Update to 3.3.5 + +* Fri Feb 10 2006 Jesse Keating - 3.3.3-1.2 +- bump again for double-long bug on ppc(64) + +* Tue Feb 07 2006 Jesse Keating - 3.3.3-1.1 +- rebuilt for new gcc4.1 snapshot and glibc changes + +* Tue Jan 31 2006 Christopher Aillon - 3.3.3-1 +- Update to 3.3.3 + +* Tue Jan 31 2006 Christopher Aillon - 3.3.2-1 +- Update to 3.3.2 + +* Tue Jan 24 2006 Paul Nasrat - 3.2.8-1 +- Add --enable-threadsafe (Nicholas Miell) +- Update to 3.2.8 + +* Fri Dec 09 2005 Jesse Keating +- rebuilt + +* Tue Oct 4 2005 Jeremy Katz - 3.2.7-2 +- no more static file or libtool archive (#169874) + +* Wed Sep 28 2005 Florian La Roche +- Upgrade to 3.2.7 release. + +* Thu Sep 22 2005 Florian La Roche +- Upgrade to 3.2.6 release. + +* Sun Sep 11 2005 Florian La Roche +- Upgrade to 3.2.5 release. + +* Fri Jul 8 2005 Roland McGrath - 3.2.2-1 +- Upgrade to 3.2.2 release. + +* Sat Apr 9 2005 Warren Togami - 3.1.2-3 +- fix buildreqs (#154298) + +* Mon Apr 4 2005 Jeremy Katz - 3.1.2-2 +- disable tcl subpackage + +* Wed Mar 9 2005 Jeff Johnson 3.1.2-1 +- rename to "sqlite" from "sqlite3" (#149719, #150012). + +* Wed Feb 16 2005 Jeff Johnson 3.1.2-1 +- upgrade to 3.1.2. +- add sqlite3-tcl sub-package. + +* Sat Feb 5 2005 Jeff Johnson 3.0.8-3 +- repackage for fc4. + +* Mon Jan 17 2005 R P Herrold 3.0.8-2orc +- fix a man page nameing conflict when co-installed with sqlite-2, as + is permissible