2007-09-28 12:18:24 +00:00
|
|
|
# bcond default logic is nicely backwards...
|
|
|
|
%bcond_without tcl
|
|
|
|
%bcond_with static
|
2009-04-07 08:35:41 +00:00
|
|
|
%bcond_without check
|
2005-07-14 20:17:04 +00:00
|
|
|
|
2017-08-29 12:33:22 +00:00
|
|
|
%define realver 3200100
|
|
|
|
%define docver 3200100
|
|
|
|
%define rpmver 3.20.1
|
2009-05-18 08:06:21 +00:00
|
|
|
|
2005-03-09 20:01:56 +00:00
|
|
|
Summary: Library that implements an embeddable SQL database engine
|
|
|
|
Name: sqlite
|
2010-12-09 12:16:02 +00:00
|
|
|
Version: %{rpmver}
|
2017-08-29 12:33:22 +00:00
|
|
|
Release: 1%{?dist}
|
2005-03-09 20:01:56 +00:00
|
|
|
License: Public Domain
|
2009-05-14 08:46:20 +00:00
|
|
|
Group: Applications/Databases
|
2005-03-09 20:01:56 +00:00
|
|
|
URL: http://www.sqlite.org/
|
2014-02-23 10:27:59 +00:00
|
|
|
|
2017-01-03 08:49:27 +00:00
|
|
|
Source0: http://www.sqlite.org/2017/sqlite-src-%{realver}.zip
|
|
|
|
Source1: http://www.sqlite.org/2017/sqlite-doc-%{docver}.zip
|
|
|
|
Source2: http://www.sqlite.org/2017/sqlite-autoconf-%{realver}.tar.gz
|
2010-03-10 15:20:36 +00:00
|
|
|
# Support a system-wide lemon template
|
2011-07-13 07:09:23 +00:00
|
|
|
Patch1: sqlite-3.6.23-lemon-system-template.patch
|
2011-04-29 10:30:08 +00:00
|
|
|
# Shut up stupid tests depending on system settings of allowed open fd's
|
2011-07-13 07:09:23 +00:00
|
|
|
Patch2: sqlite-3.7.7.1-stupid-openfiles-test.patch
|
2012-04-25 06:42:32 +00:00
|
|
|
# sqlite >= 3.7.10 is buggy if malloc_usable_size() is detected, disable it:
|
|
|
|
# https://bugzilla.redhat.com/show_bug.cgi?id=801981
|
|
|
|
# http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=665363
|
2016-04-25 07:56:49 +00:00
|
|
|
Patch3: sqlite-3.12.2-no-malloc-usable-size.patch
|
2013-09-16 11:40:05 +00:00
|
|
|
# Temporary workaround for failed percentile test, see patch for details
|
2014-10-21 08:12:19 +00:00
|
|
|
Patch4: sqlite-3.8.0-percentile-test.patch
|
2015-05-18 08:49:28 +00:00
|
|
|
# Disable test failing due to tcl regression. Details in patch file.
|
|
|
|
Patch6: sqlite-3.8.10.1-tcl-regress-tests.patch
|
2017-01-04 14:32:00 +00:00
|
|
|
# Disable test date-2.2c on i686
|
|
|
|
Patch7: sqlite-3.16-datetest-2.2c.patch
|
2017-04-03 11:25:44 +00:00
|
|
|
# Modify sync2.test to pass with DIRSYNC turned off
|
|
|
|
Patch8: sqlite-3.18.0-sync2-dirsync.patch
|
2013-09-16 11:40:05 +00:00
|
|
|
|
2007-06-04 12:44:53 +00:00
|
|
|
BuildRequires: ncurses-devel readline-devel glibc-devel
|
2013-04-29 13:27:59 +00:00
|
|
|
BuildRequires: autoconf
|
2007-09-28 12:18:24 +00:00
|
|
|
%if %{with tcl}
|
2008-12-02 20:35:27 +00:00
|
|
|
BuildRequires: /usr/bin/tclsh
|
2005-07-14 20:17:04 +00:00
|
|
|
BuildRequires: tcl-devel
|
2014-05-28 11:07:52 +00:00
|
|
|
%{!?tcl_version: %global tcl_version 8.6}
|
2008-12-02 14:44:36 +00:00
|
|
|
%{!?tcl_sitearch: %global tcl_sitearch %{_libdir}/tcl%{tcl_version}}
|
2005-07-14 20:17:04 +00:00
|
|
|
%endif
|
2005-03-09 20:01:56 +00:00
|
|
|
|
2016-02-08 15:35:43 +00:00
|
|
|
Requires: %{name}-libs = %{version}-%{release}
|
|
|
|
|
2016-02-23 13:09:23 +00:00
|
|
|
# Ensure updates from pre-split work on multi-lib systems
|
|
|
|
Obsoletes: %{name} < 3.11.0-1
|
|
|
|
Conflicts: %{name} < 3.11.0-1
|
|
|
|
|
2005-03-09 20:01:56 +00:00
|
|
|
%description
|
|
|
|
SQLite is a C library that implements an SQL database engine. A large
|
|
|
|
subset of SQL92 is supported. A complete database is stored in a
|
|
|
|
single disk file. The API is designed for convenience and ease of use.
|
|
|
|
Applications that link against SQLite can enjoy the power and
|
2006-06-26 18:48:38 +00:00
|
|
|
flexibility of an SQL database without the administrative hassles of
|
2005-07-14 20:17:04 +00:00
|
|
|
supporting a separate database server. Version 2 and version 3 binaries
|
2005-03-09 20:01:56 +00:00
|
|
|
are named to permit each to be installed on a single host
|
|
|
|
|
|
|
|
%package devel
|
2009-05-14 08:46:20 +00:00
|
|
|
Summary: Development tools for the sqlite3 embeddable SQL database engine
|
2005-03-09 20:01:56 +00:00
|
|
|
Group: Development/Libraries
|
2016-02-23 13:10:47 +00:00
|
|
|
Requires: %{name}%{?_isa} = %{version}-%{release}
|
2008-12-02 14:44:36 +00:00
|
|
|
Requires: pkgconfig
|
2005-03-09 20:01:56 +00:00
|
|
|
|
|
|
|
%description devel
|
2008-03-31 12:22:41 +00:00
|
|
|
This package contains the header files and development documentation
|
|
|
|
for %{name}. If you like to develop programs using %{name}, you will need
|
|
|
|
to install %{name}-devel.
|
2005-03-09 20:01:56 +00:00
|
|
|
|
2016-02-08 15:35:43 +00:00
|
|
|
%package libs
|
|
|
|
Summary: Shared library for the sqlite3 embeddable SQL database engine.
|
|
|
|
Group: Development/Libraries
|
|
|
|
|
2016-02-23 13:09:23 +00:00
|
|
|
# Ensure updates from pre-split work on multi-lib systems
|
|
|
|
Obsoletes: %{name} < 3.11.0-1
|
|
|
|
Conflicts: %{name} < 3.11.0-1
|
|
|
|
|
2016-02-08 15:35:43 +00:00
|
|
|
%description libs
|
|
|
|
This package contains the shared library for %{name}.
|
|
|
|
|
2009-05-18 08:06:21 +00:00
|
|
|
%package doc
|
|
|
|
Summary: Documentation for sqlite
|
|
|
|
Group: Documentation
|
2011-02-02 13:41:11 +00:00
|
|
|
BuildArch: noarch
|
2009-05-18 08:06:21 +00:00
|
|
|
|
|
|
|
%description doc
|
|
|
|
This package contains most of the static HTML files that comprise the
|
|
|
|
www.sqlite.org website, including all of the SQL Syntax and the
|
|
|
|
C/C++ interface specs and other miscellaneous documentation.
|
|
|
|
|
2008-12-05 20:06:32 +00:00
|
|
|
%package -n lemon
|
|
|
|
Summary: A parser generator
|
|
|
|
Group: Development/Tools
|
|
|
|
|
|
|
|
%description -n lemon
|
|
|
|
Lemon is an LALR(1) parser generator for C or C++. It does the same
|
|
|
|
job as bison and yacc. But lemon is not another bison or yacc
|
|
|
|
clone. It uses a different grammar syntax which is designed to reduce
|
|
|
|
the number of coding errors. Lemon also uses a more sophisticated
|
|
|
|
parsing engine that is faster than yacc and bison and which is both
|
|
|
|
reentrant and thread-safe. Furthermore, Lemon implements features
|
|
|
|
that can be used to eliminate resource leaks, making is suitable for
|
|
|
|
use in long-running programs such as graphical user interfaces or
|
|
|
|
embedded controllers.
|
|
|
|
|
2007-09-28 12:18:24 +00:00
|
|
|
%if %{with tcl}
|
2005-03-09 20:01:56 +00:00
|
|
|
%package tcl
|
2009-05-14 08:46:20 +00:00
|
|
|
Summary: Tcl module for the sqlite3 embeddable SQL database engine
|
2005-03-09 20:01:56 +00:00
|
|
|
Group: Development/Languages
|
|
|
|
Requires: %{name} = %{version}-%{release}
|
2008-12-02 14:44:36 +00:00
|
|
|
Requires: tcl(abi) = %{tcl_version}
|
2005-03-09 20:01:56 +00:00
|
|
|
|
|
|
|
%description tcl
|
|
|
|
This package contains the tcl modules for %{name}.
|
2014-04-02 14:28:53 +00:00
|
|
|
|
|
|
|
%package analyzer
|
|
|
|
Summary: An analysis program for sqlite3 database files
|
|
|
|
Group: Development/Tools
|
|
|
|
Requires: %{name} = %{version}-%{release}
|
|
|
|
Requires: tcl(abi) = %{tcl_version}
|
|
|
|
|
|
|
|
%description analyzer
|
|
|
|
This package contains the analysis program for %{name}.
|
2005-03-09 20:01:56 +00:00
|
|
|
%endif
|
|
|
|
|
2005-07-14 20:17:04 +00:00
|
|
|
%prep
|
2010-12-09 12:16:02 +00:00
|
|
|
%setup -q -a1 -n %{name}-src-%{realver}
|
2017-05-24 07:30:45 +00:00
|
|
|
%patch1 -p1
|
|
|
|
%patch2 -p1
|
|
|
|
%patch3 -p1
|
|
|
|
%patch4 -p1
|
|
|
|
%patch6 -p1
|
2017-01-04 14:32:00 +00:00
|
|
|
%ifarch %{ix86}
|
2017-05-24 07:30:45 +00:00
|
|
|
%patch7 -p1
|
2017-01-04 14:32:00 +00:00
|
|
|
%endif
|
2017-05-24 07:30:45 +00:00
|
|
|
%patch8 -p1
|
2005-03-09 20:01:56 +00:00
|
|
|
|
2013-04-29 13:27:59 +00:00
|
|
|
autoconf # Rerun with new autoconf to add support for aarm64
|
|
|
|
|
2005-03-09 20:01:56 +00:00
|
|
|
%build
|
2016-01-22 10:02:57 +00:00
|
|
|
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 -DSQLITE_ENABLE_DBSTAT_VTAB=1 \
|
2016-01-26 11:28:37 +00:00
|
|
|
-DSQLITE_ENABLE_FTS3_PARENTHESIS=1 -DSQLITE_ENABLE_JSON1=1 \
|
2016-01-22 10:02:57 +00:00
|
|
|
-Wall -fno-strict-aliasing"
|
2007-09-28 12:18:24 +00:00
|
|
|
%configure %{!?with_tcl:--disable-tcl} \
|
2017-08-22 15:13:34 +00:00
|
|
|
--enable-fts5 \
|
2006-06-26 18:48:38 +00:00
|
|
|
--enable-threadsafe \
|
2008-09-30 05:43:16 +00:00
|
|
|
--enable-threads-override-locks \
|
2009-04-03 09:49:27 +00:00
|
|
|
--enable-load-extension \
|
2009-05-14 08:46:20 +00:00
|
|
|
%{?with_tcl:TCLLIBDIR=%{tcl_sitearch}/sqlite3}
|
2008-05-13 05:41:20 +00:00
|
|
|
|
2009-05-18 08:06:21 +00:00
|
|
|
# rpath removal
|
|
|
|
sed -i 's|^hardcode_libdir_flag_spec=.*|hardcode_libdir_flag_spec=""|g' libtool
|
|
|
|
sed -i 's|^runpath_var=LD_RUN_PATH|runpath_var=DIE_RPATH_DIE|g' libtool
|
|
|
|
|
2007-06-24 09:26:36 +00:00
|
|
|
make %{?_smp_mflags}
|
2005-03-09 20:01:56 +00:00
|
|
|
|
2014-04-02 14:28:53 +00:00
|
|
|
# Build sqlite3_analyzer
|
|
|
|
# depends on tcl
|
|
|
|
%if %{with tcl}
|
|
|
|
make %{?_smp_mflags} sqlite3_analyzer
|
|
|
|
%endif
|
|
|
|
|
2005-03-09 20:01:56 +00:00
|
|
|
%install
|
2009-04-03 09:49:27 +00:00
|
|
|
make DESTDIR=${RPM_BUILD_ROOT} install
|
2005-03-09 20:01:56 +00:00
|
|
|
|
2008-12-05 20:06:32 +00:00
|
|
|
install -D -m0644 sqlite3.1 $RPM_BUILD_ROOT/%{_mandir}/man1/sqlite3.1
|
|
|
|
install -D -m0755 lemon $RPM_BUILD_ROOT/%{_bindir}/lemon
|
2008-12-05 20:13:42 +00:00
|
|
|
install -D -m0644 tool/lempar.c $RPM_BUILD_ROOT/%{_datadir}/lemon/lempar.c
|
2005-03-09 20:01:56 +00:00
|
|
|
|
2008-12-02 14:44:36 +00:00
|
|
|
%if %{with tcl}
|
|
|
|
# fix up permissions to enable dep extraction
|
|
|
|
chmod 0755 ${RPM_BUILD_ROOT}/%{tcl_sitearch}/sqlite3/*.so
|
2014-04-02 14:28:53 +00:00
|
|
|
# Install sqlite3_analyzer
|
|
|
|
install -D -m0755 sqlite3_analyzer $RPM_BUILD_ROOT/%{_bindir}/sqlite3_analyzer
|
2008-12-02 14:44:36 +00:00
|
|
|
%endif
|
|
|
|
|
2007-09-28 12:18:24 +00:00
|
|
|
%if ! %{with static}
|
2005-10-04 18:36:00 +00:00
|
|
|
rm -f $RPM_BUILD_ROOT/%{_libdir}/*.{la,a}
|
2006-06-26 18:48:38 +00:00
|
|
|
%endif
|
2005-10-04 18:36:00 +00:00
|
|
|
|
2007-09-28 12:49:12 +00:00
|
|
|
%if %{with check}
|
2005-03-09 20:01:56 +00:00
|
|
|
%check
|
2012-06-25 14:00:24 +00:00
|
|
|
# XXX shell tests are broken due to loading system libsqlite3, work around...
|
|
|
|
export LD_LIBRARY_PATH=`pwd`/.libs
|
2012-04-25 06:42:32 +00:00
|
|
|
export MALLOC_CHECK_=3
|
2016-08-22 19:06:29 +00:00
|
|
|
|
|
|
|
# csv01 hangs on all non-intel archs i've tried
|
|
|
|
%ifarch x86_64 %{ix86}
|
|
|
|
%else
|
2016-08-22 08:01:11 +00:00
|
|
|
rm test/csv01.test
|
|
|
|
%endif
|
2016-08-22 19:06:29 +00:00
|
|
|
|
|
|
|
%ifarch s390x ppc64
|
|
|
|
rm test/fts3conf.test
|
2005-07-14 20:17:04 +00:00
|
|
|
%endif
|
2016-08-22 19:06:29 +00:00
|
|
|
|
|
|
|
make test
|
|
|
|
%endif # with check
|
|
|
|
|
2016-02-08 15:35:43 +00:00
|
|
|
%post libs -p /sbin/ldconfig
|
2005-03-09 20:01:56 +00:00
|
|
|
|
2016-02-08 15:35:43 +00:00
|
|
|
%postun libs -p /sbin/ldconfig
|
2005-03-09 20:01:56 +00:00
|
|
|
|
|
|
|
%files
|
2008-12-31 08:39:40 +00:00
|
|
|
%{_bindir}/sqlite3
|
2005-03-09 20:01:56 +00:00
|
|
|
%{_mandir}/man?/*
|
|
|
|
|
2016-02-08 15:35:43 +00:00
|
|
|
%files libs
|
|
|
|
%doc README.md
|
|
|
|
%{_libdir}/*.so.*
|
|
|
|
|
2005-03-09 20:01:56 +00:00
|
|
|
%files devel
|
|
|
|
%{_includedir}/*.h
|
|
|
|
%{_libdir}/*.so
|
|
|
|
%{_libdir}/pkgconfig/*.pc
|
2007-09-28 12:18:24 +00:00
|
|
|
%if %{with static}
|
2006-06-26 18:48:38 +00:00
|
|
|
%{_libdir}/*.a
|
|
|
|
%exclude %{_libdir}/*.la
|
|
|
|
%endif
|
2008-12-02 14:44:36 +00:00
|
|
|
|
2009-05-18 08:06:21 +00:00
|
|
|
%files doc
|
2011-04-21 10:51:36 +00:00
|
|
|
%doc %{name}-doc-%{docver}/*
|
2009-05-18 08:06:21 +00:00
|
|
|
|
2008-12-05 20:06:32 +00:00
|
|
|
%files -n lemon
|
|
|
|
%{_bindir}/lemon
|
|
|
|
%{_datadir}/lemon
|
|
|
|
|
2007-09-28 12:18:24 +00:00
|
|
|
%if %{with tcl}
|
2005-03-09 20:01:56 +00:00
|
|
|
%files tcl
|
2008-12-02 14:44:36 +00:00
|
|
|
%{tcl_sitearch}/sqlite3
|
2014-04-02 14:28:53 +00:00
|
|
|
|
|
|
|
%files analyzer
|
|
|
|
%{_bindir}/sqlite3_analyzer
|
2005-04-04 18:15:46 +00:00
|
|
|
%endif
|
2005-03-09 20:01:56 +00:00
|
|
|
|
|
|
|
%changelog
|
2017-08-29 12:33:22 +00:00
|
|
|
* Mon Aug 28 2017 Petr Kubat <pkubat@redhat.com> - 3.20.1-1
|
|
|
|
- Updated to version 3.20.1 (https://sqlite.org/releaselog/3_20_1.html)
|
|
|
|
|
2017-08-22 15:13:34 +00:00
|
|
|
* Tue Aug 22 2017 Kalev Lember <klember@redhat.com> - 3.20.0-2
|
|
|
|
- Build with --enable-fts5
|
|
|
|
|
2017-08-02 06:06:40 +00:00
|
|
|
* Wed Aug 02 2017 Petr Kubat <pkubat@redhat.com> - 3.20.0-1
|
|
|
|
- Updated to version 3.20.0 (https://sqlite.org/releaselog/3_20_0.html)
|
|
|
|
|
2017-07-27 19:10:47 +00:00
|
|
|
* Thu Jul 27 2017 Fedora Release Engineering <releng@fedoraproject.org> - 3.19.3-2
|
|
|
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_27_Mass_Rebuild
|
|
|
|
|
2017-07-12 06:48:49 +00:00
|
|
|
* Wed Jul 12 2017 Petr Kubat <pkubat@redhat.com> - 3.19.3-1
|
|
|
|
- Updated to version 3.19.3 (https://sqlite.org/releaselog/3_19_3.html)
|
|
|
|
- Better detection of CVE-2017-10989 (#1469673)
|
|
|
|
|
2017-05-24 07:30:45 +00:00
|
|
|
* Thu May 25 2017 Petr Kubat <pkubat@redhat.com> - 3.19.1-1
|
|
|
|
- Updated to version 3.19.1 (https://sqlite.org/releaselog/3_19_1.html)
|
|
|
|
|
2017-04-03 11:25:44 +00:00
|
|
|
* Mon Apr 03 2017 Petr Kubat <pkubat@redhat.com> - 3.18.0-1
|
|
|
|
- Updated to version 3.18.0 (https://sqlite.org/releaselog/3_18_0.html)
|
|
|
|
- Modify sync2.test to pass with DIRSYNC turned off
|
|
|
|
|
2017-03-02 09:24:48 +00:00
|
|
|
* Thu Mar 02 2017 Petr Kubat <pkubat@redhat.com> - 3.17.0-2
|
|
|
|
- Rebuild using newest gcc (#1428286)
|
|
|
|
|
2017-02-21 10:23:25 +00:00
|
|
|
* Tue Feb 21 2017 Petr Kubat <pkubat@redhat.com> - 3.17.0-1
|
|
|
|
- Updated to version 3.17.0 (https://sqlite.org/releaselog/3_17_0.html)
|
|
|
|
|
2017-02-11 13:53:23 +00:00
|
|
|
* Sat Feb 11 2017 Fedora Release Engineering <releng@fedoraproject.org> - 3.16.2-3
|
|
|
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_26_Mass_Rebuild
|
|
|
|
|
2017-01-12 16:30:42 +00:00
|
|
|
* Thu Jan 12 2017 Igor Gnatenko <ignatenko@redhat.com> - 3.16.2-2
|
|
|
|
- Rebuild for readline 7.x
|
|
|
|
|
2017-01-07 09:37:24 +00:00
|
|
|
* Sat Jan 7 2017 Jakub Dorňák <jakub.dornak@misli.cz> - 3.16.2-1
|
|
|
|
- Updated to version 3.16.2 (https://sqlite.org/releaselog/3_16_2.html)
|
|
|
|
|
2017-01-04 07:22:15 +00:00
|
|
|
* Wed Jan 4 2017 Jakub Dorňák <jakub.dornak@misli.cz> - 3.16.1-1
|
|
|
|
- Updated to version 3.16.1 (https://sqlite.org/releaselog/3_16_1.html)
|
|
|
|
|
2017-01-03 08:49:27 +00:00
|
|
|
* Tue Jan 3 2017 Jakub Dorňák <jakub.dornak@misli.cz> - 3.16.0-1
|
|
|
|
- Updated to version 3.16.0 (https://sqlite.org/releaselog/3_16_0.html)
|
|
|
|
|
2016-09-21 08:20:57 +00:00
|
|
|
* Wed Sep 21 2016 Jakub Dorňák <jdornak@redhat.com> - 3.14.2-1
|
|
|
|
- Updated to version 3.14.2 (https://sqlite.org/releaselog/3_14_2.html)
|
|
|
|
|
2016-08-15 11:17:42 +00:00
|
|
|
* Mon Aug 15 2016 Jakub Dorňák <jdornak@redhat.com> - 3.14.1-1
|
|
|
|
- Updated to version 3.14.1 (https://sqlite.org/releaselog/3_14_1.html)
|
|
|
|
|
2016-05-24 15:53:46 +00:00
|
|
|
* Tue May 24 2016 Jakub Dorňák <jdornak@redhat.com> - 3.13.0-1
|
|
|
|
- Updated to version 3.13.0 (https://sqlite.org/releaselog/3_13_0.html)
|
|
|
|
|
2016-04-25 07:56:49 +00:00
|
|
|
* Mon Apr 25 2016 Jakub Dorňák <jdornak@redhat.com> - 3.12.2-1
|
|
|
|
- Updated to version 3.12.2 (https://sqlite.org/releaselog/3_12_2.html)
|
|
|
|
|
2016-03-02 12:28:26 +00:00
|
|
|
* Wed Mar 02 2016 Jan Stanek <jstanek@redhat.com> - 3.11.0-3
|
|
|
|
- Release bump for #1312506
|
|
|
|
|
2016-02-23 13:56:37 +00:00
|
|
|
* Tue Feb 23 2016 Nils Philippsen <nils@redhat.com> - 3.11.0-2
|
2016-02-23 13:09:23 +00:00
|
|
|
- add obsoletes/conflicts to make updates on multi-lib systems work (#1310441)
|
2016-02-23 13:10:47 +00:00
|
|
|
- make -devel package depend on arch-specific -libs (not main) package
|
2016-02-23 13:09:23 +00:00
|
|
|
|
2016-02-17 09:41:29 +00:00
|
|
|
* Wed Feb 17 2016 Jan Stanek <jstanek@redhat.com> - 3.11.0-1
|
|
|
|
- Updated to version 3.11.0 (https://sqlite.org/releaselog/3_11_0.html)
|
|
|
|
|
2016-02-08 15:38:15 +00:00
|
|
|
* Mon Feb 08 2016 Jan Stanek <jstanek@redhat.com> - 3.10.2-3
|
2016-02-08 15:35:43 +00:00
|
|
|
- Split the shared libraries to standalone subpackage
|
|
|
|
|
2016-02-05 00:31:46 +00:00
|
|
|
* Fri Feb 05 2016 Fedora Release Engineering <releng@fedoraproject.org> - 3.10.2-2
|
|
|
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_24_Mass_Rebuild
|
|
|
|
|
2016-01-22 10:02:57 +00:00
|
|
|
* Fri Jan 22 2016 Jan Stanek <jstanek@redhat.com> - 3.10.2-1
|
|
|
|
- Updated to version 3.10.2 (http://sqlite.org/releaselog/3_10_2.html)
|
|
|
|
- Enabled JSON1 Extension (rhbz#1277387)
|
|
|
|
- Made test failure nonfatal on MIPS (rhbz#1294888)
|
|
|
|
|
2016-01-13 11:41:02 +00:00
|
|
|
* Wed Jan 13 2016 Jan Stanek <jstanek@redhat.com> - 3.10.0-1
|
|
|
|
- Updated to version 3.10.0 (http://sqlite.org/releaselog/3_10_0.html)
|
|
|
|
|
2015-12-21 14:13:34 +00:00
|
|
|
* Mon Dec 21 2015 Jan Stanek <jstanek@redhat.com> - 3.9.2-1
|
|
|
|
- Updated to version 3.9.2 (http://sqlite.org/releaselog/3_9_2.html)
|
|
|
|
|
2015-12-10 12:07:36 +00:00
|
|
|
* Thu Dec 10 2015 Jan Stanek <jstanek@redhat.com> - 3.9.0-2
|
|
|
|
- Add autoconf amalgamation for stage2 builds.
|
|
|
|
|
2015-10-15 08:18:49 +00:00
|
|
|
* Thu Oct 15 2015 Jan Stanek <jstanek@redhat.com> - 3.9.0-1
|
|
|
|
- Updated to version 3.9.0 (https://sqlite.org/releaselog/3_9_0.html)
|
|
|
|
|
2015-09-22 09:18:02 +00:00
|
|
|
* Tue Sep 22 2015 Jan Stanek <jstanek@redhat.com> - 3.8.11.1-1
|
|
|
|
- Updated to version 3.8.11.1
|
|
|
|
|
2015-07-28 14:00:10 +00:00
|
|
|
* Tue Jul 28 2015 Jan Stanek <jstanek@redhat.com> - 3.8.11-1
|
|
|
|
- Updated to version 3.8.11 (https://sqlite.org/releaselog/3_8_11.html)
|
|
|
|
|
2015-06-19 09:18:43 +00:00
|
|
|
* Fri Jun 19 2015 Jan Stanek <jstanek@redhat.com> - 3.8.10.2-3
|
|
|
|
- Enabled SQLITE_ENABLE_FTS3_PARENTHESIS extension (rhbz#1232301)
|
|
|
|
|
2015-06-19 01:33:52 +00:00
|
|
|
* Fri Jun 19 2015 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 3.8.10.2-2
|
|
|
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_23_Mass_Rebuild
|
|
|
|
|
2015-05-29 08:32:37 +00:00
|
|
|
* Fri May 29 2015 Jan Stanek <jstanek@redhat.com> - 3.8.10.2-1
|
|
|
|
- Updated to version 3.8.10.2 (https://sqlite.org/releaselog/3_8_10_2.html)
|
|
|
|
|
2015-05-18 08:49:28 +00:00
|
|
|
* Mon May 18 2015 Jan Stanek <jstanek@redhat.com> - 3.8.10.1-1
|
|
|
|
- Updated to version 3.8.10.1 (https://www.sqlite.org/releaselog/3_8_10_1.html)
|
|
|
|
|
2015-04-14 09:10:23 +00:00
|
|
|
* Tue Apr 14 2015 Jan Stanek <jstanek@redhat.com> - 3.8.9-1
|
|
|
|
- Updated to version 3.8.9 (https://www.sqlite.org/releaselog/3_8_9.html)
|
|
|
|
|
2015-02-26 14:03:03 +00:00
|
|
|
* Thu Feb 26 2015 Jan Stanek <jstanek@redhat.com> - 3.8.8.3-1
|
|
|
|
- Updated to version 3.8.8.3 (https://sqlite.org/releaselog/3_8_8_3.html)
|
|
|
|
|
2015-02-21 21:25:08 +00:00
|
|
|
* Sat Feb 21 2015 Till Maas <opensource@till.name> - 3.8.8-3
|
|
|
|
- Rebuilt for Fedora 23 Change
|
|
|
|
https://fedoraproject.org/wiki/Changes/Harden_all_packages_with_position-independent_code
|
|
|
|
|
2015-02-03 08:39:36 +00:00
|
|
|
* Tue Feb 03 2015 Jan Stanek <jstanek@redhat.com> - 3.8.8-2
|
|
|
|
- Fixed out-of-date source URLs (rhbz#1188092)
|
|
|
|
|
2015-01-20 08:42:24 +00:00
|
|
|
* Tue Jan 20 2015 Jan Stanek <jstanek@redhat.com> - 3.8.8-1
|
|
|
|
- Updated to version 3.8.8 (https://sqlite.org/releaselog/3_8_8.html)
|
|
|
|
- Recreated patches to work on current version.
|
|
|
|
|
2015-04-14 09:10:23 +00:00
|
|
|
* Fri Dec 12 2014 Jan Stanek <jstanek@redhat.com> - 3.8.7.4-1
|
2014-12-12 11:39:37 +00:00
|
|
|
- Updated to version 3.8.7.4 (http://www.sqlite.org/releaselog/3_8_7_4.html)
|
|
|
|
|
2014-11-25 08:53:16 +00:00
|
|
|
* Tue Nov 25 2014 Jan Stanek <jstanek@redhat.com> - 3.8.7.2-1
|
|
|
|
- Updated to version 3.8.7.2 (http://sqlite.org/releaselog/3_8_7_2.html)
|
|
|
|
|
2014-10-21 08:12:19 +00:00
|
|
|
* Tue Oct 21 2014 Jan Stanek <jstanek@redhat.com> - 3.8.7-1
|
|
|
|
- Updated to version 3.8.7 (http://sqlite.org/releaselog/3_8_7.html)
|
|
|
|
- Dropped patch for problem fixed upstream
|
|
|
|
|
2014-08-22 09:49:05 +00:00
|
|
|
* Tue Aug 19 2014 Jan Stanek <jstanek@redhat.com> - 3.8.6-2
|
|
|
|
- Added auto-selection of Tcl version based on Fedora version
|
|
|
|
|
2014-08-19 08:39:34 +00:00
|
|
|
* Tue Aug 19 2014 Jan Stanek <jstanek@redhat.com> - 3.8.6-1
|
|
|
|
- Updated to version 3.8.6 (http://www.sqlite.org/releaselog/3_8_6.html)
|
|
|
|
|
2014-08-18 03:28:49 +00:00
|
|
|
* Mon Aug 18 2014 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 3.8.5-3
|
|
|
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_21_22_Mass_Rebuild
|
|
|
|
|
2014-06-11 12:09:05 +00:00
|
|
|
* Wed Jun 11 2014 Peter Robinson <pbrobinson@fedoraproject.org> 3.8.5-2
|
|
|
|
- Re-enable tests on aarch64 now they pass again
|
|
|
|
|
2014-06-10 11:26:57 +00:00
|
|
|
* Tue Jun 10 2014 Jan Stanek <jstanek@redhat.com> - 3.8.5-1
|
|
|
|
- Update to version 3.8.5 (http://www.sqlite.org/releaselog/3_8_5.html)
|
|
|
|
- Dropped patch already included upstream
|
|
|
|
|
2014-06-08 07:03:30 +00:00
|
|
|
* Sun Jun 08 2014 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 3.8.4.3-5
|
|
|
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_21_Mass_Rebuild
|
|
|
|
|
2014-06-05 11:07:40 +00:00
|
|
|
* Thu Jun 5 2014 Peter Robinson <pbrobinson@fedoraproject.org> 3.8.4.3-4
|
|
|
|
- Don't make tests fail the build on aarch64 like some of the other arches
|
|
|
|
|
2014-05-28 11:07:52 +00:00
|
|
|
* Wed May 28 2014 Jan Stanek <jstanek@redhat.com> - 3.8.4.3-3
|
|
|
|
- Rebuilt for https://fedoraproject.org/wiki/Changes/f21tcl86 with correct tcl_version
|
|
|
|
|
2014-05-21 10:41:16 +00:00
|
|
|
* Wed May 21 2014 Jaroslav Škarvada <jskarvad@redhat.com> - 3.8.4.3-2
|
|
|
|
- Rebuilt for https://fedoraproject.org/wiki/Changes/f21tcl86
|
|
|
|
|
2014-04-29 09:09:31 +00:00
|
|
|
* Tue Apr 29 2014 Jan Stanek <jstanek@redhat.com> - 3.8.4.3-1
|
|
|
|
- Update to version 3.8.4.3 (http://www.sqlite.org/releaselog/3_8_4_3.html)
|
|
|
|
- Changed patch for rhbz#1075889 to upstream version
|
|
|
|
Related: #1075889
|
|
|
|
|
2014-04-25 08:56:58 +00:00
|
|
|
* Fri Apr 25 2014 Honza Horak <hhorak@redhat.com> - 3.8.4.2-3
|
|
|
|
- Revert part of the upstream commit dca1945aeb3fb005, since it causes
|
|
|
|
nautilus to crash
|
|
|
|
Related: #1075889
|
|
|
|
|
2014-04-02 14:28:53 +00:00
|
|
|
* Wed Apr 02 2014 Jan Stanek <jstanek@redhat.com> 3.8.4.2-2
|
|
|
|
- Added building and shipping of sqlite3_analyzer (#1007159)
|
|
|
|
|
2014-03-28 07:56:31 +00:00
|
|
|
* Fri Mar 28 2014 Jan Stanek <jstanek@redhat.com> 3.8.4.2-1
|
|
|
|
- Update to 3.8.4 (http://www.sqlite.org/releaselog/3_8_4_2.html)
|
|
|
|
|
2014-03-11 12:37:35 +00:00
|
|
|
* Tue Mar 11 2014 Jan Stanek <jstanek@redhat.com> 3.8.4-1
|
|
|
|
- Update to 3.8.4 (http://www.sqlite.org/releaselog/3_8_4.html)
|
|
|
|
|
2014-02-23 10:27:59 +00:00
|
|
|
* Sun Feb 23 2014 Peter Robinson <pbrobinson@fedoraproject.org> 3.8.3-2
|
|
|
|
- Re-enable check on ARM/aarch64 as failing test fixed upstream for non x86 arches
|
|
|
|
- Modernise spec
|
|
|
|
|
2014-02-11 11:09:39 +00:00
|
|
|
* Tue Feb 11 2014 Jan Stanek <jstanek@redhat.com> 3.8.3-1
|
|
|
|
- Update to 3.8.3 (http://www.sqlite.org/releaselog/3_8_3.html)
|
|
|
|
- Dropped man-page patch - included upstream
|
|
|
|
|
2014-01-06 15:06:17 +00:00
|
|
|
* Mon Jan 6 2014 Peter Robinson <pbrobinson@fedoraproject.org> 3.8.2-2
|
|
|
|
- Add aarch64 to all the other arch excludes for tests
|
|
|
|
|
2013-12-10 08:55:10 +00:00
|
|
|
* Tue Dec 10 2013 Jan Stanek <jstanek@redhat.com> - 3.8.2-1
|
|
|
|
- Update to 3.8.2 (http://www.sqlite.org/releaselog/3_8_2.html)
|
|
|
|
|
2013-11-26 15:51:45 +00:00
|
|
|
* Tue Nov 26 2013 Debarshi Ray <rishi@fedoraproject.org> - 3.8.1-2
|
|
|
|
- Do not use transitive WHERE-clause constraints on LEFT JOINs (#1034714)
|
|
|
|
|
2013-10-22 13:10:28 +00:00
|
|
|
* Tue Oct 22 2013 Jan Stanek <jstanek@redhat.com> - 3.8.1-1
|
|
|
|
- Update to 3.8.1 (http://www.sqlite.org/releaselog/3_8_1.html)
|
|
|
|
|
2013-09-26 12:42:51 +00:00
|
|
|
* Thu Sep 26 2013 Jan Stanek <jstanek@redhat.com> - 3.8.0.2-4
|
|
|
|
- Removed fullversioned provides and start using full version for rpm version
|
|
|
|
|
2013-09-23 08:58:43 +00:00
|
|
|
* Mon Sep 23 2013 Jan Stanek <jstanek@redhat.com> - 3.8.0-3
|
|
|
|
- Added fullversioned Provides to fix broken dependency
|
|
|
|
|
2013-09-16 11:40:05 +00:00
|
|
|
* Mon Sep 16 2013 Jan Stanek <jstanek@redhat.com> - 3.8.0-2
|
|
|
|
- Dropped problematic percentile-2.1.50 test
|
|
|
|
|
2013-09-05 12:20:03 +00:00
|
|
|
* Thu Sep 05 2013 Jan Stanek <jstanek@redhat.com> - 3.8.0-1
|
|
|
|
- Update to 3.8.0.2 (http://sqlite.org/releaselog/3_8_0_2.html)
|
|
|
|
|
2013-08-04 15:38:42 +00:00
|
|
|
* Sun Aug 04 2013 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 3.7.17-2
|
|
|
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_20_Mass_Rebuild
|
|
|
|
|
2013-05-22 11:38:15 +00:00
|
|
|
* Wed May 22 2013 Jan Stanek <jstanek@redhat.com> - 3.7.17-1
|
|
|
|
- Update to 3.7.17 (http://www.sqlite.org/releaselog/3_7_17.html)
|
|
|
|
|
2013-05-16 12:53:08 +00:00
|
|
|
* Thu May 16 2013 Jan Stanek <jstanek@redhat.com> - 3.7.16.2-2
|
|
|
|
- Added missing options to man page (#948862)
|
|
|
|
|
2013-04-29 13:27:59 +00:00
|
|
|
* Mon Apr 29 2013 Jan Stanek <jstanek@redhat.com> - 3.7.16.2-1
|
|
|
|
- update to 3.7.16.2 (http://www.sqlite.org/releaselog/3_7_16_2.html)
|
|
|
|
- add support for aarch64 (rerunning autoconf) (#926568)
|
|
|
|
|
2013-03-31 08:48:54 +00:00
|
|
|
* Sun Mar 31 2013 Panu Matilainen <pmatilai@redhat.com> - 3.7.16.1-1
|
|
|
|
- update to 3.7.16.1 (https://www.sqlite.org/releaselog/3_7_16_1.html)
|
|
|
|
|
2013-03-20 19:07:55 +00:00
|
|
|
* Wed Mar 20 2013 Panu Matilainen <pmatilai@redhat.com> - 3.7.16-1
|
|
|
|
- update to 3.7.16 (http://www.sqlite.org/releaselog/3_7_16.html)
|
|
|
|
|
2013-02-15 00:29:05 +00:00
|
|
|
* Fri Feb 15 2013 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 3.7.15.2-2
|
|
|
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_19_Mass_Rebuild
|
|
|
|
|
2013-01-10 10:41:47 +00:00
|
|
|
* Thu Jan 10 2013 Panu Matilainen <pmatilai@redhat.com> - 3.7.15.2-1
|
|
|
|
- update to 3.7.15.2 (http://www.sqlite.org/releaselog/3_7_15_2.html)
|
|
|
|
|
2012-12-13 12:21:23 +00:00
|
|
|
* Thu Dec 13 2012 Panu Matilainen <pmatilai@redhat.com> - 3.7.15-1
|
|
|
|
- update to 3.7.15 (http://www.sqlite.org/releaselog/3_7_15.html)
|
2012-12-13 12:22:46 +00:00
|
|
|
- fix an old incorrect date in spec changelog
|
2012-12-13 12:21:23 +00:00
|
|
|
|
2012-11-06 14:03:11 +00:00
|
|
|
* Tue Nov 06 2012 Panu Matilainen <pmatilai@redhat.com> - 3.7.14.1-1
|
|
|
|
- update to 3.7.14.1 (http://www.sqlite.org/releaselog/3_7_14_1.html)
|
|
|
|
|
2012-10-03 10:56:37 +00:00
|
|
|
* Wed Oct 03 2012 Panu Matilainen <pmatilai@redhat.com> - 3.7.14-1
|
|
|
|
- update to 3.7.14 (http://www.sqlite.org/releaselog/3_7_14.html)
|
|
|
|
|
2012-07-21 20:50:15 +00:00
|
|
|
* Sat Jul 21 2012 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 3.7.13-2
|
|
|
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_18_Mass_Rebuild
|
|
|
|
|
2012-06-25 14:00:24 +00:00
|
|
|
* Mon Jun 25 2012 Panu Matilainen <pmatilai@redhat.com> - 3.7.13-1
|
|
|
|
- update to 3.7.13 (http://www.sqlite.org/releaselog/3_7_13.html)
|
|
|
|
- drop no longer needed savepoint relase patch
|
|
|
|
|
2012-06-01 07:15:01 +00:00
|
|
|
* Fri Jun 01 2012 Panu Matilainen <pmatilai@redhat.com> - 3.7.11-3
|
|
|
|
- don't abort pending queries on release of nested savepoint (#821642)
|
|
|
|
|
2012-04-25 06:42:32 +00:00
|
|
|
* Wed Apr 25 2012 Panu Matilainen <pmatilai@redhat.com> - 3.7.11-2
|
|
|
|
- run test-suite with MALLOC_CHECK_=3
|
|
|
|
- disable buggy malloc_usable_size code (#801981)
|
|
|
|
|
2012-03-26 07:40:34 +00:00
|
|
|
* Mon Mar 26 2012 Panu Matilainen <pmatilai@redhat.com> - 3.7.11-1
|
|
|
|
- update to 3.7.11 (http://www.sqlite.org/releaselog/3_7_11.html)
|
|
|
|
|
2012-03-08 06:07:58 +00:00
|
|
|
* Wed Mar 07 2012 Panu Matilainen <pmatilai@redhat.com> - 3.7.10-1
|
|
|
|
- update to 3.7.10 (http://www.sqlite.org/releaselog/3_7_10.html)
|
|
|
|
|
2012-01-14 04:21:08 +00:00
|
|
|
* Sat Jan 14 2012 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 3.7.9-2
|
|
|
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_17_Mass_Rebuild
|
|
|
|
|
2011-11-22 16:50:41 +00:00
|
|
|
* Tue Nov 22 2011 Panu Matilainen <pmatilai@redhat.com> - 3.7.9-1
|
|
|
|
- update to 3.7.9 (http://www.sqlite.org/releaselog/3_7_9.html)
|
|
|
|
|
2011-10-28 13:02:56 +00:00
|
|
|
* Fri Oct 28 2011 Panu Matilainen <pmatilai@redhat.com> - 3.7.8-1
|
|
|
|
- update to 3.7.8 (http://www.sqlite.org/releaselog/3_7_8.html)
|
|
|
|
|
2011-07-13 07:09:23 +00:00
|
|
|
* Wed Jul 13 2011 Panu Matilainen <pmatilai@redhat.com> - 3.7.7.1-1
|
|
|
|
- update to 3.7.7.1 (http://www.sqlite.org/releaselog/3_7_7_1.html)
|
|
|
|
- autoconf no longer needed for build, libdl check finally upstreamed
|
|
|
|
|
2011-05-25 09:34:16 +00:00
|
|
|
* Wed May 25 2011 Panu Matilainen <pmatilai@redhat.com> - 3.7.6.3-1
|
|
|
|
- update to 3.7.6.3 (http://www.sqlite.org/releaselog/3_7_6_3.html)
|
|
|
|
|
2011-05-21 17:26:12 +00:00
|
|
|
* Sat May 21 2011 Peter Robinson <pbrobinson@gmail.com> - 3.7.6.2-3
|
|
|
|
- add arm to the exclude from tests list
|
|
|
|
|
2011-04-29 10:30:08 +00:00
|
|
|
* Fri Apr 29 2011 Panu Matilainen <pmatilai@redhat.com> - 3.7.6.2-2
|
|
|
|
- comment out stupid tests causing very bogus build failure on koji
|
|
|
|
|
2011-04-21 10:51:36 +00:00
|
|
|
* Thu Apr 21 2011 Panu Matilainen <pmatilai@redhat.com> - 3.7.6.2-1
|
|
|
|
- update to 3.7.6.2 (http://www.sqlite.org/releaselog/3_7_6_2.html)
|
|
|
|
|
2011-02-25 21:19:51 +00:00
|
|
|
* Fri Feb 25 2011 Dennis Gilmore <dennis@ausil.us> - 3.7.5-4
|
|
|
|
- build tests on sparc expecting failures same as the other big endian arches
|
|
|
|
|
2011-02-09 15:48:34 +00:00
|
|
|
* Wed Feb 09 2011 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 3.7.5-3
|
|
|
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_15_Mass_Rebuild
|
|
|
|
|
2011-02-02 13:41:11 +00:00
|
|
|
* Wed Feb 2 2011 Panu Matilainen <pmatilai@redhat.com> - 3.7.5-2
|
|
|
|
- unwanted cgi-script in docs creating broken dependencies, remove it
|
|
|
|
- make doc sub-package noarch
|
|
|
|
|
2011-02-01 08:51:14 +00:00
|
|
|
* Tue Feb 1 2011 Panu Matilainen <pmatilai@redhat.com> - 3.7.5-1
|
|
|
|
- update to 3.7.5 (http://www.sqlite.org/releaselog/3_7_5.html)
|
|
|
|
|
2010-12-09 12:16:02 +00:00
|
|
|
* Thu Dec 9 2010 Panu Matilainen <pmatilai@redhat.com> - 3.7.4-1
|
|
|
|
- update to 3.7.4 (http://www.sqlite.org/releaselog/3_7_4.html)
|
|
|
|
- deal with upstream source naming, versioning and format changing
|
|
|
|
- fixup wal2-test expections wrt SQLITE_DISABLE_DIRSYNC use
|
|
|
|
|
2010-11-05 15:21:28 +00:00
|
|
|
* Fri Nov 5 2010 Dan Horák <dan[at]danny.cz> - 3.7.3-2
|
|
|
|
- expect test failures also on s390x
|
|
|
|
|
2010-11-01 12:04:40 +00:00
|
|
|
* Mon Nov 1 2010 Panu Matilainen <pmatilai@redhat.com> - 3.7.3-1
|
|
|
|
- update to 3.7.3 (http://www.sqlite.org/releaselog/3_7_3.html)
|
|
|
|
|
2012-12-13 12:22:46 +00:00
|
|
|
* Thu Sep 2 2010 Tom "spot" Callaway <tcallawa@redhat.com> - 3.7.0.1-2
|
2010-09-07 16:13:34 +00:00
|
|
|
- enable SQLITE_SECURE_DELETE, SQLITE_ENABLE_UNLOCK_NOTIFY for firefox 4
|
|
|
|
|
2010-08-13 09:52:31 +00:00
|
|
|
* Fri Aug 13 2010 Panu Matilainen <pmatilai@redhat.com> - 3.7.0.1-1
|
|
|
|
- update to 3.7.0.1 (http://www.sqlite.org/releaselog/3_7_0_1.html)
|
|
|
|
|
2010-07-03 11:57:52 +00:00
|
|
|
* Sat Jul 3 2010 Dan Horák <dan[at]danny.cz> - 3.6.23.1-2
|
|
|
|
- some tests are failing on s390 and ppc/ppc64 so don't fail the whole build there
|
|
|
|
|
2010-04-19 12:01:52 +00:00
|
|
|
* Mon Apr 19 2010 Panu Matilainen <pmatilai@redhat.com> - 3.6.23.1-1
|
|
|
|
- update to 3.6.23.1 (http://www.sqlite.org/releaselog/3_6_23_1.html)
|
|
|
|
|
2010-03-10 15:20:36 +00:00
|
|
|
* Wed Mar 10 2010 Panu Matilainen <pmatilai@redhat.com> - 3.6.23-1
|
|
|
|
- update to 3.6.23 (http://www.sqlite.org/releaselog/3_6_23.html)
|
|
|
|
- drop the lemon sprintf patch, upstream doesn't want it
|
|
|
|
- make test-suite errors fail build finally
|
|
|
|
|
2010-01-18 12:20:19 +00:00
|
|
|
* Mon Jan 18 2010 Panu Matilainen <pmatilai@redhat.com> - 3.6.22-1
|
|
|
|
- update to 3.6.22 (http://www.sqlite.org/releaselog/3_6_22.html)
|
|
|
|
|
2009-12-08 07:16:40 +00:00
|
|
|
* Tue Dec 08 2009 Panu Matilainen <pmatilai@redhat.com> - 3.6.21-1
|
|
|
|
- update to 3.6.21 (http://www.sqlite.org/releaselog/3_6_21.html)
|
|
|
|
|
2009-11-19 11:17:46 +00:00
|
|
|
* Tue Nov 17 2009 Panu Matilainen <pmatilai@redhat.com> - 3.6.20-1
|
|
|
|
- update to 3.6.20 (http://www.sqlite.org/releaselog/3_6_20.html)
|
|
|
|
|
2009-10-06 06:38:53 +00:00
|
|
|
* Tue Oct 06 2009 Panu Matilainen <pmatilai@redhat.com> - 3.6.18-1
|
|
|
|
- update to 3.6.18 (http://www.sqlite.org/releaselog/3_6_18.html)
|
|
|
|
- drop no longer needed test-disabler patches
|
|
|
|
|
2009-08-21 10:23:52 +00:00
|
|
|
* Fri Aug 21 2009 Panu Matilainen <pmatilai@redhat.com> - 3.6.17-1
|
|
|
|
- update to 3.6.17 (http://www.sqlite.org/releaselog/3_6_17.html)
|
|
|
|
- disable to failing tests until upstream fixes
|
|
|
|
|
2009-07-27 04:43:48 +00:00
|
|
|
* Sun Jul 26 2009 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 3.6.14.2-2
|
|
|
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild
|
|
|
|
|
2009-06-12 10:34:58 +00:00
|
|
|
* Fri Jun 12 2009 Panu Matilainen <pmatilai@redhat.com> - 3.6.14.2-1
|
|
|
|
- update to 3.6.14.2 (#505229)
|
|
|
|
|
2009-05-18 08:06:21 +00:00
|
|
|
* Mon May 18 2009 Panu Matilainen <pmatilai@redhat.com> - 3.6.14-2
|
|
|
|
- disable rpath
|
|
|
|
- add -doc subpackage instead of patching out reference to it
|
|
|
|
|
2009-05-14 12:09:11 +00:00
|
|
|
* Thu May 14 2009 Panu Matilainen <pmatilai@redhat.com> - 3.6.14-1
|
|
|
|
- update to 3.6.14 (http://www.sqlite.org/releaselog/3_6_14.html)
|
2009-05-14 08:46:20 +00:00
|
|
|
- merge-review cosmetics (#226429)
|
|
|
|
- drop ancient sqlite3 obsoletes
|
|
|
|
- fix tab vs space whitespace issues
|
|
|
|
- remove commas from summaries
|
2009-05-14 09:24:05 +00:00
|
|
|
- fixup io-test fsync expectations wrt SQLITE_DISABLE_DIRSYNC
|
2009-05-14 08:46:20 +00:00
|
|
|
|
2009-04-15 17:20:59 +00:00
|
|
|
* Wed Apr 15 2009 Panu Matilainen <pmatilai@redhat.com> - 3.6.13-1
|
|
|
|
- update to 3.6.13
|
|
|
|
|
2009-04-09 14:58:48 +00:00
|
|
|
* Thu Apr 09 2009 Dennis Gilmore <dennis@ausil.us> - 3.6.12-3
|
|
|
|
- apply upstream patch for memory alignment issue (#494906)
|
|
|
|
|
2009-04-07 08:35:41 +00:00
|
|
|
* Tue Apr 07 2009 Panu Matilainen <pmatilai@redhat.com> - 3.6.12-2
|
|
|
|
- disable strict aliasing to work around brokenness on 3.6.12 (#494266)
|
|
|
|
- run test-suite on build but let it fail for now
|
|
|
|
|
2009-04-03 09:49:27 +00:00
|
|
|
* Fri Apr 03 2009 Panu Matilainen <pmatilai@redhat.com> - 3.6.12-1
|
|
|
|
- update to 3.6.12 (#492662)
|
|
|
|
- remove reference to non-existent sqlite-doc from manual (#488883)
|
|
|
|
|
2009-02-26 02:37:01 +00:00
|
|
|
* Wed Feb 25 2009 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 3.6.10-4
|
|
|
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild
|
|
|
|
|
2009-02-04 16:25:32 +00:00
|
|
|
* Wed Feb 04 2009 Panu Matilainen <pmatilai@redhat.com> - 3.6.10-3
|
|
|
|
- enable RTREE and FTS3 extensions (#481417)
|
|
|
|
|
2009-01-22 19:47:34 +00:00
|
|
|
* Thu Jan 22 2009 Panu Matilainen <pmatilai@redhat.com> - 3.6.10-2
|
|
|
|
- upstream fix yum breakage caused by new keywords (#481189)
|
|
|
|
|
2009-01-22 07:37:44 +00:00
|
|
|
* Thu Jan 22 2009 Panu Matilainen <pmatilai@redhat.com> - 3.6.10-1
|
|
|
|
- update to 3.6.10
|
|
|
|
|
2008-12-31 08:39:40 +00:00
|
|
|
* Wed Dec 31 2008 Panu Matilainen <pmatilai@redhat.com> - 3.6.7-1
|
|
|
|
- update to 3.6.7
|
|
|
|
- avoid lemon ending up in main sqlite package too
|
|
|
|
|
2008-12-05 20:06:32 +00:00
|
|
|
* Fri Dec 05 2008 Panu Matilainen <pmatilai@redhat.com> - 3.6.6.2-4
|
|
|
|
- add lemon subpackage
|
|
|
|
|
2008-12-05 04:59:35 +00:00
|
|
|
* Thu Dec 4 2008 Matthias Clasen <mclasen@redhat.com> - 3.6.6.2-3
|
|
|
|
- Rebuild for pkg-config provides
|
|
|
|
|
2008-12-02 14:44:36 +00:00
|
|
|
* Tue Dec 02 2008 Panu Matilainen <pmatilai@redhat.com> - 3.6.6.2-2
|
|
|
|
- require tcl(abi) in sqlite-tcl subpackage (#474034)
|
|
|
|
- move tcl extensions to arch-specific location
|
|
|
|
- enable dependency extraction on the tcl dso
|
|
|
|
- require pkgconfig in sqlite-devel
|
|
|
|
|
2008-11-29 18:09:06 +00:00
|
|
|
* Sat Nov 29 2008 Panu Matilainen <pmatilai@redhat.com> - 3.6.6.2-1
|
|
|
|
- update to 3.6.6.2
|
|
|
|
|
2008-11-08 11:16:25 +00:00
|
|
|
* Sat Nov 08 2008 Panu Matilainen <pmatilai@redhat.com> - 3.6.4-1
|
|
|
|
- update to 3.6.4
|
|
|
|
- drop patches already upstream
|
|
|
|
|
2008-09-30 05:43:16 +00:00
|
|
|
* Mon Sep 22 2008 Panu Matilainen <pmatilai@redhat.com> - 3.5.9-2
|
|
|
|
- Remove references to temporary registers from cache on release (#463061)
|
|
|
|
- Enable loading of external extensions (#457433)
|
|
|
|
|
2008-06-17 14:04:16 +00:00
|
|
|
* Tue Jun 17 2008 Stepan Kasal <skasal@redhat.com> - 3.5.9-1
|
|
|
|
- update to 3.5.9
|
|
|
|
|
2008-05-13 05:41:20 +00:00
|
|
|
* Wed Apr 23 2008 Panu Matilainen <pmatilai@redhat.com> - 3.5.8-1
|
|
|
|
- update to 3.5.8
|
|
|
|
- provide full version in pkg-config (#443692)
|
|
|
|
|
2008-03-31 12:22:41 +00:00
|
|
|
* Mon Mar 31 2008 Panu Matilainen <pmatilai@redhat.com> - 3.5.6-2
|
|
|
|
- remove reference to static libs from -devel description (#439376)
|
|
|
|
|
2008-02-12 19:09:06 +00:00
|
|
|
* Tue Feb 12 2008 Panu Matilainen <pmatilai@redhat.com> - 3.5.6-1
|
|
|
|
- update to 3.5.6
|
|
|
|
- also fixes #432447
|
|
|
|
|
2008-01-25 18:33:02 +00:00
|
|
|
* Fri Jan 25 2008 Panu Matilainen <pmatilai@redhat.com> - 3.5.4-3
|
|
|
|
- enable column metadata API (#430258)
|
|
|
|
|
2008-01-08 07:49:06 +00:00
|
|
|
* Tue Jan 08 2008 Panu Matilainen <pmatilai@redhat.com> - 3.5.4-2
|
|
|
|
- avoid packaging CVS directory as documentation (#427755)
|
|
|
|
|
2007-12-21 10:09:10 +00:00
|
|
|
* Fri Dec 21 2007 Panu Matilainen <pmatilai@redhat.com> - 3.5.4-1
|
|
|
|
- Update to 3.5.4 (#413801)
|
|
|
|
|
2007-09-28 12:49:12 +00:00
|
|
|
* Fri Sep 28 2007 Panu Matilainen <pmatilai@redhat.com> - 3.4.2-3
|
|
|
|
- Add another build conditional for enabling %%check
|
|
|
|
|
2007-09-28 12:19:34 +00:00
|
|
|
* Fri Sep 28 2007 Panu Matilainen <pmatilai@redhat.com> - 3.4.2-2
|
2007-09-28 12:18:24 +00:00
|
|
|
- Use bconds for the spec build conditionals
|
|
|
|
- Enable -tcl subpackage again (#309041)
|
|
|
|
|
2007-08-15 08:04:07 +00:00
|
|
|
* Wed Aug 15 2007 Paul Nasrat <pnasrat@redhat.com> - 3.4.2-1
|
|
|
|
- Update to 3.4.2
|
|
|
|
|
2007-07-21 11:30:36 +00:00
|
|
|
* Sat Jul 21 2007 Paul Nasrat <pnasrat@redhat.com> - 3.4.1-1
|
|
|
|
- Update to 3.4.1
|
|
|
|
|
2007-06-24 09:26:36 +00:00
|
|
|
* Sun Jun 24 2007 Paul Nasrat <pnsarat@redhat.com> - 3.4.0-2
|
|
|
|
- Disable load for now (#245486)
|
|
|
|
|
2007-06-19 10:06:26 +00:00
|
|
|
* Tue Jun 19 2007 Paul Nasrat <pnasrat@redhat.com> - 3.4.0-1
|
|
|
|
- Update to 3.4.0
|
|
|
|
|
2007-06-01 12:27:46 +00:00
|
|
|
* Fri Jun 01 2007 Paul Nasrat <pnasrat@redhat.com> - 3.3.17-2
|
|
|
|
- Enable load
|
|
|
|
- Build fts1 and fts2
|
2007-06-01 12:35:25 +00:00
|
|
|
- Don't sync on dirs (#237427)
|
2007-06-01 12:27:46 +00:00
|
|
|
|
2007-05-29 16:49:03 +00:00
|
|
|
* Tue May 29 2007 Paul Nasrat <pnasrat@redhat.com> - 3.3.17-1
|
|
|
|
- Update to 3.3.17
|
|
|
|
|
2007-03-19 18:43:09 +00:00
|
|
|
* Mon Mar 19 2007 Paul Nasrat <pnasrat@redhat.com> - 3.3.13-1
|
|
|
|
- Update to 3.3.13
|
|
|
|
|
2006-08-11 13:24:42 +00:00
|
|
|
* Fri Aug 11 2006 Paul Nasrat <pnasrat@redhat.com> - 3.3.6-2
|
|
|
|
- Fix conditional typo (patch from Gareth Armstrong)
|
|
|
|
|
2006-07-12 08:17:12 +00:00
|
|
|
* Wed Jul 12 2006 Jesse Keating <jkeating@redhat.com> - 3.3.6-1.1
|
|
|
|
- rebuild
|
|
|
|
|
2006-06-26 18:48:38 +00:00
|
|
|
* Mon Jun 26 2006 Paul Nasrat <pnasrat@redhat.com> - 3.3.6-1
|
|
|
|
- Update to 3.3.6
|
|
|
|
- Fix typo (#189647)
|
|
|
|
- Enable threading fixes (#181298)
|
|
|
|
- Conditionalize static library
|
|
|
|
|
2006-04-18 14:36:17 +00:00
|
|
|
* Mon Apr 17 2006 Paul Nasrat <pnasrat@redhat.com> - 3.3.5-1
|
|
|
|
- Update to 3.3.5
|
|
|
|
|
2006-02-11 05:43:20 +00:00
|
|
|
* Fri Feb 10 2006 Jesse Keating <jkeating@redhat.com> - 3.3.3-1.2
|
|
|
|
- bump again for double-long bug on ppc(64)
|
|
|
|
|
2006-02-07 13:52:29 +00:00
|
|
|
* Tue Feb 07 2006 Jesse Keating <jkeating@redhat.com> - 3.3.3-1.1
|
|
|
|
- rebuilt for new gcc4.1 snapshot and glibc changes
|
|
|
|
|
2006-01-31 19:31:38 +00:00
|
|
|
* Tue Jan 31 2006 Christopher Aillon <caillon@redhat.com> - 3.3.3-1
|
|
|
|
- Update to 3.3.3
|
|
|
|
|
2006-01-31 09:07:24 +00:00
|
|
|
* Tue Jan 31 2006 Christopher Aillon <caillon@redhat.com> - 3.3.2-1
|
|
|
|
- Update to 3.3.2
|
|
|
|
|
2006-01-24 20:28:46 +00:00
|
|
|
* Tue Jan 24 2006 Paul Nasrat <pnasrat@redhat.com> - 3.2.8-1
|
|
|
|
- Add --enable-threadsafe (Nicholas Miell)
|
|
|
|
- Update to 3.2.8
|
|
|
|
|
2005-12-09 22:43:17 +00:00
|
|
|
* Fri Dec 09 2005 Jesse Keating <jkeating@redhat.com>
|
|
|
|
- rebuilt
|
|
|
|
|
2005-10-04 18:36:00 +00:00
|
|
|
* Tue Oct 4 2005 Jeremy Katz <katzj@redhat.com> - 3.2.7-2
|
|
|
|
- no more static file or libtool archive (#169874)
|
|
|
|
|
2005-09-28 11:33:15 +00:00
|
|
|
* Wed Sep 28 2005 Florian La Roche <laroche@redhat.com>
|
|
|
|
- Upgrade to 3.2.7 release.
|
|
|
|
|
2005-09-22 10:24:35 +00:00
|
|
|
* Thu Sep 22 2005 Florian La Roche <laroche@redhat.com>
|
|
|
|
- Upgrade to 3.2.6 release.
|
|
|
|
|
2005-09-11 07:48:48 +00:00
|
|
|
* Sun Sep 11 2005 Florian La Roche <laroche@redhat.com>
|
|
|
|
- Upgrade to 3.2.5 release.
|
|
|
|
|
2005-07-14 20:17:04 +00:00
|
|
|
* Fri Jul 8 2005 Roland McGrath <roland@redhat.com> - 3.2.2-1
|
|
|
|
- Upgrade to 3.2.2 release.
|
|
|
|
|
2005-04-10 04:05:27 +00:00
|
|
|
* Sat Apr 9 2005 Warren Togami <wtogami@redhat.com> - 3.1.2-3
|
|
|
|
- fix buildreqs (#154298)
|
|
|
|
|
2005-04-04 18:15:46 +00:00
|
|
|
* Mon Apr 4 2005 Jeremy Katz <katzj@redhat.com> - 3.1.2-2
|
|
|
|
- disable tcl subpackage
|
|
|
|
|
2005-03-09 20:01:56 +00:00
|
|
|
* Wed Mar 9 2005 Jeff Johnson <jbj@redhat.com> 3.1.2-1
|
|
|
|
- rename to "sqlite" from "sqlite3" (#149719, #150012).
|
|
|
|
|
|
|
|
* Wed Feb 16 2005 Jeff Johnson <jbj@jbj.org> 3.1.2-1
|
|
|
|
- upgrade to 3.1.2.
|
|
|
|
- add sqlite3-tcl sub-package.
|
|
|
|
|
|
|
|
* Sat Feb 5 2005 Jeff Johnson <jbj@jbj.org> 3.0.8-3
|
|
|
|
- repackage for fc4.
|
|
|
|
|
|
|
|
* Mon Jan 17 2005 R P Herrold <info@owlriver.com> 3.0.8-2orc
|
2005-07-14 20:17:04 +00:00
|
|
|
- fix a man page nameing conflict when co-installed with sqlite-2, as
|
2005-03-09 20:01:56 +00:00
|
|
|
is permissible
|