bfaf7a
# bcond default logic is nicely backwards...
bfaf7a
%bcond_without tcl
bfaf7a
%bcond_with static
bfaf7a
%bcond_without check
bfaf7a
bfaf7a
%define realver 3071700
bfaf7a
%define docver 3071700
bfaf7a
%define rpmver 3.7.17
bfaf7a
bfaf7a
Summary: Library that implements an embeddable SQL database engine
bfaf7a
Name: sqlite
bfaf7a
Version: %{rpmver}
bfaf7a
Release: 8%{?dist}
bfaf7a
License: Public Domain
bfaf7a
Group: Applications/Databases
bfaf7a
URL: http://www.sqlite.org/
bfaf7a
Source0: http://www.sqlite.org/sqlite-src-%{realver}.zip
bfaf7a
Source1: http://www.sqlite.org/sqlite-doc-%{docver}.zip
bfaf7a
# Support a system-wide lemon template
bfaf7a
Patch1: sqlite-3.6.23-lemon-system-template.patch
bfaf7a
# Shut up stupid tests depending on system settings of allowed open fd's
bfaf7a
Patch2: sqlite-3.7.7.1-stupid-openfiles-test.patch
bfaf7a
# Shut up pagecache overflow test whose expected result depends on compile
bfaf7a
# options and whatnot. Dunno why this started failing in 3.7.10 but
bfaf7a
# doesn't seem particularly critical...
bfaf7a
Patch3: sqlite-3.7.10-pagecache-overflow-test.patch
bfaf7a
# sqlite >= 3.7.10 is buggy if malloc_usable_size() is detected, disable it:
bfaf7a
# https://bugzilla.redhat.com/show_bug.cgi?id=801981
bfaf7a
# http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=665363
bfaf7a
Patch4: sqlite-3.7.15-no-malloc-usable-size.patch
bfaf7a
# Man page completion
bfaf7a
Patch5: sqlite-3.7.16-man-missing-options.patch
bfaf7a
# Fix for test failure on aarch64
bfaf7a
Patch6: sqlite-3.7.17-real-cast.patch
bfaf7a
# Fix for 64k pages
bfaf7a
Patch7: sqlite-3.7.17-large-pages.patch
bfaf7a
# Fixes for CVE-2015-3415 CVE-2015-3414 CVE-2015-3416 sqlite: various flaws
bfaf7a
# https://bugzilla.redhat.com/show_bug.cgi?id=1244732
bfaf7a
Patch8:  sqlite-3.7.17-collation-sequence.patch
bfaf7a
Patch9:  sqlite-3.7.17-vdbe-free.patch
bfaf7a
Patch10: sqlite-3.7.14-printf-overflow.patch
bfaf7a
bfaf7a
BuildRequires: ncurses-devel readline-devel glibc-devel
bfaf7a
BuildRequires: autoconf
bfaf7a
%if %{with tcl}
bfaf7a
BuildRequires: /usr/bin/tclsh
bfaf7a
BuildRequires: tcl-devel
bfaf7a
%{!?tcl_version: %global tcl_version 8.5}
bfaf7a
%{!?tcl_sitearch: %global tcl_sitearch %{_libdir}/tcl%{tcl_version}}
bfaf7a
%endif
bfaf7a
BuildRoot: %{_tmppath}/%{name}-root
bfaf7a
bfaf7a
%description
bfaf7a
SQLite is a C library that implements an SQL database engine. A large
bfaf7a
subset of SQL92 is supported. A complete database is stored in a
bfaf7a
single disk file. The API is designed for convenience and ease of use.
bfaf7a
Applications that link against SQLite can enjoy the power and
bfaf7a
flexibility of an SQL database without the administrative hassles of
bfaf7a
supporting a separate database server.  Version 2 and version 3 binaries
bfaf7a
are named to permit each to be installed on a single host
bfaf7a
bfaf7a
%package devel
bfaf7a
Summary: Development tools for the sqlite3 embeddable SQL database engine
bfaf7a
Group: Development/Libraries
bfaf7a
Requires: %{name} = %{version}-%{release}
bfaf7a
Requires: pkgconfig
bfaf7a
bfaf7a
%description devel
bfaf7a
This package contains the header files and development documentation 
bfaf7a
for %{name}. If you like to develop programs using %{name}, you will need 
bfaf7a
to install %{name}-devel.
bfaf7a
bfaf7a
%package doc
bfaf7a
Summary: Documentation for sqlite
bfaf7a
Group: Documentation
bfaf7a
BuildArch: noarch
bfaf7a
bfaf7a
%description doc
bfaf7a
This package contains most of the static HTML files that comprise the
bfaf7a
www.sqlite.org website, including all of the SQL Syntax and the 
bfaf7a
C/C++ interface specs and other miscellaneous documentation.
bfaf7a
bfaf7a
%package -n lemon
bfaf7a
Summary: A parser generator
bfaf7a
Group: Development/Tools
bfaf7a
bfaf7a
%description -n lemon
bfaf7a
Lemon is an LALR(1) parser generator for C or C++. It does the same
bfaf7a
job as bison and yacc. But lemon is not another bison or yacc
bfaf7a
clone. It uses a different grammar syntax which is designed to reduce
bfaf7a
the number of coding errors. Lemon also uses a more sophisticated
bfaf7a
parsing engine that is faster than yacc and bison and which is both
bfaf7a
reentrant and thread-safe. Furthermore, Lemon implements features
bfaf7a
that can be used to eliminate resource leaks, making is suitable for
bfaf7a
use in long-running programs such as graphical user interfaces or
bfaf7a
embedded controllers.
bfaf7a
bfaf7a
%if %{with tcl}
bfaf7a
%package tcl
bfaf7a
Summary: Tcl module for the sqlite3 embeddable SQL database engine
bfaf7a
Group: Development/Languages
bfaf7a
Requires: %{name} = %{version}-%{release}
bfaf7a
Requires: tcl(abi) = %{tcl_version}
bfaf7a
bfaf7a
%description tcl
bfaf7a
This package contains the tcl modules for %{name}.
bfaf7a
%endif
bfaf7a
bfaf7a
%prep
bfaf7a
%setup -q -a1 -n %{name}-src-%{realver}
bfaf7a
%patch1 -p1 -b .lemon-system-template
bfaf7a
%patch2 -p1 -b .stupid-openfiles-test
bfaf7a
%patch3 -p1 -b .pagecache-overflow-test
bfaf7a
%patch4 -p1 -b .no-malloc-usable-size
bfaf7a
%patch5 -p1 -b .man-missing-options
bfaf7a
%patch6 -p1 -b .largest-integer
bfaf7a
%patch7 -p0 -b .large-pages
bfaf7a
%patch8 -p1 -b .collation
bfaf7a
%patch9 -p1 -b .vdbe-free
bfaf7a
%patch10 -p1 -b .printf-overflow
bfaf7a
bfaf7a
# Remove cgi-script erroneously included in sqlite-doc-3070500
bfaf7a
rm -f %{name}-doc-%{realver}/search
bfaf7a
bfaf7a
autoconf # Rerun with new autoconf to add support for aarm64
bfaf7a
bfaf7a
%build
bfaf7a
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"
bfaf7a
%configure %{!?with_tcl:--disable-tcl} \
bfaf7a
           --enable-threadsafe \
bfaf7a
           --enable-threads-override-locks \
bfaf7a
           --enable-load-extension \
bfaf7a
           %{?with_tcl:TCLLIBDIR=%{tcl_sitearch}/sqlite3}
bfaf7a
bfaf7a
# rpath removal
bfaf7a
sed -i 's|^hardcode_libdir_flag_spec=.*|hardcode_libdir_flag_spec=""|g' libtool
bfaf7a
sed -i 's|^runpath_var=LD_RUN_PATH|runpath_var=DIE_RPATH_DIE|g' libtool
bfaf7a
bfaf7a
make %{?_smp_mflags}
bfaf7a
bfaf7a
%install
bfaf7a
rm -rf $RPM_BUILD_ROOT
bfaf7a
bfaf7a
make DESTDIR=${RPM_BUILD_ROOT} install
bfaf7a
bfaf7a
install -D -m0644 sqlite3.1 $RPM_BUILD_ROOT/%{_mandir}/man1/sqlite3.1
bfaf7a
install -D -m0755 lemon $RPM_BUILD_ROOT/%{_bindir}/lemon
bfaf7a
install -D -m0644 tool/lempar.c $RPM_BUILD_ROOT/%{_datadir}/lemon/lempar.c
bfaf7a
bfaf7a
%if %{with tcl}
bfaf7a
# fix up permissions to enable dep extraction
bfaf7a
chmod 0755 ${RPM_BUILD_ROOT}/%{tcl_sitearch}/sqlite3/*.so
bfaf7a
%endif
bfaf7a
bfaf7a
%if ! %{with static}
bfaf7a
rm -f $RPM_BUILD_ROOT/%{_libdir}/*.{la,a}
bfaf7a
%endif
bfaf7a
bfaf7a
%if %{with check}
bfaf7a
%check
bfaf7a
# XXX shell tests are broken due to loading system libsqlite3, work around...
bfaf7a
export LD_LIBRARY_PATH=`pwd`/.libs
bfaf7a
export MALLOC_CHECK_=3
bfaf7a
%ifarch s390 s390x ppc ppc64 %{sparc} %{arm}
bfaf7a
make test || :
bfaf7a
%else
bfaf7a
make test
bfaf7a
%endif
bfaf7a
%endif
bfaf7a
bfaf7a
%clean
bfaf7a
rm -rf $RPM_BUILD_ROOT
bfaf7a
bfaf7a
%post -p /sbin/ldconfig
bfaf7a
bfaf7a
%postun -p /sbin/ldconfig
bfaf7a
bfaf7a
%files
bfaf7a
%defattr(-, root, root)
bfaf7a
%doc README
bfaf7a
%{_bindir}/sqlite3
bfaf7a
%{_libdir}/*.so.*
bfaf7a
%{_mandir}/man?/*
bfaf7a
bfaf7a
%files devel
bfaf7a
%defattr(-, root, root)
bfaf7a
%{_includedir}/*.h
bfaf7a
%{_libdir}/*.so
bfaf7a
%{_libdir}/pkgconfig/*.pc
bfaf7a
%if %{with static}
bfaf7a
%{_libdir}/*.a
bfaf7a
%exclude %{_libdir}/*.la
bfaf7a
%endif
bfaf7a
bfaf7a
%files doc
bfaf7a
%defattr(-, root, root)
bfaf7a
%doc %{name}-doc-%{docver}/*
bfaf7a
bfaf7a
%files -n lemon
bfaf7a
%defattr(-, root, root)
bfaf7a
%{_bindir}/lemon
bfaf7a
%{_datadir}/lemon
bfaf7a
bfaf7a
%if %{with tcl}
bfaf7a
%files tcl
bfaf7a
%defattr(-, root, root)
bfaf7a
%{tcl_sitearch}/sqlite3
bfaf7a
%endif
bfaf7a
bfaf7a
%changelog
bfaf7a
* Thu Jul 23 2015 Jan Stanek <jstanek@redhat.com> 3.7.17-8
bfaf7a
- Fixes for CVE-2015-3415 CVE-2015-3414 CVE-2015-3416
bfaf7a
  Resolves: rhbz#1244732
bfaf7a
bfaf7a
* Fri May  8 2015 Peter Robinson <pbrobinson@redhat.com> 3.7.17-7
bfaf7a
- Release bump
bfaf7a
bfaf7a
* Tue Oct 21 2014 Dan Horák <dhorak@redhat.com> - 3.7.17-6
bfaf7a
- Release bump for ppc64le
bfaf7a
bfaf7a
* Tue Aug 19 2014 Jan Stanek <jstanek@redhat.com> - 3.7.17-5
bfaf7a
- Release bump
bfaf7a
bfaf7a
* Thu Jul 10 2014 Yaakov Selkowitz <yselkowi@redhat.com> - 3.7.17-4.1
bfaf7a
- Backport 64k page fix from latest upstream (#1118151)
bfaf7a
bfaf7a
* Fri Jan 24 2014 Daniel Mach <dmach@redhat.com> - 3.7.17-4
bfaf7a
- Mass rebuild 2014-01-24
bfaf7a
bfaf7a
* Fri Dec 27 2013 Daniel Mach <dmach@redhat.com> - 3.7.17-3
bfaf7a
- Mass rebuild 2013-12-27
bfaf7a
bfaf7a
* Thu Dec 05 2013 Jan Stanek <jstanek@redhat.com> - 3.7.17-2
bfaf7a
- Backported CAST fix from latest upstream
bfaf7a
bfaf7a
* Wed May 22 2013 Jan Stanek <jstanek@redhat.com> - 3.7.17-1
bfaf7a
- Update to 3.7.17 (http://www.sqlite.org/releaselog/3_7_17.html)
bfaf7a
bfaf7a
* Thu May 16 2013 Jan Stanek <jstanek@redhat.com> - 3.7.16.2-2
bfaf7a
- Added missing options to man page (#948862)
bfaf7a
bfaf7a
* Mon Apr 29 2013 Jan Stanek <jstanek@redhat.com> - 3.7.16.2-1
bfaf7a
- update to 3.7.16.2 (http://www.sqlite.org/releaselog/3_7_16_2.html)
bfaf7a
- add support for aarch64 (rerunning autoconf) (#926568)
bfaf7a
bfaf7a
* Sun Mar 31 2013 Panu Matilainen <pmatilai@redhat.com> - 3.7.16.1-1
bfaf7a
- update to 3.7.16.1 (https://www.sqlite.org/releaselog/3_7_16_1.html)
bfaf7a
bfaf7a
* Wed Mar 20 2013 Panu Matilainen <pmatilai@redhat.com> - 3.7.16-1
bfaf7a
- update to 3.7.16 (http://www.sqlite.org/releaselog/3_7_16.html)
bfaf7a
bfaf7a
* Fri Feb 15 2013 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 3.7.15.2-2
bfaf7a
- Rebuilt for https://fedoraproject.org/wiki/Fedora_19_Mass_Rebuild
bfaf7a
bfaf7a
* Thu Jan 10 2013 Panu Matilainen <pmatilai@redhat.com> - 3.7.15.2-1
bfaf7a
- update to 3.7.15.2 (http://www.sqlite.org/releaselog/3_7_15_2.html)
bfaf7a
bfaf7a
* Thu Dec 13 2012 Panu Matilainen <pmatilai@redhat.com> - 3.7.15-1
bfaf7a
- update to 3.7.15 (http://www.sqlite.org/releaselog/3_7_15.html)
bfaf7a
- fix an old incorrect date in spec changelog
bfaf7a
bfaf7a
* Tue Nov 06 2012 Panu Matilainen <pmatilai@redhat.com> - 3.7.14.1-1
bfaf7a
- update to 3.7.14.1 (http://www.sqlite.org/releaselog/3_7_14_1.html)
bfaf7a
bfaf7a
* Wed Oct 03 2012 Panu Matilainen <pmatilai@redhat.com> - 3.7.14-1
bfaf7a
- update to 3.7.14 (http://www.sqlite.org/releaselog/3_7_14.html)
bfaf7a
bfaf7a
* Sat Jul 21 2012 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 3.7.13-2
bfaf7a
- Rebuilt for https://fedoraproject.org/wiki/Fedora_18_Mass_Rebuild
bfaf7a
bfaf7a
* Mon Jun 25 2012 Panu Matilainen <pmatilai@redhat.com> - 3.7.13-1
bfaf7a
- update to 3.7.13 (http://www.sqlite.org/releaselog/3_7_13.html)
bfaf7a
- drop no longer needed savepoint relase patch
bfaf7a
bfaf7a
* Fri Jun 01 2012 Panu Matilainen <pmatilai@redhat.com> - 3.7.11-3
bfaf7a
- don't abort pending queries on release of nested savepoint (#821642)
bfaf7a
bfaf7a
* Wed Apr 25 2012 Panu Matilainen <pmatilai@redhat.com> - 3.7.11-2
bfaf7a
- run test-suite with MALLOC_CHECK_=3
bfaf7a
- disable buggy malloc_usable_size code (#801981)
bfaf7a
bfaf7a
* Mon Mar 26 2012 Panu Matilainen <pmatilai@redhat.com> - 3.7.11-1
bfaf7a
- update to 3.7.11 (http://www.sqlite.org/releaselog/3_7_11.html)
bfaf7a
bfaf7a
* Wed Mar 07 2012 Panu Matilainen <pmatilai@redhat.com> - 3.7.10-1
bfaf7a
- update to 3.7.10 (http://www.sqlite.org/releaselog/3_7_10.html)
bfaf7a
bfaf7a
* Sat Jan 14 2012 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 3.7.9-2
bfaf7a
- Rebuilt for https://fedoraproject.org/wiki/Fedora_17_Mass_Rebuild
bfaf7a
bfaf7a
* Tue Nov 22 2011 Panu Matilainen <pmatilai@redhat.com> - 3.7.9-1
bfaf7a
- update to 3.7.9 (http://www.sqlite.org/releaselog/3_7_9.html)
bfaf7a
bfaf7a
* Fri Oct 28 2011 Panu Matilainen <pmatilai@redhat.com> - 3.7.8-1
bfaf7a
- update to 3.7.8 (http://www.sqlite.org/releaselog/3_7_8.html)
bfaf7a
bfaf7a
* Wed Jul 13 2011 Panu Matilainen <pmatilai@redhat.com> - 3.7.7.1-1
bfaf7a
- update to 3.7.7.1 (http://www.sqlite.org/releaselog/3_7_7_1.html)
bfaf7a
- autoconf no longer needed for build, libdl check finally upstreamed
bfaf7a
bfaf7a
* Wed May 25 2011 Panu Matilainen <pmatilai@redhat.com> - 3.7.6.3-1
bfaf7a
- update to 3.7.6.3 (http://www.sqlite.org/releaselog/3_7_6_3.html)
bfaf7a
bfaf7a
* Sat May 21 2011 Peter Robinson <pbrobinson@gmail.com> - 3.7.6.2-3
bfaf7a
- add arm to the exclude from tests list
bfaf7a
bfaf7a
* Fri Apr 29 2011 Panu Matilainen <pmatilai@redhat.com> - 3.7.6.2-2
bfaf7a
- comment out stupid tests causing very bogus build failure on koji
bfaf7a
bfaf7a
* Thu Apr 21 2011 Panu Matilainen <pmatilai@redhat.com> - 3.7.6.2-1
bfaf7a
- update to 3.7.6.2 (http://www.sqlite.org/releaselog/3_7_6_2.html)
bfaf7a
bfaf7a
* Fri Feb 25 2011 Dennis Gilmore <dennis@ausil.us> - 3.7.5-4
bfaf7a
- build tests on sparc expecting failures same as the other big endian arches
bfaf7a
bfaf7a
* Wed Feb 09 2011 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 3.7.5-3
bfaf7a
- Rebuilt for https://fedoraproject.org/wiki/Fedora_15_Mass_Rebuild
bfaf7a
bfaf7a
* Wed Feb 2 2011 Panu Matilainen <pmatilai@redhat.com> - 3.7.5-2
bfaf7a
- unwanted cgi-script in docs creating broken dependencies, remove it
bfaf7a
- make doc sub-package noarch
bfaf7a
bfaf7a
* Tue Feb 1 2011 Panu Matilainen <pmatilai@redhat.com> - 3.7.5-1
bfaf7a
- update to 3.7.5 (http://www.sqlite.org/releaselog/3_7_5.html)
bfaf7a
bfaf7a
* Thu Dec 9 2010 Panu Matilainen <pmatilai@redhat.com> - 3.7.4-1
bfaf7a
- update to 3.7.4 (http://www.sqlite.org/releaselog/3_7_4.html)
bfaf7a
- deal with upstream source naming, versioning and format changing
bfaf7a
- fixup wal2-test expections wrt SQLITE_DISABLE_DIRSYNC use
bfaf7a
bfaf7a
* Fri Nov 5 2010 Dan Horák <dan[at]danny.cz> - 3.7.3-2
bfaf7a
- expect test failures also on s390x
bfaf7a
bfaf7a
* Mon Nov 1 2010 Panu Matilainen <pmatilai@redhat.com> - 3.7.3-1
bfaf7a
- update to 3.7.3 (http://www.sqlite.org/releaselog/3_7_3.html)
bfaf7a
bfaf7a
* Thu Sep  2 2010 Tom "spot" Callaway <tcallawa@redhat.com> - 3.7.0.1-2
bfaf7a
- enable SQLITE_SECURE_DELETE, SQLITE_ENABLE_UNLOCK_NOTIFY for firefox 4
bfaf7a
bfaf7a
* Fri Aug 13 2010 Panu Matilainen <pmatilai@redhat.com> - 3.7.0.1-1
bfaf7a
- update to 3.7.0.1 (http://www.sqlite.org/releaselog/3_7_0_1.html)
bfaf7a
bfaf7a
* Sat Jul  3 2010 Dan Horák <dan[at]danny.cz> - 3.6.23.1-2
bfaf7a
- some tests are failing on s390 and ppc/ppc64 so don't fail the whole build there
bfaf7a
bfaf7a
* Mon Apr 19 2010 Panu Matilainen <pmatilai@redhat.com> - 3.6.23.1-1
bfaf7a
- update to 3.6.23.1 (http://www.sqlite.org/releaselog/3_6_23_1.html)
bfaf7a
bfaf7a
* Wed Mar 10 2010 Panu Matilainen <pmatilai@redhat.com> - 3.6.23-1
bfaf7a
- update to 3.6.23 (http://www.sqlite.org/releaselog/3_6_23.html)
bfaf7a
- drop the lemon sprintf patch, upstream doesn't want it
bfaf7a
- make test-suite errors fail build finally
bfaf7a
bfaf7a
* Mon Jan 18 2010 Panu Matilainen <pmatilai@redhat.com> - 3.6.22-1
bfaf7a
- update to 3.6.22 (http://www.sqlite.org/releaselog/3_6_22.html)
bfaf7a
bfaf7a
* Tue Dec 08 2009 Panu Matilainen <pmatilai@redhat.com> - 3.6.21-1
bfaf7a
- update to 3.6.21 (http://www.sqlite.org/releaselog/3_6_21.html)
bfaf7a
bfaf7a
* Tue Nov 17 2009 Panu Matilainen <pmatilai@redhat.com> - 3.6.20-1
bfaf7a
- update to 3.6.20 (http://www.sqlite.org/releaselog/3_6_20.html)
bfaf7a
bfaf7a
* Tue Oct 06 2009 Panu Matilainen <pmatilai@redhat.com> - 3.6.18-1
bfaf7a
- update to 3.6.18 (http://www.sqlite.org/releaselog/3_6_18.html)
bfaf7a
- drop no longer needed test-disabler patches
bfaf7a
bfaf7a
* Fri Aug 21 2009 Panu Matilainen <pmatilai@redhat.com> - 3.6.17-1
bfaf7a
- update to 3.6.17 (http://www.sqlite.org/releaselog/3_6_17.html)
bfaf7a
- disable to failing tests until upstream fixes
bfaf7a
bfaf7a
* Sun Jul 26 2009 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 3.6.14.2-2
bfaf7a
- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild
bfaf7a
bfaf7a
* Fri Jun 12 2009 Panu Matilainen <pmatilai@redhat.com> - 3.6.14.2-1
bfaf7a
- update to 3.6.14.2 (#505229)
bfaf7a
bfaf7a
* Mon May 18 2009 Panu Matilainen <pmatilai@redhat.com> - 3.6.14-2
bfaf7a
- disable rpath
bfaf7a
- add -doc subpackage instead of patching out reference to it
bfaf7a
bfaf7a
* Thu May 14 2009 Panu Matilainen <pmatilai@redhat.com> - 3.6.14-1
bfaf7a
- update to 3.6.14 (http://www.sqlite.org/releaselog/3_6_14.html)
bfaf7a
- merge-review cosmetics (#226429)
bfaf7a
  - drop ancient sqlite3 obsoletes
bfaf7a
  - fix tab vs space whitespace issues
bfaf7a
  - remove commas from summaries
bfaf7a
- fixup io-test fsync expectations wrt SQLITE_DISABLE_DIRSYNC
bfaf7a
bfaf7a
* Wed Apr 15 2009 Panu Matilainen <pmatilai@redhat.com> - 3.6.13-1
bfaf7a
- update to 3.6.13
bfaf7a
bfaf7a
* Thu Apr 09 2009 Dennis Gilmore <dennis@ausil.us> - 3.6.12-3
bfaf7a
- apply upstream patch for memory alignment issue (#494906)
bfaf7a
bfaf7a
* Tue Apr 07 2009 Panu Matilainen <pmatilai@redhat.com> - 3.6.12-2
bfaf7a
- disable strict aliasing to work around brokenness on 3.6.12 (#494266)
bfaf7a
- run test-suite on build but let it fail for now
bfaf7a
bfaf7a
* Fri Apr 03 2009 Panu Matilainen <pmatilai@redhat.com> - 3.6.12-1
bfaf7a
- update to 3.6.12 (#492662)
bfaf7a
- remove reference to non-existent sqlite-doc from manual (#488883)
bfaf7a
bfaf7a
* Wed Feb 25 2009 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 3.6.10-4
bfaf7a
- Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild
bfaf7a
bfaf7a
* Wed Feb 04 2009 Panu Matilainen <pmatilai@redhat.com> - 3.6.10-3
bfaf7a
- enable RTREE and FTS3 extensions (#481417)
bfaf7a
bfaf7a
* Thu Jan 22 2009 Panu Matilainen <pmatilai@redhat.com> - 3.6.10-2
bfaf7a
- upstream fix yum breakage caused by new keywords (#481189)
bfaf7a
bfaf7a
* Thu Jan 22 2009 Panu Matilainen <pmatilai@redhat.com> - 3.6.10-1
bfaf7a
- update to 3.6.10
bfaf7a
bfaf7a
* Wed Dec 31 2008 Panu Matilainen <pmatilai@redhat.com> - 3.6.7-1
bfaf7a
- update to 3.6.7
bfaf7a
- avoid lemon ending up in main sqlite package too
bfaf7a
bfaf7a
* Fri Dec 05 2008 Panu Matilainen <pmatilai@redhat.com> - 3.6.6.2-4
bfaf7a
- add lemon subpackage
bfaf7a
bfaf7a
* Thu Dec  4 2008 Matthias Clasen <mclasen@redhat.com> - 3.6.6.2-3
bfaf7a
- Rebuild for pkg-config provides 
bfaf7a
bfaf7a
* Tue Dec 02 2008 Panu Matilainen <pmatilai@redhat.com> - 3.6.6.2-2
bfaf7a
- require tcl(abi) in sqlite-tcl subpackage (#474034)
bfaf7a
- move tcl extensions to arch-specific location
bfaf7a
- enable dependency extraction on the tcl dso
bfaf7a
- require pkgconfig in sqlite-devel
bfaf7a
bfaf7a
* Sat Nov 29 2008 Panu Matilainen <pmatilai@redhat.com> - 3.6.6.2-1
bfaf7a
- update to 3.6.6.2
bfaf7a
bfaf7a
* Sat Nov 08 2008 Panu Matilainen <pmatilai@redhat.com> - 3.6.4-1
bfaf7a
- update to 3.6.4
bfaf7a
- drop patches already upstream
bfaf7a
bfaf7a
* Mon Sep 22 2008 Panu Matilainen <pmatilai@redhat.com> - 3.5.9-2
bfaf7a
- Remove references to temporary registers from cache on release (#463061)
bfaf7a
- Enable loading of external extensions (#457433)
bfaf7a
bfaf7a
* Tue Jun 17 2008 Stepan Kasal <skasal@redhat.com> - 3.5.9-1
bfaf7a
- update to 3.5.9
bfaf7a
bfaf7a
* Wed Apr 23 2008 Panu Matilainen <pmatilai@redhat.com> - 3.5.8-1
bfaf7a
- update to 3.5.8
bfaf7a
- provide full version in pkg-config (#443692)
bfaf7a
bfaf7a
* Mon Mar 31 2008 Panu Matilainen <pmatilai@redhat.com> - 3.5.6-2
bfaf7a
- remove reference to static libs from -devel description (#439376)
bfaf7a
bfaf7a
* Tue Feb 12 2008 Panu Matilainen <pmatilai@redhat.com> - 3.5.6-1
bfaf7a
- update to 3.5.6
bfaf7a
- also fixes #432447
bfaf7a
bfaf7a
* Fri Jan 25 2008 Panu Matilainen <pmatilai@redhat.com> - 3.5.4-3
bfaf7a
- enable column metadata API (#430258)
bfaf7a
bfaf7a
* Tue Jan 08 2008 Panu Matilainen <pmatilai@redhat.com> - 3.5.4-2
bfaf7a
- avoid packaging CVS directory as documentation (#427755)
bfaf7a
bfaf7a
* Fri Dec 21 2007 Panu Matilainen <pmatilai@redhat.com> - 3.5.4-1
bfaf7a
- Update to 3.5.4 (#413801)
bfaf7a
bfaf7a
* Fri Sep 28 2007 Panu Matilainen <pmatilai@redhat.com> - 3.4.2-3
bfaf7a
- Add another build conditional for enabling %%check
bfaf7a
bfaf7a
* Fri Sep 28 2007 Panu Matilainen <pmatilai@redhat.com> - 3.4.2-2
bfaf7a
- Use bconds for the spec build conditionals
bfaf7a
- Enable -tcl subpackage again (#309041)
bfaf7a
bfaf7a
* Wed Aug 15 2007 Paul Nasrat <pnasrat@redhat.com> - 3.4.2-1
bfaf7a
- Update to 3.4.2
bfaf7a
bfaf7a
* Sat Jul 21 2007 Paul Nasrat <pnasrat@redhat.com> - 3.4.1-1
bfaf7a
- Update to 3.4.1
bfaf7a
bfaf7a
* Sun Jun 24 2007 Paul Nasrat <pnsarat@redhat.com> - 3.4.0-2
bfaf7a
- Disable load for now (#245486)
bfaf7a
bfaf7a
* Tue Jun 19 2007 Paul Nasrat <pnasrat@redhat.com> - 3.4.0-1
bfaf7a
- Update to 3.4.0
bfaf7a
bfaf7a
* Fri Jun 01 2007 Paul Nasrat <pnasrat@redhat.com> - 3.3.17-2
bfaf7a
- Enable load 
bfaf7a
- Build fts1 and fts2
bfaf7a
- Don't sync on dirs (#237427)
bfaf7a
bfaf7a
* Tue May 29 2007 Paul Nasrat <pnasrat@redhat.com> - 3.3.17-1
bfaf7a
- Update to 3.3.17
bfaf7a
bfaf7a
* Mon Mar 19 2007 Paul Nasrat <pnasrat@redhat.com> - 3.3.13-1
bfaf7a
- Update to 3.3.13
bfaf7a
bfaf7a
* Fri Aug 11 2006 Paul Nasrat <pnasrat@redhat.com> - 3.3.6-2
bfaf7a
- Fix conditional typo (patch from Gareth Armstrong)
bfaf7a
bfaf7a
* Wed Jul 12 2006 Jesse Keating <jkeating@redhat.com> - 3.3.6-1.1
bfaf7a
- rebuild
bfaf7a
bfaf7a
* Mon Jun 26 2006 Paul Nasrat <pnasrat@redhat.com> - 3.3.6-1
bfaf7a
- Update to 3.3.6
bfaf7a
- Fix typo  (#189647)
bfaf7a
- Enable threading fixes (#181298)
bfaf7a
- Conditionalize static library
bfaf7a
bfaf7a
* Mon Apr 17 2006 Paul Nasrat <pnasrat@redhat.com> - 3.3.5-1
bfaf7a
- Update to 3.3.5
bfaf7a
bfaf7a
* Fri Feb 10 2006 Jesse Keating <jkeating@redhat.com> - 3.3.3-1.2
bfaf7a
- bump again for double-long bug on ppc(64)
bfaf7a
bfaf7a
* Tue Feb 07 2006 Jesse Keating <jkeating@redhat.com> - 3.3.3-1.1
bfaf7a
- rebuilt for new gcc4.1 snapshot and glibc changes
bfaf7a
bfaf7a
* Tue Jan 31 2006 Christopher Aillon <caillon@redhat.com> - 3.3.3-1
bfaf7a
- Update to 3.3.3
bfaf7a
bfaf7a
* Tue Jan 31 2006 Christopher Aillon <caillon@redhat.com> - 3.3.2-1
bfaf7a
- Update to 3.3.2
bfaf7a
bfaf7a
* Tue Jan 24 2006 Paul Nasrat <pnasrat@redhat.com> - 3.2.8-1
bfaf7a
- Add --enable-threadsafe (Nicholas Miell)
bfaf7a
- Update to 3.2.8
bfaf7a
bfaf7a
* Fri Dec 09 2005 Jesse Keating <jkeating@redhat.com>
bfaf7a
- rebuilt
bfaf7a
bfaf7a
* Tue Oct  4 2005 Jeremy Katz <katzj@redhat.com> - 3.2.7-2
bfaf7a
- no more static file or libtool archive (#169874) 
bfaf7a
bfaf7a
* Wed Sep 28 2005 Florian La Roche <laroche@redhat.com>
bfaf7a
- Upgrade to 3.2.7 release.
bfaf7a
bfaf7a
* Thu Sep 22 2005 Florian La Roche <laroche@redhat.com>
bfaf7a
- Upgrade to 3.2.6 release.
bfaf7a
bfaf7a
* Sun Sep 11 2005 Florian La Roche <laroche@redhat.com>
bfaf7a
- Upgrade to 3.2.5 release.
bfaf7a
bfaf7a
* Fri Jul  8 2005 Roland McGrath <roland@redhat.com> - 3.2.2-1
bfaf7a
- Upgrade to 3.2.2 release.
bfaf7a
bfaf7a
* Sat Apr  9 2005 Warren Togami <wtogami@redhat.com> - 3.1.2-3
bfaf7a
- fix buildreqs (#154298)
bfaf7a
bfaf7a
* Mon Apr  4 2005 Jeremy Katz <katzj@redhat.com> - 3.1.2-2
bfaf7a
- disable tcl subpackage
bfaf7a
bfaf7a
* Wed Mar  9 2005 Jeff Johnson <jbj@redhat.com> 3.1.2-1
bfaf7a
- rename to "sqlite" from "sqlite3" (#149719, #150012).
bfaf7a
bfaf7a
* Wed Feb 16 2005 Jeff Johnson <jbj@jbj.org> 3.1.2-1
bfaf7a
- upgrade to 3.1.2.
bfaf7a
- add sqlite3-tcl sub-package.
bfaf7a
bfaf7a
* Sat Feb  5 2005 Jeff Johnson <jbj@jbj.org> 3.0.8-3
bfaf7a
- repackage for fc4.
bfaf7a
bfaf7a
* Mon Jan 17 2005 R P Herrold <info@owlriver.com> 3.0.8-2orc
bfaf7a
- fix a man page nameing conflict when co-installed with sqlite-2, as
bfaf7a
  is permissible