From 78d06b5581a5a9241167691300781eed5b4227b9d01dc050491699434d8ab56c Mon Sep 17 00:00:00 2001 From: Reinhard Max Date: Wed, 22 Nov 2023 17:34:30 +0000 Subject: [PATCH 1/2] - 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 --- sqlite-src-3440000.zip | 3 --- sqlite-src-3440100.zip | 3 +++ sqlite3.changes | 7 +++++++ sqlite3.spec | 15 ++++++++------- 4 files changed, 18 insertions(+), 10 deletions(-) delete mode 100644 sqlite-src-3440000.zip create mode 100644 sqlite-src-3440100.zip diff --git a/sqlite-src-3440000.zip b/sqlite-src-3440000.zip deleted file mode 100644 index 0fa9554..0000000 --- a/sqlite-src-3440000.zip +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:ab9aae38a11b931f35d8d1c6d62826d215579892e6ffbf89f20bdce106a9c8c5 -size 14059695 diff --git a/sqlite-src-3440100.zip b/sqlite-src-3440100.zip new file mode 100644 index 0000000..b472b81 --- /dev/null +++ b/sqlite-src-3440100.zip @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:52aa53c59ec9be4c28e2d2524676cb2938558f11c2b4c00d8b1a546000453919 +size 14069543 diff --git a/sqlite3.changes b/sqlite3.changes index 857fb28..7c5f539 100644 --- a/sqlite3.changes +++ b/sqlite3.changes @@ -1,3 +1,10 @@ +------------------------------------------------------------------- +Wed Nov 22 17:20:35 UTC 2023 - Reinhard Max + +- 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 diff --git a/sqlite3.spec b/sqlite3.spec index fd6d98c..2da3c8f 100644 --- a/sqlite3.spec +++ b/sqlite3.spec @@ -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 From 41cf744a2301f09dcc3ecc4c87a56fad6b3b1a5ea78d56c7b1a791d279093747 Mon Sep 17 00:00:00 2001 From: Reinhard Max Date: Mon, 27 Nov 2023 18:18:37 +0000 Subject: [PATCH 2/2] - 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. OBS-URL: https://build.opensuse.org/package/show/server:database/sqlite3?expand=0&rev=324 --- sqlite-doc-3440000.zip | 3 --- sqlite-doc-3440200.zip | 3 +++ sqlite-src-3440100.zip | 3 --- sqlite-src-3440200.zip | 3 +++ sqlite3.changes | 12 ++++++++++++ sqlite3.spec | 4 ++-- 6 files changed, 20 insertions(+), 8 deletions(-) delete mode 100644 sqlite-doc-3440000.zip create mode 100644 sqlite-doc-3440200.zip delete mode 100644 sqlite-src-3440100.zip create mode 100644 sqlite-src-3440200.zip diff --git a/sqlite-doc-3440000.zip b/sqlite-doc-3440000.zip deleted file mode 100644 index 08e8b9a..0000000 --- a/sqlite-doc-3440000.zip +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:3e3a2da6fa6f74a1c02292abe153677c6160aebffee4e9a710fb51437dbee541 -size 10689348 diff --git a/sqlite-doc-3440200.zip b/sqlite-doc-3440200.zip new file mode 100644 index 0000000..ebec809 --- /dev/null +++ b/sqlite-doc-3440200.zip @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:62e51962552fb204ef0a541d51f8f721499d1a3fffae6e86558d251c96084fcf +size 10704552 diff --git a/sqlite-src-3440100.zip b/sqlite-src-3440100.zip deleted file mode 100644 index b472b81..0000000 --- a/sqlite-src-3440100.zip +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:52aa53c59ec9be4c28e2d2524676cb2938558f11c2b4c00d8b1a546000453919 -size 14069543 diff --git a/sqlite-src-3440200.zip b/sqlite-src-3440200.zip new file mode 100644 index 0000000..a55c03d --- /dev/null +++ b/sqlite-src-3440200.zip @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:73187473feb74509357e8fa6cb9fd67153b2d010d00aeb2fddb6ceeb18abaf27 +size 14070781 diff --git a/sqlite3.changes b/sqlite3.changes index 7c5f539..884e6e9 100644 --- a/sqlite3.changes +++ b/sqlite3.changes @@ -1,3 +1,15 @@ +------------------------------------------------------------------- +Mon Nov 27 17:49:51 UTC 2023 - Reinhard Max + +- 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 diff --git a/sqlite3.spec b/sqlite3.spec index 2da3c8f..baaf2d9 100644 --- a/sqlite3.spec +++ b/sqlite3.spec @@ -17,8 +17,8 @@ %define oname sqlite -%define tarversion 3440100 -%define docversion 3440000 +%define tarversion 3440200 +%define docversion 3440200 %bcond_with icu %bcond_without check Name: sqlite3