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