Skip to content

Commit b1bbd01

Browse files
[3.12] gh-129917: Update installers to use SQLite 3.49.1 (#131025) (#131958)
(cherry picked from commit 45a3ab5) Co-authored-by: Ned Deily <[email protected]>
1 parent b87ea7d commit b1bbd01

7 files changed

+14
-13
lines changed

Mac/BuildScript/build-installer.py

+5-6
Original file line numberDiff line numberDiff line change
@@ -359,9 +359,9 @@ def library_recipes():
359359
),
360360
),
361361
dict(
362-
name="SQLite 3.45.3",
363-
url="https://sqlite.org/2024/sqlite-autoconf-3450300.tar.gz",
364-
checksum="b2809ca53124c19c60f42bf627736eae011afdcc205bb48270a5ee9a38191531",
362+
name="SQLite 3.49.1",
363+
url="https://sqlite.org/2025/sqlite-autoconf-3490100.tar.gz",
364+
checksum="106642d8ccb36c5f7323b64e4152e9b719f7c0215acf5bfeac3d5e7f97b59254",
365365
extra_cflags=('-Os '
366366
'-DSQLITE_ENABLE_FTS5 '
367367
'-DSQLITE_ENABLE_FTS4 '
@@ -372,11 +372,10 @@ def library_recipes():
372372
),
373373
configure_pre=[
374374
'--enable-threadsafe',
375-
'--enable-shared=no',
376-
'--enable-static=yes',
377375
'--disable-readline',
378376
'--disable-dependency-tracking',
379-
]
377+
],
378+
install=f"make && ranlib libsqlite3.a && make install DESTDIR={shellQuote(os.path.join(WORKDIR, 'libraries'))}",
380379
),
381380
])
382381

Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
Update Windows installer to ship with SQLite 3.49.1.
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
Update macOS installer to ship with SQLite 3.49.1.

Misc/externals.spdx.json

+4-4
Original file line numberDiff line numberDiff line change
@@ -69,21 +69,21 @@
6969
"checksums": [
7070
{
7171
"algorithm": "SHA256",
72-
"checksumValue": "730e4a3efd6a63828bee499940fb13acc2a32c182502ce8a1d970387895d0504"
72+
"checksumValue": "e335aeb44fa36cde60ecbb6a9f8be6f5d449d645ce9b0199ee53a7e6728d19d2"
7373
}
7474
],
75-
"downloadLocation": "https://github.com/python/cpython-source-deps/archive/refs/tags/sqlite-3.45.3.0.tar.gz",
75+
"downloadLocation": "https://github.com/python/cpython-source-deps/archive/refs/tags/sqlite-3.49.1.0.tar.gz",
7676
"externalRefs": [
7777
{
7878
"referenceCategory": "SECURITY",
79-
"referenceLocator": "cpe:2.3:a:sqlite:sqlite:3.45.3.0:*:*:*:*:*:*:*",
79+
"referenceLocator": "cpe:2.3:a:sqlite:sqlite:3.49.1.0:*:*:*:*:*:*:*",
8080
"referenceType": "cpe23Type"
8181
}
8282
],
8383
"licenseConcluded": "NOASSERTION",
8484
"name": "sqlite",
8585
"primaryPackagePurpose": "SOURCE",
86-
"versionInfo": "3.45.3.0"
86+
"versionInfo": "3.49.1.0"
8787
},
8888
{
8989
"SPDXID": "SPDXRef-PACKAGE-tcl-core",

PCbuild/get_externals.bat

+1-1
Original file line numberDiff line numberDiff line change
@@ -54,7 +54,7 @@ set libraries=
5454
set libraries=%libraries% bzip2-1.0.8
5555
if NOT "%IncludeLibffiSrc%"=="false" set libraries=%libraries% libffi-3.4.4
5656
if NOT "%IncludeSSLSrc%"=="false" set libraries=%libraries% openssl-3.0.16
57-
set libraries=%libraries% sqlite-3.45.3.0
57+
set libraries=%libraries% sqlite-3.49.1.0
5858
if NOT "%IncludeTkinterSrc%"=="false" set libraries=%libraries% tcl-core-8.6.15.0
5959
if NOT "%IncludeTkinterSrc%"=="false" set libraries=%libraries% tk-8.6.15.0
6060
if NOT "%IncludeTkinterSrc%"=="false" set libraries=%libraries% tix-8.4.3.6

PCbuild/python.props

+1-1
Original file line numberDiff line numberDiff line change
@@ -68,7 +68,7 @@
6868
<Import Project="$(ExternalProps)" Condition="$(ExternalProps) != '' and Exists('$(ExternalProps)')" />
6969

7070
<PropertyGroup>
71-
<sqlite3Dir Condition="$(sqlite3Dir) == ''">$(ExternalsDir)sqlite-3.45.3.0\</sqlite3Dir>
71+
<sqlite3Dir Condition="$(sqlite3Dir) == ''">$(ExternalsDir)sqlite-3.49.1.0\</sqlite3Dir>
7272
<bz2Dir Condition="$(bz2Dir) == ''">$(ExternalsDir)bzip2-1.0.8\</bz2Dir>
7373
<lzmaDir Condition="$(lzmaDir) == ''">$(ExternalsDir)xz-5.2.5\</lzmaDir>
7474
<libffiDir Condition="$(libffiDir) == ''">$(ExternalsDir)libffi-3.4.4\</libffiDir>

PCbuild/readme.txt

+1-1
Original file line numberDiff line numberDiff line change
@@ -189,7 +189,7 @@ _ssl
189189
again when building.
190190

191191
_sqlite3
192-
Wraps SQLite 3.45.3, which is itself built by sqlite3.vcxproj
192+
Wraps SQLite 3.49.1, which is itself built by sqlite3.vcxproj
193193
Homepage:
194194
https://www.sqlite.org/
195195
_tkinter

0 commit comments

Comments
 (0)