- Update to release 3.44.1

* Change the CLI so that it uses UTF-16 for console I/O on Windows.
  * Other obscure bug fixes.

OBS-URL: https://build.opensuse.org/package/show/server:database/sqlite3?expand=0&rev=323
This commit is contained in:
Reinhard Max 2023-11-22 17:34:30 +00:00 committed by Git OBS Bridge
parent 89ae143f90
commit 78d06b5581
4 changed files with 18 additions and 10 deletions

View File

@ -1,3 +0,0 @@
version https://git-lfs.github.com/spec/v1
oid sha256:ab9aae38a11b931f35d8d1c6d62826d215579892e6ffbf89f20bdce106a9c8c5
size 14059695

3
sqlite-src-3440100.zip Normal file
View File

@ -0,0 +1,3 @@
version https://git-lfs.github.com/spec/v1
oid sha256:52aa53c59ec9be4c28e2d2524676cb2938558f11c2b4c00d8b1a546000453919
size 14069543

View File

@ -1,3 +1,10 @@
-------------------------------------------------------------------
Wed Nov 22 17:20:35 UTC 2023 - Reinhard Max <max@suse.com>
- Update to release 3.44.1
* Change the CLI so that it uses UTF-16 for console I/O on Windows.
* Other obscure bug fixes.
-------------------------------------------------------------------
Fri Nov 3 09:23:52 UTC 2023 - Jan Engelhardt <jengelh@inai.de>

View File

@ -17,11 +17,12 @@
%define oname sqlite
%define tarversion 3440000
%define tarversion 3440100
%define docversion 3440000
%bcond_with icu
%bcond_without check
Name: sqlite3
Version: 3.44.0
Version: 3.44.1
Release: 0
Summary: Embeddable SQL Database Engine
License: SUSE-Public-Domain
@ -29,7 +30,7 @@ Group: Productivity/Databases/Servers
URL: https://www.sqlite.org/
Source0: https://www.sqlite.org/2023/sqlite-src-%{tarversion}.zip
Source1: baselibs.conf
Source2: https://www.sqlite.org/2023/sqlite-doc-%{tarversion}.zip
Source2: https://www.sqlite.org/2023/sqlite-doc-%{docversion}.zip
Patch0: sqlite3-rtree-i686.patch
BuildRequires: automake
BuildRequires: libtool
@ -130,10 +131,10 @@ other documentation found on sqlite.org. The files can be found in
%prep
%autosetup -p1 -n sqlite-src-%{tarversion} -a2
rm -v sqlite-doc-%{tarversion}/releaselog/current.html
ln -sv `echo %{version} | sed "s/\./_/g"`.html sqlite-doc-%{tarversion}/releaselog/current.html
rm -v sqlite-doc-%{docversion}/releaselog/current.html
ln -sv `echo %{docversion} | sed "s/\./_/g"`.html sqlite-doc-%{docversion}/releaselog/current.html
find -type f -name sqlite.css~ -delete
cmp sqlite-doc-%{tarversion}/fileformat{,2}.html && ln -sf fileformat.html sqlite-doc-%{tarversion}/fileformat2.html
cmp sqlite-doc-%{docversion}/fileformat{,2}.html && ln -sf fileformat.html sqlite-doc-%{docversion}/fileformat2.html
%build
export TCLLIBDIR=%tcl_archdir/sqlite%version
@ -204,6 +205,6 @@ find %{buildroot} -type f -name "*.la" -delete -print
%doc %_mandir/mann/*
%files doc
%doc sqlite-doc-%{tarversion}/*
%doc sqlite-doc-%{docversion}/*
%changelog