01143dc
# bcond default logic is nicely backwards...
01143dc
%bcond_without tcl
01143dc
%bcond_with static
0da1b09
%bcond_without check
2abe230
bf31177
%define realver 3080403
bf31177
%define docver 3080403
bf31177
%define rpmver 3.8.4.3
a3b00fb
jbj 2680542
Summary: Library that implements an embeddable SQL database engine
jbj 2680542
Name: sqlite
e5b14b4
Version: %{rpmver}
3c89e80
Release: 3%{?dist}
jbj 2680542
License: Public Domain
9d202ae
Group: Applications/Databases
jbj 2680542
URL: http://www.sqlite.org/
cc31ef5
f933cf3
Source0: http://www.sqlite.org/2013/sqlite-src-%{realver}.zip
f933cf3
Source1: http://www.sqlite.org/2013/sqlite-doc-%{docver}.zip
e352549
# Support a system-wide lemon template
Panu Matilainen 30d0e9a
Patch1: sqlite-3.6.23-lemon-system-template.patch
bf8a6d9
# Shut up stupid tests depending on system settings of allowed open fd's
Panu Matilainen 30d0e9a
Patch2: sqlite-3.7.7.1-stupid-openfiles-test.patch
c5aa6a5
# Shut up pagecache overflow test whose expected result depends on compile
c5aa6a5
# options and whatnot. Dunno why this started failing in 3.7.10 but
c5aa6a5
# doesn't seem particularly critical...
c5aa6a5
Patch3: sqlite-3.7.10-pagecache-overflow-test.patch
54145bd
# sqlite >= 3.7.10 is buggy if malloc_usable_size() is detected, disable it:
54145bd
# https://bugzilla.redhat.com/show_bug.cgi?id=801981
54145bd
# http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=665363
a795cf9
Patch4: sqlite-3.7.15-no-malloc-usable-size.patch
fa192e7
# Temporary workaround for failed percentile test, see patch for details
34d3e20
Patch5: sqlite-3.8.0-percentile-test.patch
388d963
Patch6: sqlite-bug1075889.patch
fa192e7
Paul Nasrat b93e7ec
BuildRequires: ncurses-devel readline-devel glibc-devel
57925f4
BuildRequires: autoconf
01143dc
%if %{with tcl}
cd74556
BuildRequires: /usr/bin/tclsh
2abe230
BuildRequires: tcl-devel
3c89e80
%{!?tcl_version: %global tcl_version 8.6}
f5ed264
%{!?tcl_sitearch: %global tcl_sitearch %{_libdir}/tcl%{tcl_version}}
2abe230
%endif
jbj 2680542
jbj 2680542
%description
jbj 2680542
SQLite is a C library that implements an SQL database engine. A large
jbj 2680542
subset of SQL92 is supported. A complete database is stored in a
jbj 2680542
single disk file. The API is designed for convenience and ease of use.
jbj 2680542
Applications that link against SQLite can enjoy the power and
Paul Nasrat 0ea3bf2
flexibility of an SQL database without the administrative hassles of
2abe230
supporting a separate database server.  Version 2 and version 3 binaries
jbj 2680542
are named to permit each to be installed on a single host
jbj 2680542
jbj 2680542
%package devel
9d202ae
Summary: Development tools for the sqlite3 embeddable SQL database engine
jbj 2680542
Group: Development/Libraries
jbj 2680542
Requires: %{name} = %{version}-%{release}
f5ed264
Requires: pkgconfig
jbj 2680542
jbj 2680542
%description devel
f32dde3
This package contains the header files and development documentation 
f32dde3
for %{name}. If you like to develop programs using %{name}, you will need 
f32dde3
to install %{name}-devel.
jbj 2680542
a3b00fb
%package doc
a3b00fb
Summary: Documentation for sqlite
a3b00fb
Group: Documentation
4ddb5c0
BuildArch: noarch
a3b00fb
a3b00fb
%description doc
a3b00fb
This package contains most of the static HTML files that comprise the
a3b00fb
www.sqlite.org website, including all of the SQL Syntax and the 
a3b00fb
C/C++ interface specs and other miscellaneous documentation.
a3b00fb
e30c1c7
%package -n lemon
e30c1c7
Summary: A parser generator
e30c1c7
Group: Development/Tools
e30c1c7
e30c1c7
%description -n lemon
e30c1c7
Lemon is an LALR(1) parser generator for C or C++. It does the same
e30c1c7
job as bison and yacc. But lemon is not another bison or yacc
e30c1c7
clone. It uses a different grammar syntax which is designed to reduce
e30c1c7
the number of coding errors. Lemon also uses a more sophisticated
e30c1c7
parsing engine that is faster than yacc and bison and which is both
e30c1c7
reentrant and thread-safe. Furthermore, Lemon implements features
e30c1c7
that can be used to eliminate resource leaks, making is suitable for
e30c1c7
use in long-running programs such as graphical user interfaces or
e30c1c7
embedded controllers.
e30c1c7
01143dc
%if %{with tcl}
jbj 2680542
%package tcl
9d202ae
Summary: Tcl module for the sqlite3 embeddable SQL database engine
jbj 2680542
Group: Development/Languages
jbj 2680542
Requires: %{name} = %{version}-%{release}
f5ed264
Requires: tcl(abi) = %{tcl_version}
jbj 2680542
jbj 2680542
%description tcl
jbj 2680542
This package contains the tcl modules for %{name}.
2c2eb9e
2c2eb9e
%package analyzer
2c2eb9e
Summary: An analysis program for sqlite3 database files
2c2eb9e
Group: Development/Tools
2c2eb9e
Requires: %{name} = %{version}-%{release}
2c2eb9e
Requires: tcl(abi) = %{tcl_version}
2c2eb9e
2c2eb9e
%description analyzer
2c2eb9e
This package contains the analysis program for %{name}.
jbj 2680542
%endif
jbj 2680542
2abe230
%prep
e5b14b4
%setup -q -a1 -n %{name}-src-%{realver}
Panu Matilainen 30d0e9a
%patch1 -p1 -b .lemon-system-template
Panu Matilainen 30d0e9a
%patch2 -p1 -b .stupid-openfiles-test
c5aa6a5
%patch3 -p1 -b .pagecache-overflow-test
54145bd
%patch4 -p1 -b .no-malloc-usable-size
34d3e20
%patch5 -p1 -b .nonprecise-percentile-test
bf31177
%patch6 -b .bug1075889
jbj 2680542
4ddb5c0
# Remove cgi-script erroneously included in sqlite-doc-3070500
4ddb5c0
rm -f %{name}-doc-%{realver}/search
4ddb5c0
57925f4
autoconf # Rerun with new autoconf to add support for aarm64
57925f4
jbj 2680542
%build
c2b9045
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"
01143dc
%configure %{!?with_tcl:--disable-tcl} \
Paul Nasrat 0ea3bf2
           --enable-threadsafe \
778c041
           --enable-threads-override-locks \
1393d4e
           --enable-load-extension \
9d202ae
           %{?with_tcl:TCLLIBDIR=%{tcl_sitearch}/sqlite3}
debaecc
a3b00fb
# rpath removal
a3b00fb
sed -i 's|^hardcode_libdir_flag_spec=.*|hardcode_libdir_flag_spec=""|g' libtool
a3b00fb
sed -i 's|^runpath_var=LD_RUN_PATH|runpath_var=DIE_RPATH_DIE|g' libtool
a3b00fb
Paul Nasrat b9100e2
make %{?_smp_mflags}
jbj 2680542
2c2eb9e
# Build sqlite3_analyzer
2c2eb9e
# depends on tcl
2c2eb9e
%if %{with tcl}
2c2eb9e
make %{?_smp_mflags} sqlite3_analyzer
2c2eb9e
%endif
2c2eb9e
jbj 2680542
%install
1393d4e
make DESTDIR=${RPM_BUILD_ROOT} install
jbj 2680542
e30c1c7
install -D -m0644 sqlite3.1 $RPM_BUILD_ROOT/%{_mandir}/man1/sqlite3.1
e30c1c7
install -D -m0755 lemon $RPM_BUILD_ROOT/%{_bindir}/lemon
bf1898b
install -D -m0644 tool/lempar.c $RPM_BUILD_ROOT/%{_datadir}/lemon/lempar.c
jbj 2680542
f5ed264
%if %{with tcl}
f5ed264
# fix up permissions to enable dep extraction
f5ed264
chmod 0755 ${RPM_BUILD_ROOT}/%{tcl_sitearch}/sqlite3/*.so
2c2eb9e
# Install sqlite3_analyzer
2c2eb9e
install -D -m0755 sqlite3_analyzer $RPM_BUILD_ROOT/%{_bindir}/sqlite3_analyzer
f5ed264
%endif
f5ed264
01143dc
%if ! %{with static}
455084c
rm -f $RPM_BUILD_ROOT/%{_libdir}/*.{la,a}
Paul Nasrat 0ea3bf2
%endif
455084c
f1af58c
%if %{with check}
jbj 2680542
%check
d2196c8
# XXX shell tests are broken due to loading system libsqlite3, work around...
d2196c8
export LD_LIBRARY_PATH=`pwd`/.libs
54145bd
export MALLOC_CHECK_=3
cc31ef5
%ifarch s390 s390x ppc ppc64 %{sparc}
926f717
make test || :
926f717
%else
e352549
make test
2abe230
%endif
926f717
%endif
jbj 2680542
jbj 2680542
%post -p /sbin/ldconfig
jbj 2680542
jbj 2680542
%postun -p /sbin/ldconfig
jbj 2680542
jbj 2680542
%files
520be4a
%doc README.md
95bd238
%{_bindir}/sqlite3
jbj 2680542
%{_libdir}/*.so.*
jbj 2680542
%{_mandir}/man?/*
jbj 2680542
jbj 2680542
%files devel
jbj 2680542
%{_includedir}/*.h
jbj 2680542
%{_libdir}/*.so
jbj 2680542
%{_libdir}/pkgconfig/*.pc
01143dc
%if %{with static}
Paul Nasrat 0ea3bf2
%{_libdir}/*.a
Paul Nasrat 0ea3bf2
%exclude %{_libdir}/*.la
Paul Nasrat 0ea3bf2
%endif
f5ed264
a3b00fb
%files doc
1518161
%doc %{name}-doc-%{docver}/*
a3b00fb
e30c1c7
%files -n lemon
e30c1c7
%{_bindir}/lemon
e30c1c7
%{_datadir}/lemon
e30c1c7
01143dc
%if %{with tcl}
jbj 2680542
%files tcl
f5ed264
%{tcl_sitearch}/sqlite3
2c2eb9e
2c2eb9e
%files analyzer
2c2eb9e
%{_bindir}/sqlite3_analyzer
0242ca7
%endif
jbj 2680542
jbj 2680542
%changelog
3c89e80
* Wed May 28 2014 Jan Stanek <jstanek@redhat.com> - 3.8.4.3-3
3c89e80
- Rebuilt for https://fedoraproject.org/wiki/Changes/f21tcl86 with correct tcl_version
3c89e80
28b3474
* Wed May 21 2014 Jaroslav Škarvada <jskarvad@redhat.com> - 3.8.4.3-2
28b3474
- Rebuilt for https://fedoraproject.org/wiki/Changes/f21tcl86
28b3474
bf31177
* Tue Apr 29 2014 Jan Stanek <jstanek@redhat.com> - 3.8.4.3-1
bf31177
- Update to version 3.8.4.3 (http://www.sqlite.org/releaselog/3_8_4_3.html)
bf31177
- Changed patch for rhbz#1075889 to upstream version
bf31177
  Related: #1075889
bf31177
388d963
* Fri Apr 25 2014 Honza Horak <hhorak@redhat.com> - 3.8.4.2-3
388d963
- Revert part of the upstream commit dca1945aeb3fb005, since it causes
388d963
  nautilus to crash
388d963
  Related: #1075889
388d963
2c2eb9e
* Wed Apr 02 2014 Jan Stanek <jstanek@redhat.com> 3.8.4.2-2
2c2eb9e
- Added building and shipping of sqlite3_analyzer (#1007159)
2c2eb9e
67e2333
* Fri Mar 28 2014 Jan Stanek <jstanek@redhat.com> 3.8.4.2-1
67e2333
- Update to 3.8.4 (http://www.sqlite.org/releaselog/3_8_4_2.html)
67e2333
520be4a
* Tue Mar 11 2014 Jan Stanek <jstanek@redhat.com> 3.8.4-1
520be4a
- Update to 3.8.4 (http://www.sqlite.org/releaselog/3_8_4.html)
520be4a
cc31ef5
* Sun Feb 23 2014 Peter Robinson <pbrobinson@fedoraproject.org> 3.8.3-2
cc31ef5
- Re-enable check on ARM/aarch64 as failing test fixed upstream for non x86 arches
cc31ef5
- Modernise spec
cc31ef5
34d3e20
* Tue Feb 11 2014 Jan Stanek <jstanek@redhat.com> 3.8.3-1
34d3e20
- Update to 3.8.3 (http://www.sqlite.org/releaselog/3_8_3.html)
34d3e20
- Dropped man-page patch - included upstream
34d3e20
c79a6e8
* Mon Jan  6 2014 Peter Robinson <pbrobinson@fedoraproject.org> 3.8.2-2
c79a6e8
- Add aarch64 to all the other arch excludes for tests
c79a6e8
3ccd3fa
* Tue Dec 10 2013 Jan Stanek <jstanek@redhat.com> - 3.8.2-1
3ccd3fa
- Update to 3.8.2 (http://www.sqlite.org/releaselog/3_8_2.html)
3ccd3fa
Debarshi Ray 6ac28fc
* Tue Nov 26 2013 Debarshi Ray <rishi@fedoraproject.org> - 3.8.1-2
Debarshi Ray 6ac28fc
- Do not use transitive WHERE-clause constraints on LEFT JOINs (#1034714)
Debarshi Ray 6ac28fc
f75c937
* Tue Oct 22 2013 Jan Stanek <jstanek@redhat.com> - 3.8.1-1
f75c937
- Update to 3.8.1 (http://www.sqlite.org/releaselog/3_8_1.html)
f75c937
2b63b05
* Thu Sep 26 2013 Jan Stanek <jstanek@redhat.com> - 3.8.0.2-4
2b63b05
- Removed fullversioned provides and start using full version for rpm version
2b63b05
3c8f4bc
* Mon Sep 23 2013 Jan Stanek <jstanek@redhat.com> - 3.8.0-3
3c8f4bc
- Added fullversioned Provides to fix broken dependency
3c8f4bc
fa192e7
* Mon Sep 16 2013 Jan Stanek <jstanek@redhat.com> - 3.8.0-2
fa192e7
- Dropped problematic percentile-2.1.50 test
fa192e7
3ce1b85
* Thu Sep 05 2013 Jan Stanek <jstanek@redhat.com> - 3.8.0-1
3ce1b85
- Update to 3.8.0.2 (http://sqlite.org/releaselog/3_8_0_2.html)
3ce1b85
e2add83
* Sun Aug 04 2013 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 3.7.17-2
e2add83
- Rebuilt for https://fedoraproject.org/wiki/Fedora_20_Mass_Rebuild
e2add83
3e08696
* Wed May 22 2013 Jan Stanek <jstanek@redhat.com> - 3.7.17-1
3e08696
- Update to 3.7.17 (http://www.sqlite.org/releaselog/3_7_17.html)
3e08696
f57859a
* Thu May 16 2013 Jan Stanek <jstanek@redhat.com> - 3.7.16.2-2
f57859a
- Added missing options to man page (#948862)
f57859a
57925f4
* Mon Apr 29 2013 Jan Stanek <jstanek@redhat.com> - 3.7.16.2-1
57925f4
- update to 3.7.16.2 (http://www.sqlite.org/releaselog/3_7_16_2.html)
57925f4
- add support for aarch64 (rerunning autoconf) (#926568)
57925f4
04ef11c
* Sun Mar 31 2013 Panu Matilainen <pmatilai@redhat.com> - 3.7.16.1-1
04ef11c
- update to 3.7.16.1 (https://www.sqlite.org/releaselog/3_7_16_1.html)
04ef11c
8cb641a
* Wed Mar 20 2013 Panu Matilainen <pmatilai@redhat.com> - 3.7.16-1
8cb641a
- update to 3.7.16 (http://www.sqlite.org/releaselog/3_7_16.html)
8cb641a
85d5b02
* Fri Feb 15 2013 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 3.7.15.2-2
85d5b02
- Rebuilt for https://fedoraproject.org/wiki/Fedora_19_Mass_Rebuild
85d5b02
eb65935
* Thu Jan 10 2013 Panu Matilainen <pmatilai@redhat.com> - 3.7.15.2-1
eb65935
- update to 3.7.15.2 (http://www.sqlite.org/releaselog/3_7_15_2.html)
eb65935
a795cf9
* Thu Dec 13 2012 Panu Matilainen <pmatilai@redhat.com> - 3.7.15-1
a795cf9
- update to 3.7.15 (http://www.sqlite.org/releaselog/3_7_15.html)
a66e6e6
- fix an old incorrect date in spec changelog
a795cf9
d13a48a
* Tue Nov 06 2012 Panu Matilainen <pmatilai@redhat.com> - 3.7.14.1-1
d13a48a
- update to 3.7.14.1 (http://www.sqlite.org/releaselog/3_7_14_1.html)
d13a48a
7db5b83
* Wed Oct 03 2012 Panu Matilainen <pmatilai@redhat.com> - 3.7.14-1
7db5b83
- update to 3.7.14 (http://www.sqlite.org/releaselog/3_7_14.html)
7db5b83
a38baf5
* Sat Jul 21 2012 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 3.7.13-2
a38baf5
- Rebuilt for https://fedoraproject.org/wiki/Fedora_18_Mass_Rebuild
a38baf5
d2196c8
* Mon Jun 25 2012 Panu Matilainen <pmatilai@redhat.com> - 3.7.13-1
d2196c8
- update to 3.7.13 (http://www.sqlite.org/releaselog/3_7_13.html)
d2196c8
- drop no longer needed savepoint relase patch
d2196c8
9e4dd64
* Fri Jun 01 2012 Panu Matilainen <pmatilai@redhat.com> - 3.7.11-3
9e4dd64
- don't abort pending queries on release of nested savepoint (#821642)
9e4dd64
54145bd
* Wed Apr 25 2012 Panu Matilainen <pmatilai@redhat.com> - 3.7.11-2
54145bd
- run test-suite with MALLOC_CHECK_=3
54145bd
- disable buggy malloc_usable_size code (#801981)
54145bd
7712aba
* Mon Mar 26 2012 Panu Matilainen <pmatilai@redhat.com> - 3.7.11-1
7712aba
- update to 3.7.11 (http://www.sqlite.org/releaselog/3_7_11.html)
7712aba
c5aa6a5
* Wed Mar 07 2012 Panu Matilainen <pmatilai@redhat.com> - 3.7.10-1
c5aa6a5
- update to 3.7.10 (http://www.sqlite.org/releaselog/3_7_10.html)
c5aa6a5
55d15c1
* Sat Jan 14 2012 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 3.7.9-2
55d15c1
- Rebuilt for https://fedoraproject.org/wiki/Fedora_17_Mass_Rebuild
55d15c1
f09581c
* Tue Nov 22 2011 Panu Matilainen <pmatilai@redhat.com> - 3.7.9-1
f09581c
- update to 3.7.9 (http://www.sqlite.org/releaselog/3_7_9.html)
f09581c
649a471
* Fri Oct 28 2011 Panu Matilainen <pmatilai@redhat.com> - 3.7.8-1
649a471
- update to 3.7.8 (http://www.sqlite.org/releaselog/3_7_8.html)
649a471
Panu Matilainen 30d0e9a
* Wed Jul 13 2011 Panu Matilainen <pmatilai@redhat.com> - 3.7.7.1-1
Panu Matilainen 30d0e9a
- update to 3.7.7.1 (http://www.sqlite.org/releaselog/3_7_7_1.html)
Panu Matilainen 30d0e9a
- autoconf no longer needed for build, libdl check finally upstreamed
Panu Matilainen 30d0e9a
cec0a29
* Wed May 25 2011 Panu Matilainen <pmatilai@redhat.com> - 3.7.6.3-1
cec0a29
- update to 3.7.6.3 (http://www.sqlite.org/releaselog/3_7_6_3.html)
cec0a29
2744a9a
* Sat May 21 2011 Peter Robinson <pbrobinson@gmail.com> - 3.7.6.2-3
2744a9a
- add arm to the exclude from tests list
2744a9a
bf8a6d9
* Fri Apr 29 2011 Panu Matilainen <pmatilai@redhat.com> - 3.7.6.2-2
bf8a6d9
- comment out stupid tests causing very bogus build failure on koji
bf8a6d9
1518161
* Thu Apr 21 2011 Panu Matilainen <pmatilai@redhat.com> - 3.7.6.2-1
1518161
- update to 3.7.6.2 (http://www.sqlite.org/releaselog/3_7_6_2.html)
1518161
8b94c1f
* Fri Feb 25 2011 Dennis Gilmore <dennis@ausil.us> - 3.7.5-4
8b94c1f
- build tests on sparc expecting failures same as the other big endian arches
8b94c1f
ef38f7e
* Wed Feb 09 2011 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 3.7.5-3
ef38f7e
- Rebuilt for https://fedoraproject.org/wiki/Fedora_15_Mass_Rebuild
ef38f7e
4ddb5c0
* Wed Feb 2 2011 Panu Matilainen <pmatilai@redhat.com> - 3.7.5-2
4ddb5c0
- unwanted cgi-script in docs creating broken dependencies, remove it
4ddb5c0
- make doc sub-package noarch
4ddb5c0
4cd939c
* Tue Feb 1 2011 Panu Matilainen <pmatilai@redhat.com> - 3.7.5-1
4cd939c
- update to 3.7.5 (http://www.sqlite.org/releaselog/3_7_5.html)
4cd939c
e5b14b4
* Thu Dec 9 2010 Panu Matilainen <pmatilai@redhat.com> - 3.7.4-1
e5b14b4
- update to 3.7.4 (http://www.sqlite.org/releaselog/3_7_4.html)
e5b14b4
- deal with upstream source naming, versioning and format changing
e5b14b4
- fixup wal2-test expections wrt SQLITE_DISABLE_DIRSYNC use
e5b14b4
abaefee
* Fri Nov 5 2010 Dan Horák <dan[at]danny.cz> - 3.7.3-2
abaefee
- expect test failures also on s390x
abaefee
74b9286
* Mon Nov 1 2010 Panu Matilainen <pmatilai@redhat.com> - 3.7.3-1
74b9286
- update to 3.7.3 (http://www.sqlite.org/releaselog/3_7_3.html)
74b9286
a66e6e6
* Thu Sep  2 2010 Tom "spot" Callaway <tcallawa@redhat.com> - 3.7.0.1-2
c2b9045
- enable SQLITE_SECURE_DELETE, SQLITE_ENABLE_UNLOCK_NOTIFY for firefox 4
c2b9045
1383973
* Fri Aug 13 2010 Panu Matilainen <pmatilai@redhat.com> - 3.7.0.1-1
1383973
- update to 3.7.0.1 (http://www.sqlite.org/releaselog/3_7_0_1.html)
1383973
926f717
* Sat Jul  3 2010 Dan Horák <dan[at]danny.cz> - 3.6.23.1-2
926f717
- some tests are failing on s390 and ppc/ppc64 so don't fail the whole build there
926f717
bf978b4
* Mon Apr 19 2010 Panu Matilainen <pmatilai@redhat.com> - 3.6.23.1-1
bf978b4
- update to 3.6.23.1 (http://www.sqlite.org/releaselog/3_6_23_1.html)
bf978b4
e352549
* Wed Mar 10 2010 Panu Matilainen <pmatilai@redhat.com> - 3.6.23-1
e352549
- update to 3.6.23 (http://www.sqlite.org/releaselog/3_6_23.html)
e352549
- drop the lemon sprintf patch, upstream doesn't want it
e352549
- make test-suite errors fail build finally
e352549
a11024b
* Mon Jan 18 2010 Panu Matilainen <pmatilai@redhat.com> - 3.6.22-1
a11024b
- update to 3.6.22 (http://www.sqlite.org/releaselog/3_6_22.html)
a11024b
f3b1659
* Tue Dec 08 2009 Panu Matilainen <pmatilai@redhat.com> - 3.6.21-1
f3b1659
- update to 3.6.21 (http://www.sqlite.org/releaselog/3_6_21.html)
f3b1659
a237aeb
* Tue Nov 17 2009 Panu Matilainen <pmatilai@redhat.com> - 3.6.20-1
a237aeb
- update to 3.6.20 (http://www.sqlite.org/releaselog/3_6_20.html)
a237aeb
c7084d0
* Tue Oct 06 2009 Panu Matilainen <pmatilai@redhat.com> - 3.6.18-1
c7084d0
- update to 3.6.18 (http://www.sqlite.org/releaselog/3_6_18.html)
c7084d0
- drop no longer needed test-disabler patches
c7084d0
61184f5
* Fri Aug 21 2009 Panu Matilainen <pmatilai@redhat.com> - 3.6.17-1
61184f5
- update to 3.6.17 (http://www.sqlite.org/releaselog/3_6_17.html)
61184f5
- disable to failing tests until upstream fixes
61184f5
3e3691c
* Sun Jul 26 2009 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 3.6.14.2-2
3e3691c
- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild
3e3691c
e479b78
* Fri Jun 12 2009 Panu Matilainen <pmatilai@redhat.com> - 3.6.14.2-1
e479b78
- update to 3.6.14.2 (#505229)
e479b78
a3b00fb
* Mon May 18 2009 Panu Matilainen <pmatilai@redhat.com> - 3.6.14-2
a3b00fb
- disable rpath
a3b00fb
- add -doc subpackage instead of patching out reference to it
a3b00fb
a80e2df
* Thu May 14 2009 Panu Matilainen <pmatilai@redhat.com> - 3.6.14-1
a80e2df
- update to 3.6.14 (http://www.sqlite.org/releaselog/3_6_14.html)
9d202ae
- merge-review cosmetics (#226429)
9d202ae
  - drop ancient sqlite3 obsoletes
9d202ae
  - fix tab vs space whitespace issues
9d202ae
  - remove commas from summaries
83462ab
- fixup io-test fsync expectations wrt SQLITE_DISABLE_DIRSYNC
9d202ae
0c6ef34
* Wed Apr 15 2009 Panu Matilainen <pmatilai@redhat.com> - 3.6.13-1
0c6ef34
- update to 3.6.13
0c6ef34
c5209b6
* Thu Apr 09 2009 Dennis Gilmore <dennis@ausil.us> - 3.6.12-3
c5209b6
- apply upstream patch for memory alignment issue (#494906)
c5209b6
0da1b09
* Tue Apr 07 2009 Panu Matilainen <pmatilai@redhat.com> - 3.6.12-2
0da1b09
- disable strict aliasing to work around brokenness on 3.6.12 (#494266)
0da1b09
- run test-suite on build but let it fail for now
0da1b09
1393d4e
* Fri Apr 03 2009 Panu Matilainen <pmatilai@redhat.com> - 3.6.12-1
1393d4e
- update to 3.6.12 (#492662)
1393d4e
- remove reference to non-existent sqlite-doc from manual (#488883)
1393d4e
5b48bde
* Wed Feb 25 2009 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 3.6.10-4
5b48bde
- Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild
5b48bde
57f6954
* Wed Feb 04 2009 Panu Matilainen <pmatilai@redhat.com> - 3.6.10-3
57f6954
- enable RTREE and FTS3 extensions (#481417)
57f6954
e201d7b
* Thu Jan 22 2009 Panu Matilainen <pmatilai@redhat.com> - 3.6.10-2
e201d7b
- upstream fix yum breakage caused by new keywords (#481189)
e201d7b
bc56a18
* Thu Jan 22 2009 Panu Matilainen <pmatilai@redhat.com> - 3.6.10-1
bc56a18
- update to 3.6.10
bc56a18
95bd238
* Wed Dec 31 2008 Panu Matilainen <pmatilai@redhat.com> - 3.6.7-1
95bd238
- update to 3.6.7
95bd238
- avoid lemon ending up in main sqlite package too
95bd238
e30c1c7
* Fri Dec 05 2008 Panu Matilainen <pmatilai@redhat.com> - 3.6.6.2-4
e30c1c7
- add lemon subpackage
e30c1c7
0bb9e3a
* Thu Dec  4 2008 Matthias Clasen <mclasen@redhat.com> - 3.6.6.2-3
0bb9e3a
- Rebuild for pkg-config provides 
0bb9e3a
f5ed264
* Tue Dec 02 2008 Panu Matilainen <pmatilai@redhat.com> - 3.6.6.2-2
f5ed264
- require tcl(abi) in sqlite-tcl subpackage (#474034)
f5ed264
- move tcl extensions to arch-specific location
f5ed264
- enable dependency extraction on the tcl dso
f5ed264
- require pkgconfig in sqlite-devel
f5ed264
cb487c9
* Sat Nov 29 2008 Panu Matilainen <pmatilai@redhat.com> - 3.6.6.2-1
cb487c9
- update to 3.6.6.2
cb487c9
2182006
* Sat Nov 08 2008 Panu Matilainen <pmatilai@redhat.com> - 3.6.4-1
2182006
- update to 3.6.4
2182006
- drop patches already upstream
2182006
778c041
* Mon Sep 22 2008 Panu Matilainen <pmatilai@redhat.com> - 3.5.9-2
778c041
- Remove references to temporary registers from cache on release (#463061)
778c041
- Enable loading of external extensions (#457433)
778c041
11e1913
* Tue Jun 17 2008 Stepan Kasal <skasal@redhat.com> - 3.5.9-1
11e1913
- update to 3.5.9
11e1913
debaecc
* Wed Apr 23 2008 Panu Matilainen <pmatilai@redhat.com> - 3.5.8-1
debaecc
- update to 3.5.8
debaecc
- provide full version in pkg-config (#443692)
debaecc
f32dde3
* Mon Mar 31 2008 Panu Matilainen <pmatilai@redhat.com> - 3.5.6-2
f32dde3
- remove reference to static libs from -devel description (#439376)
f32dde3
f12ee82
* Tue Feb 12 2008 Panu Matilainen <pmatilai@redhat.com> - 3.5.6-1
f12ee82
- update to 3.5.6
f12ee82
- also fixes #432447
f12ee82
a75a4db
* Fri Jan 25 2008 Panu Matilainen <pmatilai@redhat.com> - 3.5.4-3
a75a4db
- enable column metadata API (#430258)
a75a4db
f80fbbe
* Tue Jan 08 2008 Panu Matilainen <pmatilai@redhat.com> - 3.5.4-2
f80fbbe
- avoid packaging CVS directory as documentation (#427755)
f80fbbe
16115b8
* Fri Dec 21 2007 Panu Matilainen <pmatilai@redhat.com> - 3.5.4-1
16115b8
- Update to 3.5.4 (#413801)
16115b8
f1af58c
* Fri Sep 28 2007 Panu Matilainen <pmatilai@redhat.com> - 3.4.2-3
f1af58c
- Add another build conditional for enabling %%check
f1af58c
8fe2169
* Fri Sep 28 2007 Panu Matilainen <pmatilai@redhat.com> - 3.4.2-2
01143dc
- Use bconds for the spec build conditionals
01143dc
- Enable -tcl subpackage again (#309041)
01143dc
Paul Nasrat eb16c7d
* Wed Aug 15 2007 Paul Nasrat <pnasrat@redhat.com> - 3.4.2-1
Paul Nasrat eb16c7d
- Update to 3.4.2
Paul Nasrat eb16c7d
Paul Nasrat 40ea45c
* Sat Jul 21 2007 Paul Nasrat <pnasrat@redhat.com> - 3.4.1-1
Paul Nasrat 40ea45c
- Update to 3.4.1
Paul Nasrat 40ea45c
Paul Nasrat b9100e2
* Sun Jun 24 2007 Paul Nasrat <pnsarat@redhat.com> - 3.4.0-2
Paul Nasrat b9100e2
- Disable load for now (#245486)
Paul Nasrat b9100e2
Paul Nasrat 2f6acee
* Tue Jun 19 2007 Paul Nasrat <pnasrat@redhat.com> - 3.4.0-1
Paul Nasrat 2f6acee
- Update to 3.4.0
Paul Nasrat 2f6acee
Paul Nasrat d869240
* Fri Jun 01 2007 Paul Nasrat <pnasrat@redhat.com> - 3.3.17-2
Paul Nasrat d869240
- Enable load 
Paul Nasrat d869240
- Build fts1 and fts2
Paul Nasrat 94c54e7
- Don't sync on dirs (#237427)
Paul Nasrat d869240
Paul Nasrat d02c06c
* Tue May 29 2007 Paul Nasrat <pnasrat@redhat.com> - 3.3.17-1
Paul Nasrat d02c06c
- Update to 3.3.17
Paul Nasrat d02c06c
Paul Nasrat 9972207
* Mon Mar 19 2007 Paul Nasrat <pnasrat@redhat.com> - 3.3.13-1
Paul Nasrat 9972207
- Update to 3.3.13
Paul Nasrat 9972207
Paul Nasrat fc6d77a
* Fri Aug 11 2006 Paul Nasrat <pnasrat@redhat.com> - 3.3.6-2
Paul Nasrat fc6d77a
- Fix conditional typo (patch from Gareth Armstrong)
Paul Nasrat fc6d77a
59a588a
* Wed Jul 12 2006 Jesse Keating <jkeating@redhat.com> - 3.3.6-1.1
59a588a
- rebuild
59a588a
Paul Nasrat 0ea3bf2
* Mon Jun 26 2006 Paul Nasrat <pnasrat@redhat.com> - 3.3.6-1
Paul Nasrat 0ea3bf2
- Update to 3.3.6
Paul Nasrat 0ea3bf2
- Fix typo  (#189647)
Paul Nasrat 0ea3bf2
- Enable threading fixes (#181298)
Paul Nasrat 0ea3bf2
- Conditionalize static library
Paul Nasrat 0ea3bf2
Paul Nasrat 0795915
* Mon Apr 17 2006 Paul Nasrat <pnasrat@redhat.com> - 3.3.5-1
Paul Nasrat 0795915
- Update to 3.3.5
Paul Nasrat 0795915
b905003
* Fri Feb 10 2006 Jesse Keating <jkeating@redhat.com> - 3.3.3-1.2
b905003
- bump again for double-long bug on ppc(64)
b905003
0fd446b
* Tue Feb 07 2006 Jesse Keating <jkeating@redhat.com> - 3.3.3-1.1
0fd446b
- rebuilt for new gcc4.1 snapshot and glibc changes
0fd446b
a71c3f8
* Tue Jan 31 2006 Christopher Aillon <caillon@redhat.com> - 3.3.3-1
a71c3f8
- Update to 3.3.3
a71c3f8
a394dc6
* Tue Jan 31 2006 Christopher Aillon <caillon@redhat.com> - 3.3.2-1
a394dc6
- Update to 3.3.2
a394dc6
Paul Nasrat 8b0e8b3
* Tue Jan 24 2006 Paul Nasrat <pnasrat@redhat.com> - 3.2.8-1
Paul Nasrat 8b0e8b3
- Add --enable-threadsafe (Nicholas Miell)
Paul Nasrat 8b0e8b3
- Update to 3.2.8
Paul Nasrat 8b0e8b3
4e0116a
* Fri Dec 09 2005 Jesse Keating <jkeating@redhat.com>
4e0116a
- rebuilt
4e0116a
455084c
* Tue Oct  4 2005 Jeremy Katz <katzj@redhat.com> - 3.2.7-2
455084c
- no more static file or libtool archive (#169874) 
455084c
Florian La Roche 4d69ef8
* Wed Sep 28 2005 Florian La Roche <laroche@redhat.com>
Florian La Roche 4d69ef8
- Upgrade to 3.2.7 release.
Florian La Roche 4d69ef8
Florian La Roche 634b37d
* Thu Sep 22 2005 Florian La Roche <laroche@redhat.com>
Florian La Roche 634b37d
- Upgrade to 3.2.6 release.
Florian La Roche 634b37d
Florian La Roche 6eced65
* Sun Sep 11 2005 Florian La Roche <laroche@redhat.com>
Florian La Roche 6eced65
- Upgrade to 3.2.5 release.
Florian La Roche 6eced65
2abe230
* Fri Jul  8 2005 Roland McGrath <roland@redhat.com> - 3.2.2-1
2abe230
- Upgrade to 3.2.2 release.
2abe230
61bc2da
* Sat Apr  9 2005 Warren Togami <wtogami@redhat.com> - 3.1.2-3
61bc2da
- fix buildreqs (#154298)
61bc2da
0242ca7
* Mon Apr  4 2005 Jeremy Katz <katzj@redhat.com> - 3.1.2-2
0242ca7
- disable tcl subpackage
0242ca7
jbj 2680542
* Wed Mar  9 2005 Jeff Johnson <jbj@redhat.com> 3.1.2-1
jbj 2680542
- rename to "sqlite" from "sqlite3" (#149719, #150012).
jbj 2680542
jbj 2680542
* Wed Feb 16 2005 Jeff Johnson <jbj@jbj.org> 3.1.2-1
jbj 2680542
- upgrade to 3.1.2.
jbj 2680542
- add sqlite3-tcl sub-package.
jbj 2680542
jbj 2680542
* Sat Feb  5 2005 Jeff Johnson <jbj@jbj.org> 3.0.8-3
jbj 2680542
- repackage for fc4.
jbj 2680542
jbj 2680542
* Mon Jan 17 2005 R P Herrold <info@owlriver.com> 3.0.8-2orc
2abe230
- fix a man page nameing conflict when co-installed with sqlite-2, as
jbj 2680542
  is permissible