From ce2e452488bc8d7d87fe79e3ed3a52ce286f16b7 Mon Sep 17 00:00:00 2001 From: Hsiao-nan Cheung Date: Sun, 31 Mar 2024 12:28:55 +0800 Subject: [PATCH] boost: Fix `checkver` --- bucket/boost.json | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/bucket/boost.json b/bucket/boost.json index bbfb9e4f0b..6f221975c4 100644 --- a/bucket/boost.json +++ b/bucket/boost.json @@ -1,5 +1,5 @@ { - "version": "1_84_0", + "version": "1.84.0", "description": "Boost C++ Libraries", "homepage": "https://www.boost.org/", "license": "BSL-1.0", @@ -21,15 +21,15 @@ }, "checkver": { "sourceforge": "boost/boost-binaries", - "regex": "(?[\\d.]+)+/boost_(\\w+)-msvc-(?[\\d.]+)-64\\.exe" + "regex": "([\\d.]+)+/boost_(?:[\\d_]+)-msvc-(?[\\d.]+)-64\\.exe" }, "autoupdate": { "architecture": { "64bit": { - "url": "https://downloads.sourceforge.net/project/boost/boost-binaries/$matchShort/boost_$version-msvc-$matchMsvc-64.exe" + "url": "https://downloads.sourceforge.net/project/boost/boost-binaries/$version/boost_$underscoreVersion-msvc-$matchMsvc-64.exe" }, "32bit": { - "url": "https://downloads.sourceforge.net/project/boost/boost-binaries/$matchShort/boost_$version-msvc-$matchMsvc-32.exe" + "url": "https://downloads.sourceforge.net/project/boost/boost-binaries/$version/boost_$underscoreVersion-msvc-$matchMsvc-32.exe" } } }