Skip to content

Commit

Permalink
[LibCURL] Add version v8.0.1 (#6420)
Browse files Browse the repository at this point in the history
  • Loading branch information
giordano committed Mar 20, 2023
1 parent 713f0ef commit cfca7ec
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 4 deletions.
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
include("../common.jl")

build_libcurl(ARGS, "LibCURL")
build_libcurl(ARGS, "LibCURL", v"8.0.1")

# Build trigger: 1
10 changes: 7 additions & 3 deletions L/LibCURL/common.jl
Original file line number Diff line number Diff line change
Expand Up @@ -2,9 +2,13 @@
# `julia build_tarballs.jl --help` to see a usage message.
using BinaryBuilder, Pkg

function build_libcurl(ARGS, name::String)
version = v"7.88.1"
hash = "cdb38b72e36bc5d33d5b8810f8018ece1baa29a8f215b4495e495ded82bbf3c7"
const curl_hashes = Dict(
v"7.88.1" => "cdb38b72e36bc5d33d5b8810f8018ece1baa29a8f215b4495e495ded82bbf3c7",
v"8.0.1" => "5fd29000a4089934f121eff456101f0a5d09e2a3e89da1d714adf06c4be887cb",
)

function build_libcurl(ARGS, name::String, version::VersionNumber)
hash = curl_hashes[version]

if name == "CURL"
this_is_curl_jll = true
Expand Down

0 comments on commit cfca7ec

Please sign in to comment.