Skip to content

Commit

Permalink
Fix curl on Windows (digital-asset#2643)
Browse files Browse the repository at this point in the history
The old URL has gone away. The definition is taken from upstream.
  • Loading branch information
cocreature authored and mergify[bot] committed Aug 23, 2019
1 parent 997212c commit 4b23d93
Show file tree
Hide file tree
Showing 3 changed files with 40 additions and 20 deletions.
2 changes: 1 addition & 1 deletion .dadew
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
"7zip",
"java-openjdk-8u201",
"msys2",
"curl-7.65.1",
"curl-7.65.3",
"cacert",
"vcredist-14.0.23026",
"bazel",
Expand Down
19 changes: 0 additions & 19 deletions dev-env/windows/manifests/curl-7.65.1.json

This file was deleted.

39 changes: 39 additions & 0 deletions dev-env/windows/manifests/curl-7.65.3.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,39 @@
{
"homepage": "https://curl.haxx.se/",
"description": "Command line tool and library for transferring data with URLs",
"version": "7.65.3_1",
"license": "MIT",
"architecture": {
"64bit": {
"url": "https://curl.haxx.se/windows/dl-7.65.3_1/curl-7.65.3_1-win64-mingw.tar.xz",
"hash": "36baacaa2984613fe91e15040d337e8e9e8ab4bc7b56f053031563ab5585e561",
"extract_dir": "curl-7.65.3-win64-mingw"
},
"32bit": {
"url": "https://curl.haxx.se/windows/dl-7.65.3_1/curl-7.65.3_1-win32-mingw.tar.xz",
"hash": "44fcce9e83bec2e8e871967ca0d5598a47afb3523a69a67053aaef7a24901148",
"extract_dir": "curl-7.65.3-win32-mingw"
}
},
"bin": "bin\\curl.exe",
"checkver": {
"url": "https://curl.haxx.se/windows/",
"re": "Build<\\/b>:\\s+([\\d._]+)"
},
"autoupdate": {
"architecture": {
"64bit": {
"url": "https://curl.haxx.se/windows/dl-$version/curl-$version-win64-mingw.tar.xz",
"extract_dir": "curl-$matchHead-win64-mingw"
},
"32bit": {
"url": "https://curl.haxx.se/windows/dl-$version/curl-$version-win32-mingw.tar.xz",
"extract_dir": "curl-$matchHead-win32-mingw"
}
},
"hash": {
"url": "$baseurl/hashes.txt",
"find": "SHA256\\($basename\\)=\\s+([a-fA-F\\d]{64})"
}
}
}

0 comments on commit 4b23d93

Please sign in to comment.