Skip to content

Commit 612e891

Browse files
committed
Update curl to v8.13.0-rc2
1 parent a000a56 commit 612e891

File tree

5 files changed

+19
-7
lines changed

5 files changed

+19
-7
lines changed

README.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -13,5 +13,5 @@ of third party libraries used in the Windows port of WebKit.
1313
|---|:---:|:---:|---|
1414
| [icu](http://site.icu-project.org) | 76.1 | 2024-10-24 | CMake port. Upstream pinned to 74.1 |
1515
| [zlib](https://github.com/zlib-ng/zlib-ng) | zlib-ng | N/A | Map zlib to zlib-ng |
16-
| [curl](https://curl.se) | 8.12.1 | 2025-02-12 | Customization of build options |
16+
| [curl](https://curl.se) | 8.13.0-rc2 | 2025-03-17 | Customization of build options, and release candidates |
1717
| [cairo](https://gitlab.freedesktop.org/cairo/cairo) | 1.18.2 | 2024-09-01 | CMake port. Will remove when cairo taken out of WebKit |

ports/curl/portfile.cmake

+11-4
Original file line numberDiff line numberDiff line change
@@ -1,14 +1,21 @@
1-
set(VERSION 8.12.1)
1+
set(VERSION 8.13.0-rc2)
22
string(REPLACE "." "_" TAG ${VERSION})
33

4-
set(FILENAME "curl-${VERSION}.zip")
5-
set(URLS "https://github.com/curl/curl/releases/download/curl-${TAG}/${FILENAME}")
4+
set(FILENAME "curl-${VERSION}.tar.xz")
5+
if (VERSION MATCHES "-rc")
6+
set(URLS "https://curl.se/rc/${FILENAME}")
7+
else ()
8+
set(URLS
9+
"https://curl.se/download/${FILENAME}"
10+
"https://github.com/curl/curl/releases/download/curl-${TAG}/${FILENAME}"
11+
)
12+
endif ()
613

714
# Get archive
815
vcpkg_download_distfile(ARCHIVE
916
URLS ${URLS}
1017
FILENAME ${FILENAME}
11-
SHA512 c0be503358811b82f360f6bc65389b7b6e45526c1078689df4a6ae5f848c2103babac2f2fcc0bed0c562c22948b990684a420b83aadf028b3912bf2b361c3462
18+
SHA512 299b41b5bf52b29f5064f68cd7d8d1e95d8b8f8b36fb80fb67ed2b342123f1fc87a543754cbee8c49c83a8e73daca89cb132a76c795d7fa4d9231c6bf281a9e0
1219
)
1320

1421
# Extract archive

ports/curl/vcpkg.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "curl",
3-
"version": "8.12.1",
3+
"version": "8.13.0-rc2",
44
"description": "A library for transferring data with URLs",
55
"homepage": "https://curl.se/",
66
"dependencies": [

versions/baseline.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
"port-version": 0
66
},
77
"curl": {
8-
"baseline": "8.12.1",
8+
"baseline": "8.13.0-rc2",
99
"port-version": 0
1010
},
1111
"icu": {

versions/c-/curl.json

+5
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,10 @@
11
{
22
"versions": [
3+
{
4+
"git-tree": "9eeb80d49e86a49bd154c2eb4db3ed07c3352f40",
5+
"version": "8.13.0-rc2",
6+
"port-version": 0
7+
},
38
{
49
"git-tree": "8df7afbdbc341d47543c075fd44c6d6a4ce1f793",
510
"version": "8.12.1",

0 commit comments

Comments
 (0)