rpms/sqlite/devel .cvsignore, 1.10, 1.11 sources, 1.10, 1.11 sqlite.spec, 1.16, 1.17

fedora-cvs-commits at redhat.com fedora-cvs-commits at redhat.com
Mon Jun 26 18:48:40 UTC 2006


Author: pnasrat

Update of /cvs/dist/rpms/sqlite/devel
In directory cvs.devel.redhat.com:/tmp/cvs-serv22472

Modified Files:
	.cvsignore sources sqlite.spec 
Log Message:
new version


Index: .cvsignore
===================================================================
RCS file: /cvs/dist/rpms/sqlite/devel/.cvsignore,v
retrieving revision 1.10
retrieving revision 1.11
diff -u -r1.10 -r1.11
--- .cvsignore	18 Apr 2006 14:36:16 -0000	1.10
+++ .cvsignore	26 Jun 2006 18:48:38 -0000	1.11
@@ -6,3 +6,4 @@
 sqlite-3.3.2.tar.gz
 sqlite-3.3.3.tar.gz
 sqlite-3.3.5.tar.gz
+sqlite-3.3.6.tar.gz


Index: sources
===================================================================
RCS file: /cvs/dist/rpms/sqlite/devel/sources,v
retrieving revision 1.10
retrieving revision 1.11
diff -u -r1.10 -r1.11
--- sources	18 Apr 2006 14:36:17 -0000	1.10
+++ sources	26 Jun 2006 18:48:38 -0000	1.11
@@ -1 +1 @@
-dd2a7b6f2a07a4403a0b5e17e8ed5b88  sqlite-3.3.5.tar.gz
+a2cb1fafad5c2587e513dcbd18ace097  sqlite-3.3.6.tar.gz


Index: sqlite.spec
===================================================================
RCS file: /cvs/dist/rpms/sqlite/devel/sqlite.spec,v
retrieving revision 1.16
retrieving revision 1.17
diff -u -r1.16 -r1.17
--- sqlite.spec	18 Apr 2006 14:36:17 -0000	1.16
+++ sqlite.spec	26 Jun 2006 18:48:38 -0000	1.17
@@ -1,9 +1,11 @@
 # --with-tcl enables sqlite-tcl subpackage, and also makes %%check possible.
 %define tcl 0%{?_with_tcl:1}
+# --with static enables static library in -devel subpackage
+%define static 0%{?_with_static:1}
 
 Summary: Library that implements an embeddable SQL database engine
 Name: sqlite
-Version: 3.3.5
+Version: 3.3.6
 Release: 1
 License: Public Domain
 Group: 	Applications/Databases
@@ -22,7 +24,7 @@
 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
-flexiblity of an SQL database without the administrative hassles of
+flexibility of an SQL database without the administrative hassles of
 supporting a separate database server.  Version 2 and version 3 binaries
 are named to permit each to be installed on a single host
 
@@ -50,7 +52,9 @@
 %setup -q
 
 %build
-%configure %{!?with_tcl:--disable-tcl}
+%configure %{!?with_tcl:--disable-tcl} \
+           --enable-threadsafe \
+           --enable-threads-override-locks
 make %{?_smp_mflags}
 make doc
 
@@ -61,7 +65,9 @@
 
 %{__install} -D -m0644 sqlite3.1 %{buildroot}%{_mandir}/man1/sqlite3.1
 
+%if ! %{static}
 rm -f $RPM_BUILD_ROOT/%{_libdir}/*.{la,a}
+%endif
 
 %if %{tcl}
 %check
@@ -88,7 +94,10 @@
 %{_includedir}/*.h
 %{_libdir}/*.so
 %{_libdir}/pkgconfig/*.pc
-
+%if %{static}
+%{_libdir}/*.a
+%exclude %{_libdir}/*.la
+%endif
 %if %{tcl}
 %files tcl
 %defattr(-, root, root)
@@ -96,6 +105,12 @@
 %endif
 
 %changelog
+* Mon Jun 26 2006 Paul Nasrat <pnasrat at redhat.com> - 3.3.6-1
+- Update to 3.3.6
+- Fix typo  (#189647)
+- Enable threading fixes (#181298)
+- Conditionalize static library
+
 * Mon Apr 17 2006 Paul Nasrat <pnasrat at redhat.com> - 3.3.5-1
 - Update to 3.3.5
 




More information about the fedora-cvs-commits mailing list