This commit is contained in:
parent
dbd8371156
commit
3f03fb3f92
3
sqlite-3.6.14.2.tar.bz2
Normal file
3
sqlite-3.6.14.2.tar.bz2
Normal file
@ -0,0 +1,3 @@
|
|||||||
|
version https://git-lfs.github.com/spec/v1
|
||||||
|
oid sha256:8026c203588785f95a2034bd154ff3ac6a071bfd32ff65426b3302947e15392f
|
||||||
|
size 2213970
|
@ -1,3 +0,0 @@
|
|||||||
version https://git-lfs.github.com/spec/v1
|
|
||||||
oid sha256:05c7992478235c0b54f0ca283391a9daa8176f2b388e2241e5eae07aaab1a978
|
|
||||||
size 1742020
|
|
@ -1,3 +1,11 @@
|
|||||||
|
-------------------------------------------------------------------
|
||||||
|
Tue Jun 2 17:45:52 CEST 2009 - max@suse.de
|
||||||
|
|
||||||
|
- New version 3.6.14.2:
|
||||||
|
* Fix a code generator bug introduced in version 3.6.14. This bug
|
||||||
|
can cause incorrect query results under obscure circumstances.
|
||||||
|
- Use the old naming scheme when building on openSUSE < 11.0.
|
||||||
|
|
||||||
-------------------------------------------------------------------
|
-------------------------------------------------------------------
|
||||||
Sun Feb 22 22:02:19 CET 2009 - crrodriguez@suse.de
|
Sun Feb 22 22:02:19 CET 2009 - crrodriguez@suse.de
|
||||||
|
|
||||||
|
56
sqlite3.spec
56
sqlite3.spec
@ -1,5 +1,5 @@
|
|||||||
#
|
#
|
||||||
# spec file for package sqlite3 (Version 3.6.4)
|
# spec file for package sqlite3 (Version 3.6.14.2)
|
||||||
#
|
#
|
||||||
# Copyright (c) 2009 SUSE LINUX Products GmbH, Nuernberg, Germany.
|
# Copyright (c) 2009 SUSE LINUX Products GmbH, Nuernberg, Germany.
|
||||||
#
|
#
|
||||||
@ -17,6 +17,17 @@
|
|||||||
|
|
||||||
# norootforbuild
|
# norootforbuild
|
||||||
|
|
||||||
|
%if 0%{?!tcl_archdir:1}
|
||||||
|
# %tcl_archdir didn't exist before openSUSE 11.0
|
||||||
|
%define tcl_archdir %(echo 'puts [lindex $tcl_pkgPath 0]'|tclsh)
|
||||||
|
%endif
|
||||||
|
#
|
||||||
|
%if 0%{?suse_version} >= 1100
|
||||||
|
# The package naming scheme changed starting with openSUSE 11.0
|
||||||
|
%define newscheme 1
|
||||||
|
%else
|
||||||
|
%define newscheme 0
|
||||||
|
%endif
|
||||||
|
|
||||||
Name: sqlite3
|
Name: sqlite3
|
||||||
BuildRequires: gcc-c++ readline-devel tcl-devel
|
BuildRequires: gcc-c++ readline-devel tcl-devel
|
||||||
@ -27,14 +38,16 @@ License: Public Domain, Freeware
|
|||||||
Group: Productivity/Databases/Servers
|
Group: Productivity/Databases/Servers
|
||||||
Summary: Embeddable SQL Database Engine
|
Summary: Embeddable SQL Database Engine
|
||||||
Url: http://www.sqlite.org/
|
Url: http://www.sqlite.org/
|
||||||
Version: 3.6.4
|
Version: 3.6.14.2
|
||||||
Release: 4
|
Release: 1
|
||||||
Requires: libsqlite3-0 = %version
|
|
||||||
# bug437293
|
# bug437293
|
||||||
%ifarch ppc64
|
%ifarch ppc64
|
||||||
Obsoletes: sqlite-64bit
|
Obsoletes: sqlite-64bit
|
||||||
%endif
|
%endif
|
||||||
#
|
#
|
||||||
|
%if %newscheme
|
||||||
|
Requires: libsqlite3-0 = %version
|
||||||
|
%endif
|
||||||
Provides: sqlite = %version
|
Provides: sqlite = %version
|
||||||
Obsoletes: sqlite < %version
|
Obsoletes: sqlite < %version
|
||||||
Source0: http://www.sqlite.org/sqlite-%version.tar.bz2
|
Source0: http://www.sqlite.org/sqlite-%version.tar.bz2
|
||||||
@ -59,6 +72,8 @@ Authors:
|
|||||||
--------
|
--------
|
||||||
D. Richard Hipp <drh@hwaci.com>
|
D. Richard Hipp <drh@hwaci.com>
|
||||||
|
|
||||||
|
%if %newscheme
|
||||||
|
|
||||||
%package -n libsqlite3-0
|
%package -n libsqlite3-0
|
||||||
License: Public Domain, Freeware
|
License: Public Domain, Freeware
|
||||||
Summary: Shared libraries for the Embeddable SQL Database Engine
|
Summary: Shared libraries for the Embeddable SQL Database Engine
|
||||||
@ -85,6 +100,8 @@ Authors:
|
|||||||
--------
|
--------
|
||||||
D. Richard Hipp <drh@hwaci.com>
|
D. Richard Hipp <drh@hwaci.com>
|
||||||
|
|
||||||
|
%endif
|
||||||
|
|
||||||
%package tcl
|
%package tcl
|
||||||
License: Public Domain, Freeware
|
License: Public Domain, Freeware
|
||||||
Group: Development/Libraries/Tcl
|
Group: Development/Libraries/Tcl
|
||||||
@ -152,35 +169,47 @@ autoreconf -f -i
|
|||||||
--disable-releasemode \
|
--disable-releasemode \
|
||||||
--enable-tempstore=yes \
|
--enable-tempstore=yes \
|
||||||
--sysconfdir=/etc/ \
|
--sysconfdir=/etc/ \
|
||||||
--disable-static \
|
--disable-static \
|
||||||
--with-pic
|
--with-pic
|
||||||
%{__make} %{?jobs:-j%jobs}
|
make %{?jobs:-j%jobs} \
|
||||||
|
TCLLIBDIR=%tcl_archdir/%name
|
||||||
|
|
||||||
%install
|
%install
|
||||||
cd build
|
cd build
|
||||||
make install \
|
make install \
|
||||||
DESTDIR="$RPM_BUILD_ROOT" \
|
DESTDIR="$RPM_BUILD_ROOT" \
|
||||||
TCLLIBDIR=%tcl_archdir
|
TCLLIBDIR=%tcl_archdir/%name
|
||||||
echo 'package ifneeded sqlite3 %version [list load $dir/libtclsqlite3.so sqlite3]' \
|
echo 'package ifneeded sqlite3 %version [list load $dir/libtclsqlite3.so sqlite3]' \
|
||||||
> %buildroot%tcl_archdir/sqlite3/pkgIndex.tcl
|
> %buildroot%tcl_archdir/%name/pkgIndex.tcl
|
||||||
install -d $RPM_BUILD_ROOT%_mandir/man1/
|
install -d $RPM_BUILD_ROOT%_mandir/man1/
|
||||||
install -m 0644 ../sqlite3.1 $RPM_BUILD_ROOT%_mandir/man1/
|
install -m 0644 ../sqlite3.1 $RPM_BUILD_ROOT%_mandir/man1/
|
||||||
%{__rm} -f %{buildroot}%{_libdir}/*.la
|
rm -f %buildroot%_libdir/*.la
|
||||||
|
|
||||||
%clean
|
%clean
|
||||||
rm -rf $RPM_BUILD_ROOT
|
rm -rf $RPM_BUILD_ROOT
|
||||||
|
#
|
||||||
|
%if %newscheme
|
||||||
|
|
||||||
%post -n libsqlite3-0 -p /sbin/ldconfig
|
%post -n libsqlite3-0 -p /sbin/ldconfig
|
||||||
|
|
||||||
%postun -n libsqlite3-0 -p /sbin/ldconfig
|
%postun -n libsqlite3-0 -p /sbin/ldconfig
|
||||||
|
%else
|
||||||
|
|
||||||
|
%post -p /sbin/ldconfig
|
||||||
|
|
||||||
|
%postun -p /sbin/ldconfig
|
||||||
|
%endif
|
||||||
|
|
||||||
%files
|
%files
|
||||||
%defattr(-,root,root)
|
%defattr(-,root,root)
|
||||||
/usr/bin/sqlite3
|
/usr/bin/sqlite3
|
||||||
%_mandir/man1/*
|
%doc %_mandir/man1/*
|
||||||
|
#
|
||||||
|
%if %newscheme
|
||||||
|
|
||||||
%files -n libsqlite3-0
|
%files -n libsqlite3-0
|
||||||
%defattr(-,root,root)
|
%defattr(-,root,root)
|
||||||
|
%endif
|
||||||
%_libdir/libsqlite*.so.*
|
%_libdir/libsqlite*.so.*
|
||||||
|
|
||||||
%files tcl
|
%files tcl
|
||||||
@ -194,6 +223,11 @@ autoreconf -f -i
|
|||||||
%_libdir/pkgconfig/sqlite3.pc
|
%_libdir/pkgconfig/sqlite3.pc
|
||||||
|
|
||||||
%changelog
|
%changelog
|
||||||
|
* Tue Jun 02 2009 max@suse.de
|
||||||
|
- New version 3.6.14.2:
|
||||||
|
* Fix a code generator bug introduced in version 3.6.14. This bug
|
||||||
|
can cause incorrect query results under obscure circumstances.
|
||||||
|
- Use the old naming scheme when building on openSUSE < 11.0.
|
||||||
* Sun Feb 22 2009 crrodriguez@suse.de
|
* Sun Feb 22 2009 crrodriguez@suse.de
|
||||||
- remove static libraries and "la" files
|
- remove static libraries and "la" files
|
||||||
* Tue Jan 13 2009 olh@suse.de
|
* Tue Jan 13 2009 olh@suse.de
|
||||||
|
Loading…
x
Reference in New Issue
Block a user