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