lttng-libust: needs autoreconf
[buildroot-gz.git] / support / download / hg
blob3af01690b309c564f2b52aee0d4896e82f7ba4e5
1 #!/usr/bin/env bash
3 # We want to catch any unexpected failure, and exit immediately
4 set -e
6 # Download helper for hg, to be called from the download wrapper script
8 # Call it as:
9 # .../hg [-q] OUT_FILE REPO_URL CSET BASENAME
11 # Environment:
12 # HG : the hg command to call
14 verbose=
15 while getopts :q OPT; do
16 case "${OPT}" in
17 q) verbose=-q;;
18 \?) printf "unknown option '%s'\n" "${OPTARG}" >&2; exit 1;;
19 esac
20 done
21 shift $((OPTIND-1))
23 output="${1}"
24 repo="${2}"
25 cset="${3}"
26 basename="${4}"
28 shift 4 # Get rid of our options
30 # Caller needs to single-quote its arguments to prevent them from
31 # being expanded a second time (in case there are spaces in them)
32 _hg() {
33 eval ${HG} "${@}"
36 _hg clone ${verbose} "${@}" --noupdate "'${repo}'" "'${basename}'"
38 _hg archive ${verbose} --repository "'${basename}'" --type tgz \
39 --prefix "'${basename}'" --rev "'${cset}'" \
40 - >"${output}"