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
|
|
|
|
2009-05-18 08:06:21 +00:00
|
|
|
%define docver %(echo %{version}|sed -e "s/\\./_/g")
|
|
|
|
|
2005-03-09 20:01:56 +00:00
|
|
|
Summary: Library that implements an embeddable SQL database engine
|
|
|
|
Name: sqlite
|
2009-05-14 12:09:11 +00:00
|
|
|
Version: 3.6.14
|
2009-05-18 08:06:21 +00:00
|
|
|
Release: 2%{?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/
|
2009-05-18 08:06:21 +00:00
|
|
|
Source0: http://www.sqlite.org/sqlite-%{version}.tar.gz
|
|
|
|
Source1: http://www.sqlite.org/sqlite_docs_%{docver}.zip
|
2008-11-08 11:16:25 +00:00
|
|
|
# Fix build with --enable-load-extension, upstream ticket #3137
|
2009-04-03 09:49:27 +00:00
|
|
|
Patch1: sqlite-3.6.12-libdl.patch
|
2008-12-05 20:06:32 +00:00
|
|
|
# Avoid insecure sprintf(), use a system path for lempar.c, patch from Debian
|
|
|
|
Patch2: sqlite-3.6.6.2-lemon-snprintf.patch
|
2009-05-14 09:24:05 +00:00
|
|
|
# Fixup io-test fsync expectations wrt SQLITE_DISABLE_DIRSYNC
|
2009-05-18 08:06:21 +00:00
|
|
|
Patch3: sqlite-3.6.13-iotest-nodirsync.patch
|
2007-06-04 12:44:53 +00:00
|
|
|
BuildRequires: ncurses-devel readline-devel glibc-devel
|
2009-04-03 09:56:25 +00:00
|
|
|
# libdl patch needs
|
|
|
|
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
|
2008-12-02 20:35:27 +00:00
|
|
|
%{!?tcl_version: %global tcl_version 8.5}
|
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
|
|
|
BuildRoot: %{_tmppath}/%{name}-root
|
|
|
|
|
|
|
|
%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
|
|
|
|
Requires: %{name} = %{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
|
|
|
|
2009-05-18 08:06:21 +00:00
|
|
|
%package doc
|
|
|
|
Summary: Documentation for sqlite
|
|
|
|
Group: Documentation
|
|
|
|
|
|
|
|
%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}.
|
|
|
|
%endif
|
|
|
|
|
2005-07-14 20:17:04 +00:00
|
|
|
%prep
|
2009-05-18 08:06:21 +00:00
|
|
|
%setup -q -a1
|
2008-11-08 11:16:25 +00:00
|
|
|
%patch1 -p1 -b .libdl
|
2008-12-05 20:06:32 +00:00
|
|
|
%patch2 -p1 -b .lemon-sprintf
|
2009-05-18 08:06:21 +00:00
|
|
|
%patch3 -p1 -b .nodirsync
|
2005-03-09 20:01:56 +00:00
|
|
|
|
|
|
|
%build
|
2009-04-03 09:49:27 +00:00
|
|
|
autoconf
|
2009-04-07 08:35:41 +00:00
|
|
|
export CFLAGS="$RPM_OPT_FLAGS -DSQLITE_ENABLE_COLUMN_METADATA=1 -DSQLITE_DISABLE_DIRSYNC=1 -DSQLITE_ENABLE_FTS3=3 -DSQLITE_ENABLE_RTREE=1 -Wall -fno-strict-aliasing"
|
2007-09-28 12:18:24 +00:00
|
|
|
%configure %{!?with_tcl:--disable-tcl} \
|
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
|
|
|
|
|
|
|
%install
|
|
|
|
rm -rf $RPM_BUILD_ROOT
|
|
|
|
|
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
|
|
|
|
%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
|
2009-04-07 08:35:41 +00:00
|
|
|
# let this fail for now:
|
|
|
|
# - five nan-test broken on PPC (upstream ticket #3404)
|
|
|
|
# - bunch of rtree-tests failing on PPC atm
|
|
|
|
make test ||:
|
2005-07-14 20:17:04 +00:00
|
|
|
%endif
|
2005-03-09 20:01:56 +00:00
|
|
|
|
|
|
|
%clean
|
|
|
|
rm -rf $RPM_BUILD_ROOT
|
|
|
|
|
|
|
|
%post -p /sbin/ldconfig
|
|
|
|
|
|
|
|
%postun -p /sbin/ldconfig
|
|
|
|
|
|
|
|
%files
|
|
|
|
%defattr(-, root, root)
|
|
|
|
%doc README
|
2008-12-31 08:39:40 +00:00
|
|
|
%{_bindir}/sqlite3
|
2005-03-09 20:01:56 +00:00
|
|
|
%{_libdir}/*.so.*
|
|
|
|
%{_mandir}/man?/*
|
|
|
|
|
|
|
|
%files devel
|
|
|
|
%defattr(-, root, root)
|
|
|
|
%{_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
|
|
|
|
%defattr(-, root, root)
|
|
|
|
%doc %{name}-%{docver}-docs/*
|
|
|
|
|
2008-12-05 20:06:32 +00:00
|
|
|
%files -n lemon
|
|
|
|
%defattr(-, root, root)
|
|
|
|
%{_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
|
|
|
|
%defattr(-, root, root)
|
2008-12-02 14:44:36 +00:00
|
|
|
%{tcl_sitearch}/sqlite3
|
2005-04-04 18:15:46 +00:00
|
|
|
%endif
|
2005-03-09 20:01:56 +00:00
|
|
|
|
|
|
|
%changelog
|
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
|