From: Erlend Egeberg Aasland Date: Tue, 5 Jan 2021 22:52:55 +0000 (+0100) Subject: [3.9] bpo-42584: Update macOS installer to use SQLite 3.34.0 (GH-23674) (GH-24130) X-Git-Tag: v3.9.2rc1~61 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=e9a71dab094c0467f07d13cce4324c8a93727863;p=thirdparty%2FPython%2Fcpython.git [3.9] bpo-42584: Update macOS installer to use SQLite 3.34.0 (GH-23674) (GH-24130) (cherry picked from commit c94ee13ad596d26d1859078bc09806aa59bb0000) Co-authored-by: Erlend Egeberg Aasland Automerge-Triggered-By: GH:ned-deily --- diff --git a/Mac/BuildScript/build-installer.py b/Mac/BuildScript/build-installer.py index b51859823a4a..ef64502ab780 100755 --- a/Mac/BuildScript/build-installer.py +++ b/Mac/BuildScript/build-installer.py @@ -354,9 +354,9 @@ def library_recipes(): ), ), dict( - name="SQLite 3.33.0", - url="https://sqlite.org/2020/sqlite-autoconf-3330000.tar.gz", - checksum='842a8a100d7b01b09e543deb2b7951dd', + name="SQLite 3.34.0", + url="https://sqlite.org/2020/sqlite-autoconf-3340000.tar.gz", + checksum='7f33c9db7b713957fcb9271fe9049fef', extra_cflags=('-Os ' '-DSQLITE_ENABLE_FTS5 ' '-DSQLITE_ENABLE_FTS4 ' @@ -1611,7 +1611,7 @@ def buildDMG(): if os.path.exists(outdir): shutil.rmtree(outdir) - # We used to use the deployment target as the last characters of the + # We used to use the deployment target as the last characters of the # installer file name. With the introduction of weaklinked installer # variants, we may have two variants with the same file name, i.e. # both ending in '10.9'. To avoid this, we now use the major/minor diff --git a/Misc/NEWS.d/next/macOS/2020-12-07-11-37-35.bpo-42584.LygmqQ.rst b/Misc/NEWS.d/next/macOS/2020-12-07-11-37-35.bpo-42584.LygmqQ.rst new file mode 100644 index 000000000000..2a625f98e907 --- /dev/null +++ b/Misc/NEWS.d/next/macOS/2020-12-07-11-37-35.bpo-42584.LygmqQ.rst @@ -0,0 +1 @@ +Update macOS installer to use SQLite 3.34.0.