Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

[sqlite3] update to 3.48.0 #43266

Merged
merged 6 commits into from
Jan 21, 2025
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 4 additions & 4 deletions ports/sqlite3/add-config-include.patch
Original file line number Diff line number Diff line change
@@ -1,17 +1,17 @@
diff --git a/sqlite3.c b/sqlite3.c
index a1fbd60..68a4e21 100644
index 80433f6..cfd213b 100644
--- a/sqlite3.c
+++ b/sqlite3.c
@@ -22,6 +22,7 @@
*/
@@ -25,6 +25,7 @@
#ifndef SQLITE_AMALGAMATION
#define SQLITE_CORE 1
#define SQLITE_AMALGAMATION 1
+#include "sqlite3-vcpkg-config.h"
#ifndef SQLITE_PRIVATE
# define SQLITE_PRIVATE static
#endif
diff --git a/sqlite3.h b/sqlite3.h
index 0376113..271cf53 100644
index 4ed8428..f1cf6d4 100644
--- a/sqlite3.h
+++ b/sqlite3.h
@@ -32,6 +32,7 @@
Expand Down
4 changes: 2 additions & 2 deletions ports/sqlite3/portfile.cmake
Original file line number Diff line number Diff line change
Expand Up @@ -2,9 +2,9 @@ string(REGEX REPLACE "^([0-9]+)[.]([0-9]+)[.]([0-9]+)[.]([0-9]+)" "\\1,0\\2,0\\3
string(REGEX REPLACE "^([0-9]+),0*([0-9][0-9]),0*([0-9][0-9]),0*([0-9][0-9])," "\\1\\2\\3\\4" SQLITE_VERSION "${SQLITE_VERSION}")

vcpkg_download_distfile(ARCHIVE
URLS "https://sqlite.org/2024/sqlite-autoconf-${SQLITE_VERSION}.tar.gz"
URLS "https://sqlite.org/2025/sqlite-autoconf-${SQLITE_VERSION}.tar.gz"
FILENAME "sqlite-autoconf-${SQLITE_VERSION}.zip"
SHA512 9f311e7834330d112a633a9ae7c211c602b36b6c44f94a7ff7463217da8f09ba2c469d1f2ca38da5ba88358c40e328a8958c1e4ad466b016f3bd2799ef2431e2
SHA512 c607cbc58cdef6910a87ddb6ae8aeabdab2769d6cc33aad04f31fc428ecc5a8eaf19f5d3a3590591aae2c920b106a684891d38efef712f91631602245f6f4d3d
)

vcpkg_extract_source_archive(
Expand Down
2 changes: 1 addition & 1 deletion ports/sqlite3/vcpkg.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "sqlite3",
"version": "3.47.2",
"version": "3.48.0",
"description": "SQLite is a software library that implements a self-contained, serverless, zero-configuration, transactional SQL database engine.",
"homepage": "https://sqlite.org/",
"license": "blessing",
Expand Down
2 changes: 1 addition & 1 deletion versions/baseline.json
Original file line number Diff line number Diff line change
Expand Up @@ -8677,7 +8677,7 @@
"port-version": 0
},
"sqlite3": {
"baseline": "3.47.2",
"baseline": "3.48.0",
"port-version": 0
},
"sqlitecpp": {
Expand Down
5 changes: 5 additions & 0 deletions versions/s-/sqlite3.json
Original file line number Diff line number Diff line change
@@ -1,5 +1,10 @@
{
"versions": [
{
"git-tree": "035eb1c851406b84ac0e242d73446fba15f7980a",
"version": "3.48.0",
"port-version": 0
},
{
"git-tree": "b22957f23065a61c8f640a9f9763b4fd48b63c01",
"version": "3.47.2",
Expand Down