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

Update curl to v8.13.0-rc2 #217

Merged
merged 1 commit into from
Mar 24, 2025
Merged
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
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
@@ -13,5 +13,5 @@ of third party libraries used in the Windows port of WebKit.
|---|:---:|:---:|---|
| [icu](http://site.icu-project.org) | 76.1 | 2024-10-24 | CMake port. Upstream pinned to 74.1 |
| [zlib](https://github.com/zlib-ng/zlib-ng) | zlib-ng | N/A | Map zlib to zlib-ng |
| [curl](https://curl.se) | 8.12.1 | 2025-02-12 | Customization of build options |
| [curl](https://curl.se) | 8.13.0-rc2 | 2025-03-17 | Customization of build options, and release candidates |
| [cairo](https://gitlab.freedesktop.org/cairo/cairo) | 1.18.2 | 2024-09-01 | CMake port. Will remove when cairo taken out of WebKit |
15 changes: 11 additions & 4 deletions ports/curl/portfile.cmake
Original file line number Diff line number Diff line change
@@ -1,14 +1,21 @@
set(VERSION 8.12.1)
set(VERSION 8.13.0-rc2)
string(REPLACE "." "_" TAG ${VERSION})

set(FILENAME "curl-${VERSION}.zip")
set(URLS "https://github.com/curl/curl/releases/download/curl-${TAG}/${FILENAME}")
set(FILENAME "curl-${VERSION}.tar.xz")
if (VERSION MATCHES "-rc")
set(URLS "https://curl.se/rc/${FILENAME}")
else ()
set(URLS
"https://curl.se/download/${FILENAME}"
"https://github.com/curl/curl/releases/download/curl-${TAG}/${FILENAME}"
)
endif ()

# Get archive
vcpkg_download_distfile(ARCHIVE
URLS ${URLS}
FILENAME ${FILENAME}
SHA512 c0be503358811b82f360f6bc65389b7b6e45526c1078689df4a6ae5f848c2103babac2f2fcc0bed0c562c22948b990684a420b83aadf028b3912bf2b361c3462
SHA512 299b41b5bf52b29f5064f68cd7d8d1e95d8b8f8b36fb80fb67ed2b342123f1fc87a543754cbee8c49c83a8e73daca89cb132a76c795d7fa4d9231c6bf281a9e0
)

# Extract archive
2 changes: 1 addition & 1 deletion ports/curl/vcpkg.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "curl",
"version": "8.12.1",
"version": "8.13.0-rc2",
"description": "A library for transferring data with URLs",
"homepage": "https://curl.se/",
"dependencies": [
2 changes: 1 addition & 1 deletion versions/baseline.json
Original file line number Diff line number Diff line change
@@ -5,7 +5,7 @@
"port-version": 0
},
"curl": {
"baseline": "8.12.1",
"baseline": "8.13.0-rc2",
"port-version": 0
},
"icu": {
5 changes: 5 additions & 0 deletions versions/c-/curl.json
Original file line number Diff line number Diff line change
@@ -1,5 +1,10 @@
{
"versions": [
{
"git-tree": "9eeb80d49e86a49bd154c2eb4db3ed07c3352f40",
"version": "8.13.0-rc2",
"port-version": 0
},
{
"git-tree": "8df7afbdbc341d47543c075fd44c6d6a4ce1f793",
"version": "8.12.1",