mirror of
https://github.com/ScoopInstaller/Main.git
synced 2025-11-07 09:11:18 +00:00
OpenSSL: checkver fix for version 1.1.1a (#2814)
* Update regex * Also match version x.x.x without _x * fixes #2812, fixes #2813, fixes #2815
This commit is contained in:
parent
bba8390c25
commit
6153ee24f3
10
openssl.json
10
openssl.json
@ -6,12 +6,12 @@
|
||||
"64bit": {
|
||||
"url": "https://curl.haxx.se/windows/dl-7.62.0_1/openssl-1.1.1a_1-win64-mingw.tar.xz",
|
||||
"hash": "f86dabd6ee767d46efbe80bd557814e3dc0dc62f951dda1a3648e56adcdd129b",
|
||||
"extract_dir": "openssl-1.1.1-win64-mingw"
|
||||
"extract_dir": "openssl-1.1.1a-win64-mingw"
|
||||
},
|
||||
"32bit": {
|
||||
"url": "https://curl.haxx.se/windows/dl-7.62.0_1/openssl-1.1.1a_1-win32-mingw.tar.xz",
|
||||
"hash": "59a9ac103db3a2c7aee041015ced07c0a53409a1445ef74b556476d9118424c4",
|
||||
"extract_dir": "openssl-1.1.1-win32-mingw"
|
||||
"extract_dir": "openssl-1.1.1a-win32-mingw"
|
||||
}
|
||||
},
|
||||
"bin": "openssl.exe",
|
||||
@ -21,17 +21,17 @@
|
||||
},
|
||||
"checkver": {
|
||||
"url": "https://curl.haxx.se/windows/",
|
||||
"re": "dl-(?<curl>[\\d._]+)/openssl-(?<version>[\\w.]+)-win64-mingw"
|
||||
"re": "dl-(?<curl>[\\d._]+)/openssl-(?<version>(?<major>[\\da-z.]+)[_\\d]*)-win64-mingw"
|
||||
},
|
||||
"autoupdate": {
|
||||
"architecture": {
|
||||
"64bit": {
|
||||
"url": "https://curl.haxx.se/windows/dl-$matchCurl/openssl-$version-win64-mingw.tar.xz",
|
||||
"extract_dir": "openssl-$matchHead-win64-mingw"
|
||||
"extract_dir": "openssl-$matchMajor-win64-mingw"
|
||||
},
|
||||
"32bit": {
|
||||
"url": "https://curl.haxx.se/windows/dl-$matchCurl/openssl-$version-win32-mingw.tar.xz",
|
||||
"extract_dir": "openssl-$matchHead-win32-mingw"
|
||||
"extract_dir": "openssl-$matchMajor-win32-mingw"
|
||||
}
|
||||
},
|
||||
"hash": {
|
||||
|
||||
Loading…
x
Reference in New Issue
Block a user