From 4052bc9647217efa2c61f3c89fa0980db77d563d Mon Sep 17 00:00:00 2001 From: Julius Tranquilli Date: Wed, 4 Oct 2023 19:33:01 -0400 Subject: [PATCH 1/6] Updated macOS SQLite installers to 3.43.1 --- Mac/BuildScript/build-installer.py | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/Mac/BuildScript/build-installer.py b/Mac/BuildScript/build-installer.py index c54de880c20360..2d334d5acbd267 100755 --- a/Mac/BuildScript/build-installer.py +++ b/Mac/BuildScript/build-installer.py @@ -359,10 +359,10 @@ def library_recipes(): ), ), dict( - name="SQLite 3.42.0", - url="https://sqlite.org/2023/sqlite-autoconf-3420000.tar.gz", - checksum="0c5a92bc51cf07cae45b4a1e94653dea", - extra_cflags=('-Os ' + name="SQLite 3.43.1", + url="https://sqlite.org/2023/sqlite-autoconf-3430100.tar.gz", + checksum="77e61befe9c3298da0504f87772a24b0", + extra_cflags=('-Os ' '-DSQLITE_ENABLE_FTS5 ' '-DSQLITE_ENABLE_FTS4 ' '-DSQLITE_ENABLE_FTS3_PARENTHESIS ' From ddf8d68e0e882129e5769d1479b0bee89d504b09 Mon Sep 17 00:00:00 2001 From: "blurb-it[bot]" <43283697+blurb-it[bot]@users.noreply.github.com> Date: Wed, 4 Oct 2023 23:38:25 +0000 Subject: [PATCH 2/6] =?UTF-8?q?=F0=9F=93=9C=F0=9F=A4=96=20Added=20by=20blu?= =?UTF-8?q?rb=5Fit.?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../next/macOS/2023-10-04-23-38-24.gh-issue-109286.1ZLMaq.rst | 1 + 1 file changed, 1 insertion(+) create mode 100644 Misc/NEWS.d/next/macOS/2023-10-04-23-38-24.gh-issue-109286.1ZLMaq.rst diff --git a/Misc/NEWS.d/next/macOS/2023-10-04-23-38-24.gh-issue-109286.1ZLMaq.rst b/Misc/NEWS.d/next/macOS/2023-10-04-23-38-24.gh-issue-109286.1ZLMaq.rst new file mode 100644 index 00000000000000..7d47fb30e3166f --- /dev/null +++ b/Misc/NEWS.d/next/macOS/2023-10-04-23-38-24.gh-issue-109286.1ZLMaq.rst @@ -0,0 +1 @@ +Upgraded macOS SQLite installer to 3.43.1 From c659e4c5af231a0a9b23a37442ecf30d30e3b699 Mon Sep 17 00:00:00 2001 From: Julius Tranquilli Date: Wed, 4 Oct 2023 20:52:17 -0400 Subject: [PATCH 3/6] Fixed white space issue --- Mac/BuildScript/build-installer.py | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) diff --git a/Mac/BuildScript/build-installer.py b/Mac/BuildScript/build-installer.py index 2d334d5acbd267..fd056d40658225 100755 --- a/Mac/BuildScript/build-installer.py +++ b/Mac/BuildScript/build-installer.py @@ -362,13 +362,13 @@ def library_recipes(): name="SQLite 3.43.1", url="https://sqlite.org/2023/sqlite-autoconf-3430100.tar.gz", checksum="77e61befe9c3298da0504f87772a24b0", - extra_cflags=('-Os ' - '-DSQLITE_ENABLE_FTS5 ' - '-DSQLITE_ENABLE_FTS4 ' - '-DSQLITE_ENABLE_FTS3_PARENTHESIS ' - '-DSQLITE_ENABLE_RTREE ' - '-DSQLITE_OMIT_AUTOINIT ' - '-DSQLITE_TCL=0 ' + extra_cflags=('-Os ' + '-DSQLITE_ENABLE_FTS5 ' + '-DSQLITE_ENABLE_FTS4 ' + '-DSQLITE_ENABLE_FTS3_PARENTHESIS ' + '-DSQLITE_ENABLE_RTREE ' + '-DSQLITE_OMIT_AUTOINIT ' + '-DSQLITE_TCL=0 ' ), configure_pre=[ '--enable-threadsafe', From 3e9ae8fd4a980bacd707e3c1f810e39c42d0e5f6 Mon Sep 17 00:00:00 2001 From: Julius Tranquilli Date: Wed, 4 Oct 2023 21:35:34 -0400 Subject: [PATCH 4/6] Fixed trailing white space issue --- Mac/BuildScript/build-installer.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Mac/BuildScript/build-installer.py b/Mac/BuildScript/build-installer.py index fd056d40658225..58700204a9a5f3 100755 --- a/Mac/BuildScript/build-installer.py +++ b/Mac/BuildScript/build-installer.py @@ -360,7 +360,7 @@ def library_recipes(): ), dict( name="SQLite 3.43.1", - url="https://sqlite.org/2023/sqlite-autoconf-3430100.tar.gz", + url="https://sqlite.org/2023/sqlite-autoconf-3430100.tar.gz", checksum="77e61befe9c3298da0504f87772a24b0", extra_cflags=('-Os ' '-DSQLITE_ENABLE_FTS5 ' From ee7cf756422c41156e30e4946733c7f15d9c75d0 Mon Sep 17 00:00:00 2001 From: "Erlend E. Aasland" Date: Thu, 5 Oct 2023 09:03:33 +0200 Subject: [PATCH 5/6] Update Misc/NEWS.d/next/macOS/2023-10-04-23-38-24.gh-issue-109286.1ZLMaq.rst --- .../next/macOS/2023-10-04-23-38-24.gh-issue-109286.1ZLMaq.rst | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Misc/NEWS.d/next/macOS/2023-10-04-23-38-24.gh-issue-109286.1ZLMaq.rst b/Misc/NEWS.d/next/macOS/2023-10-04-23-38-24.gh-issue-109286.1ZLMaq.rst index 7d47fb30e3166f..18ac9df73deb37 100644 --- a/Misc/NEWS.d/next/macOS/2023-10-04-23-38-24.gh-issue-109286.1ZLMaq.rst +++ b/Misc/NEWS.d/next/macOS/2023-10-04-23-38-24.gh-issue-109286.1ZLMaq.rst @@ -1 +1 @@ -Upgraded macOS SQLite installer to 3.43.1 +Update macOS installer to use SQLite 3.43.1. From aaa2d52ee7b763b7232256e9ee08312f5cc9f6b7 Mon Sep 17 00:00:00 2001 From: "Erlend E. Aasland" Date: Thu, 5 Oct 2023 09:06:04 +0200 Subject: [PATCH 6/6] Update Mac/BuildScript/build-installer.py --- Mac/BuildScript/build-installer.py | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) diff --git a/Mac/BuildScript/build-installer.py b/Mac/BuildScript/build-installer.py index 58700204a9a5f3..a07d38aedcb5d6 100755 --- a/Mac/BuildScript/build-installer.py +++ b/Mac/BuildScript/build-installer.py @@ -362,13 +362,13 @@ def library_recipes(): name="SQLite 3.43.1", url="https://sqlite.org/2023/sqlite-autoconf-3430100.tar.gz", checksum="77e61befe9c3298da0504f87772a24b0", - extra_cflags=('-Os ' - '-DSQLITE_ENABLE_FTS5 ' - '-DSQLITE_ENABLE_FTS4 ' - '-DSQLITE_ENABLE_FTS3_PARENTHESIS ' - '-DSQLITE_ENABLE_RTREE ' - '-DSQLITE_OMIT_AUTOINIT ' - '-DSQLITE_TCL=0 ' + extra_cflags=('-Os ' + '-DSQLITE_ENABLE_FTS5 ' + '-DSQLITE_ENABLE_FTS4 ' + '-DSQLITE_ENABLE_FTS3_PARENTHESIS ' + '-DSQLITE_ENABLE_RTREE ' + '-DSQLITE_OMIT_AUTOINIT ' + '-DSQLITE_TCL=0 ' ), configure_pre=[ '--enable-threadsafe',