Accepting request 1130837 from server:database

Automatic submission by obs-autosubmit

OBS-URL: https://build.opensuse.org/request/show/1130837
OBS-URL: https://build.opensuse.org/package/show/openSUSE:Factory/sqlite3?expand=0&rev=148
This commit is contained in:
Ana Guerrero 2023-12-05 16:02:45 +00:00 committed by Git OBS Bridge
commit 88c75defdf
6 changed files with 33 additions and 13 deletions

View File

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

BIN
sqlite-doc-3440200.zip (Stored with Git LFS) Normal file

Binary file not shown.

View File

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

BIN
sqlite-src-3440200.zip (Stored with Git LFS) Normal file

Binary file not shown.

View File

@ -1,3 +1,22 @@
-------------------------------------------------------------------
Mon Nov 27 17:49:51 UTC 2023 - Reinhard Max <max@suse.com>
- Update to release 3.44.2
* Fix a mistake in the CLI that was introduced by the fix in
3.44.1.
* Fix a problem in FTS5 that was discovered during internal fuzz
testing only minutes after the 3.44.1 release was tagged.
* Fix incomplete assert() statements that the fuzzer discovered.
* Fix a couple of harmless compiler warnings that appeared in
debug builds with GCC 16.
-------------------------------------------------------------------
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 3440200
%define docversion 3440200
%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