libuv: Update script to get libuv 1.52.1

Use a commit just after the v1.52.1 tag to get some compilation fixes.
This commit is contained in:
Brad King
2026-08-13 09:52:19 -04:00
parent aadc9b938c
commit 4c61484f5c
+6 -1
View File
@@ -8,7 +8,7 @@ readonly name="libuv"
readonly ownership="libuv upstream <libuv@googlegroups.com>"
readonly subtree="Utilities/cmlibuv"
readonly repo="https://github.com/libuv/libuv.git"
readonly tag="v1.52.0"
readonly tag="d2a45ce364ed97e916be3bcecfd756f15d852473" # v1.52.1 + fixes
readonly shortlog=false
readonly exact_tree_match=false
readonly paths="
@@ -23,6 +23,11 @@ extract_source () {
echo "* -whitespace" > .gitattributes
echo >> src/unix/aix-common.c
echo >> src/unix/ibmi.c
sed -i '
s/UV_VERSION_PATCH 2/UV_VERSION_PATCH 1/
s/UV_VERSION_IS_RELEASE 0/UV_VERSION_IS_RELEASE 1/
s/UV_VERSION_SUFFIX "dev"/UV_VERSION_SUFFIX ""/
' include/uv/version.h
popd
}