Files
CMake/Utilities/Scripts/update-curl.bash
Brad King 59534983c9 Merge topic 'update-common-tracking'
e1f4a35171 Utilities/Scripts: do not use exact tree match
1b03059674 update-common.sh: synchronize with upstream
98e410c4db git-fetch-file: track `update-common.sh`

Acked-by: Kitware Robot <kwrobot@kitware.com>
Merge-request: !11397
2025-11-10 14:35:29 -05:00

46 lines
841 B
Bash
Executable File

#!/usr/bin/env bash
set -e
set -x
shopt -s dotglob
readonly name="curl"
readonly ownership="Curl Upstream <curl-library@lists.haxx.se>"
readonly subtree="Utilities/cmcurl"
readonly repo="https://github.com/curl/curl.git"
readonly tag="curl-8_17_0"
readonly shortlog=false
readonly exact_tree_match=false
readonly paths="
CMake/*
CMakeLists.txt
COPYING
include/curl/*.h
lib/*.c
lib/*.h
lib/CMakeLists.txt
lib/Makefile.inc
lib/curl_config.h.cmake
lib/libcurl.rc
lib/curlx/*.c
lib/curlx/*.h
lib/vauth/*.c
lib/vauth/*.h
lib/vquic/*.c
lib/vquic/*.h
lib/vssh/*.c
lib/vssh/*.h
lib/vtls/*.c
lib/vtls/*.h
"
extract_source () {
git_archive
pushd "${extractdir}/${name}-reduced"
rm lib/config-*.h
echo "* -whitespace" > .gitattributes
popd
}
. "${BASH_SOURCE%/*}/update-third-party.bash"