[3.13] gh-129917: Update installers to use SQLite 3.49.1 (GH-131025) (#131957)

gh-129917: Update installers to use SQLite 3.49.1 (GH-131025)

(cherry picked from commit 45a3ab5a81)

Co-authored-by: Erlend E. Aasland <erlend@python.org>
Co-authored-by: Ned Deily <nad@python.org>
This commit is contained in:
Miss Islington (bot) 2025-03-31 23:37:14 +02:00 committed by GitHub
parent 4913b6f944
commit 67087d9327
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
8 changed files with 15 additions and 14 deletions

View file

@ -359,9 +359,9 @@ def library_recipes():
),
),
dict(
name="SQLite 3.45.3",
url="https://sqlite.org/2024/sqlite-autoconf-3450300.tar.gz",
checksum="b2809ca53124c19c60f42bf627736eae011afdcc205bb48270a5ee9a38191531",
name="SQLite 3.49.1",
url="https://sqlite.org/2025/sqlite-autoconf-3490100.tar.gz",
checksum="106642d8ccb36c5f7323b64e4152e9b719f7c0215acf5bfeac3d5e7f97b59254",
extra_cflags=('-Os '
'-DSQLITE_ENABLE_FTS5 '
'-DSQLITE_ENABLE_FTS4 '
@ -372,11 +372,10 @@ def library_recipes():
),
configure_pre=[
'--enable-threadsafe',
'--enable-shared=no',
'--enable-static=yes',
'--disable-readline',
'--disable-dependency-tracking',
]
],
install=f"make && ranlib libsqlite3.a && make install DESTDIR={shellQuote(os.path.join(WORKDIR, 'libraries'))}",
),
dict(
name="libmpdec 4.0.0",