Last active
October 25, 2022 20:17
-
-
Save bartoszmajsak/9359068bc8cead002a2fcf1ff947ad09 to your computer and use it in GitHub Desktop.
xns-informers deps update
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/bin/bash | |
set -eo pipefail | |
die () { | |
echo >&2 "$@" | |
show_help | |
exit 1 | |
} | |
show_help() { | |
local usage | |
usage=" | |
$(basename "$0") | |
Usage: | |
./$(basename "$0") [flags] | |
Options: | |
--version of istio/istio upstream project from which go.mod is used | |
-h, --help | |
Help message. | |
Example: | |
./$(basename "$0") --version 1.15.2 | |
" | |
echo "$usage" | |
} | |
function header { | |
echo -e "\n\e[92m\e[4m\e[1m${1}\e[0m\n" | |
} | |
function hasDepToReplace { | |
local value=$1 | |
local deps=$2 | |
for dep in "${deps[@]}"; do | |
found=$(echo "$dep" | grep "$value" || true) | |
if [ -n "$found" ]; then | |
return 0 | |
fi | |
done | |
return 1 | |
} | |
while test $# -gt 0; do | |
case "$1" in | |
-h|--help) | |
show_help | |
exit 0 | |
;; | |
--version) | |
if [[ $1 == "--"* ]]; then | |
version="${2/--/}" | |
shift | |
fi | |
shift | |
;; | |
*) | |
die "$(basename "$0"): unknown flag $(echo $1 | cut -d'=' -f 1)" | |
exit 1 | |
;; | |
esac | |
done | |
if [ -z "$version" ]; then | |
die "Missing version" | |
fi | |
if ! command -v curl &>/dev/null; then | |
echo "curl is required" | |
exit 1 | |
fi | |
if ! command -v deptree &>/dev/null; then | |
echo "deptree is required. $ go install github.com/vc60er/deptree@latest" | |
exit 1 | |
fi | |
istioDeps=$(curl -s https://raw.githubusercontent.com/istio/istio/${version}/go.mod) | |
mapfile -t deps < <(go mod graph | deptree -d 1 | cut -d' ' -f 2 | tr -s '\n' | sort | grep -v "tree:") | |
mapfile -t replaceDeps < <(echo "${istioDeps}" | grep -Po 'replace \K.*') | |
header "Updating deps:" | |
for dep in "${deps[@]}"; do | |
lib="${dep%@*}" | |
istioDep=$(echo "${istioDeps}" | grep -v "replace" | grep "${lib} " || true) | |
if [ -n "$istioDep" ]; then | |
newVersion=${istioDep#*\ } | |
echo "go mod edit -require=${lib}@${newVersion%"// indirect"}" | |
go mod edit -require=${lib}@${newVersion%"// indirect"} | |
fi | |
done | |
header "Adding explicit replaces:" | |
for dep in "${replaceDeps[@]}"; do | |
name=${dep%%\ *} | |
newVersion=${dep##*\ } | |
hasDepToReplace "${name}" "${deps[*]}" | |
if [[ $? -eq 0 ]]; then | |
echo "go mod edit -replace ${name}=${name}@${newVersion}" | |
go mod edit -replace=${name}=${name}@${newVersion} | |
fi | |
done |
Author
bartoszmajsak
commented
Oct 25, 2022
•
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment