support/download: support -q in all download backends
Add an option flag to all backends, as well as the check-hash script, so as to silence download helpers when the user wants a silent build. Additionaly, make the default be verbose. Inspired by Fabio's patch on git/svn. [Thomas: fix a typo "Environemnt" -> "Environment" Signed-off-by: "Yann E. MORIN" <yann.morin.1998@free.fr> Cc: Fabio Porcedda <fabio.porcedda@gmail.com> Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
This commit is contained in:
parent
a61b747686
commit
50c8b7e947
@ -4,17 +4,26 @@
|
|||||||
set -e
|
set -e
|
||||||
|
|
||||||
# Download helper for bzr, to be called from the download wrapper script
|
# Download helper for bzr, to be called from the download wrapper script
|
||||||
# Expected arguments:
|
#
|
||||||
# $1: output file
|
# Call it as:
|
||||||
# $2: bzr repo
|
# .../bzr [-q] OUT_FILE REPO_URL REV BASENAME
|
||||||
# $3: bzr revision
|
#
|
||||||
# $4: basename
|
# Environment:
|
||||||
# And this environment:
|
|
||||||
# BZR : the bzr command to call
|
# BZR : the bzr command to call
|
||||||
|
|
||||||
|
|
||||||
|
verbose=-v
|
||||||
|
while getopts :q OPT; do
|
||||||
|
case "${OPT}" in
|
||||||
|
q) verbose=-q;;
|
||||||
|
\?) printf "unknown option '%s'\n" "${OPTARG}" >&2; exit 1;;
|
||||||
|
esac
|
||||||
|
done
|
||||||
|
shift $((OPTIND-1))
|
||||||
|
|
||||||
output="${1}"
|
output="${1}"
|
||||||
repo="${2}"
|
repo="${2}"
|
||||||
rev="${3}"
|
rev="${3}"
|
||||||
basename="${4}"
|
basename="${4}"
|
||||||
|
|
||||||
${BZR} export --root="${basename}/" --format=tgz "${output}" "${repo}" -r "${rev}"
|
${BZR} export ${verbose} --root="${basename}/" --format=tgz "${output}" "${repo}" -r "${rev}"
|
||||||
|
@ -10,6 +10,14 @@ set -e
|
|||||||
# saved as, to be able to match it to the corresponding hashes
|
# saved as, to be able to match it to the corresponding hashes
|
||||||
# in the .hash file
|
# in the .hash file
|
||||||
|
|
||||||
|
while getopts :q OPT; do
|
||||||
|
case "${OPT}" in
|
||||||
|
q) exec >/dev/null;;
|
||||||
|
\?) exit 1;;
|
||||||
|
esac
|
||||||
|
done
|
||||||
|
shift $((OPTIND-1))
|
||||||
|
|
||||||
h_file="${1}"
|
h_file="${1}"
|
||||||
file="${2}"
|
file="${2}"
|
||||||
base="${3}"
|
base="${3}"
|
||||||
|
@ -4,13 +4,23 @@
|
|||||||
set -e
|
set -e
|
||||||
|
|
||||||
# Download helper for cp, to be called from the download wrapper script
|
# Download helper for cp, to be called from the download wrapper script
|
||||||
# Expected arguments:
|
#
|
||||||
# $1: output file
|
# Call it as:
|
||||||
# $2: source file
|
# .../cp [-q] OUT_FILE SRC_FILE
|
||||||
# And this environment:
|
#
|
||||||
|
# Environment:
|
||||||
# LOCALFILES: the cp command to call
|
# LOCALFILES: the cp command to call
|
||||||
|
|
||||||
|
verbose=-v
|
||||||
|
while getopts :q OPT; do
|
||||||
|
case "${OPT}" in
|
||||||
|
q) verbose=;;
|
||||||
|
\?) printf "unknown option '%s'\n" "${OPTARG}" >&2; exit 1;;
|
||||||
|
esac
|
||||||
|
done
|
||||||
|
shift $((OPTIND-1))
|
||||||
|
|
||||||
output="${1}"
|
output="${1}"
|
||||||
source="${2}"
|
source="${2}"
|
||||||
|
|
||||||
${LOCALFILES} "${source}" "${output}"
|
${LOCALFILES} ${verbose} "${source}" "${output}"
|
||||||
|
@ -4,22 +4,29 @@
|
|||||||
set -e
|
set -e
|
||||||
|
|
||||||
# Download helper for cvs, to be called from the download wrapper script
|
# Download helper for cvs, to be called from the download wrapper script
|
||||||
# Expected arguments:
|
#
|
||||||
# $1: output file
|
# Call it as:
|
||||||
# $2: cvs repo
|
# .../cvs [-q] OUT_FILE CVS_URL REV PKG_NAME BASENAME
|
||||||
# $3: cvs revision
|
#
|
||||||
# $4: package's name (eg. foobar)
|
# Environment:
|
||||||
# $5: package's basename (eg. foobar-1.2.3)
|
|
||||||
# And this environment:
|
|
||||||
# CVS : the cvs command to call
|
# CVS : the cvs command to call
|
||||||
|
|
||||||
|
verbose=
|
||||||
|
while getopts :q OPT; do
|
||||||
|
case "${OPT}" in
|
||||||
|
q) verbose=-Q;;
|
||||||
|
\?) printf "unknown option '%s'\n" "${OPTARG}" >&2; exit 1;;
|
||||||
|
esac
|
||||||
|
done
|
||||||
|
shift $((OPTIND-1))
|
||||||
|
|
||||||
output="${1}"
|
output="${1}"
|
||||||
repo="${2}"
|
repo="${2}"
|
||||||
rev="${3}"
|
rev="${3}"
|
||||||
rawname="${4}"
|
rawname="${4}"
|
||||||
basename="${5}"
|
basename="${5}"
|
||||||
|
|
||||||
${CVS} -z3 -d":pserver:anonymous@${repo}" \
|
${CVS} ${verbose} -z3 -d":pserver:anonymous@${repo}" \
|
||||||
co -d "${basename}" -r ":${rev}" -P "${rawname}"
|
co -d "${basename}" -r ":${rev}" -P "${rawname}"
|
||||||
|
|
||||||
tar czf "${output}" "${basename}"
|
tar czf "${output}" "${basename}"
|
||||||
|
@ -4,14 +4,22 @@
|
|||||||
set -e
|
set -e
|
||||||
|
|
||||||
# Download helper for git, to be called from the download wrapper script
|
# Download helper for git, to be called from the download wrapper script
|
||||||
# Expected arguments:
|
#
|
||||||
# $1: output file
|
# Call it as:
|
||||||
# $2: git repo
|
# .../git [-q] OUT_FILE REPO_URL CSET BASENAME
|
||||||
# $3: git cset
|
#
|
||||||
# $4: package's basename (eg. foobar-1.2.3)
|
# Environment:
|
||||||
# And this environment:
|
|
||||||
# GIT : the git command to call
|
# GIT : the git command to call
|
||||||
|
|
||||||
|
verbose=-v
|
||||||
|
while getopts :q OPT; do
|
||||||
|
case "${OPT}" in
|
||||||
|
q) verbose=-q;;
|
||||||
|
\?) printf "unknown option '%s'\n" "${OPTARG}" >&2; exit 1;;
|
||||||
|
esac
|
||||||
|
done
|
||||||
|
shift $((OPTIND-1))
|
||||||
|
|
||||||
output="${1}"
|
output="${1}"
|
||||||
repo="${2}"
|
repo="${2}"
|
||||||
cset="${3}"
|
cset="${3}"
|
||||||
@ -22,7 +30,7 @@ basename="${4}"
|
|||||||
git_done=0
|
git_done=0
|
||||||
if [ -n "$(${GIT} ls-remote "${repo}" "${cset}" 2>&1)" ]; then
|
if [ -n "$(${GIT} ls-remote "${repo}" "${cset}" 2>&1)" ]; then
|
||||||
printf "Doing shallow clone\n"
|
printf "Doing shallow clone\n"
|
||||||
if ${GIT} clone --depth 1 -b "${cset}" --bare "${repo}" "${basename}"; then
|
if ${GIT} clone ${verbose} --depth 1 -b "${cset}" --bare "${repo}" "${basename}"; then
|
||||||
git_done=1
|
git_done=1
|
||||||
else
|
else
|
||||||
printf "Shallow clone failed, falling back to doing a full clone\n"
|
printf "Shallow clone failed, falling back to doing a full clone\n"
|
||||||
@ -30,7 +38,7 @@ if [ -n "$(${GIT} ls-remote "${repo}" "${cset}" 2>&1)" ]; then
|
|||||||
fi
|
fi
|
||||||
if [ ${git_done} -eq 0 ]; then
|
if [ ${git_done} -eq 0 ]; then
|
||||||
printf "Doing full clone\n"
|
printf "Doing full clone\n"
|
||||||
${GIT} clone --bare "${repo}" "${basename}"
|
${GIT} clone ${verbose} --bare "${repo}" "${basename}"
|
||||||
fi
|
fi
|
||||||
|
|
||||||
GIT_DIR="${basename}" \
|
GIT_DIR="${basename}" \
|
||||||
|
@ -4,21 +4,29 @@
|
|||||||
set -e
|
set -e
|
||||||
|
|
||||||
# Download helper for hg, to be called from the download wrapper script
|
# Download helper for hg, to be called from the download wrapper script
|
||||||
# Expected arguments:
|
#
|
||||||
# $1: output file
|
# Call it as:
|
||||||
# $2: hg repo
|
# .../hg [-q] OUT_FILE REPO_URL CSET BASENAME
|
||||||
# $3: hg cset
|
#
|
||||||
# $4: package's basename (eg. foobar-1.2.3)
|
# Environment:
|
||||||
# And this environment:
|
|
||||||
# HG : the hg command to call
|
# HG : the hg command to call
|
||||||
|
|
||||||
|
verbose=-v
|
||||||
|
while getopts :q OPT; do
|
||||||
|
case "${OPT}" in
|
||||||
|
q) verbose=-q;;
|
||||||
|
\?) printf "unknown option '%s'\n" "${OPTARG}" >&2; exit 1;;
|
||||||
|
esac
|
||||||
|
done
|
||||||
|
shift $((OPTIND-1))
|
||||||
|
|
||||||
output="${1}"
|
output="${1}"
|
||||||
repo="${2}"
|
repo="${2}"
|
||||||
cset="${3}"
|
cset="${3}"
|
||||||
basename="${4}"
|
basename="${4}"
|
||||||
|
|
||||||
${HG} clone --noupdate --rev "${cset}" "${repo}" "${basename}"
|
${HG} clone ${verbose} --noupdate --rev "${cset}" "${repo}" "${basename}"
|
||||||
|
|
||||||
${HG} archive --repository "${basename}" --type tgz \
|
${HG} archive ${verbose} --repository "${basename}" --type tgz \
|
||||||
--prefix "${basename}" --rev "${cset}" \
|
--prefix "${basename}" --rev "${cset}" \
|
||||||
"${output}"
|
"${output}"
|
||||||
|
@ -4,13 +4,23 @@
|
|||||||
set -e
|
set -e
|
||||||
|
|
||||||
# Download helper for scp, to be called from the download wrapper script
|
# Download helper for scp, to be called from the download wrapper script
|
||||||
# Expected arguments:
|
#
|
||||||
# $1: output file
|
# Call it as:
|
||||||
# $2: URL
|
# .../scp [-q] OUT_FILE SRC_URL
|
||||||
# And this environment:
|
#
|
||||||
|
# Environment:
|
||||||
# SCP : the scp command to call
|
# SCP : the scp command to call
|
||||||
|
|
||||||
|
verbose=-v
|
||||||
|
while getopts :q OPT; do
|
||||||
|
case "${OPT}" in
|
||||||
|
q) verbose=-q;;
|
||||||
|
\?) printf "unknown option '%s'\n" "${OPTARG}" >&2; exit 1;;
|
||||||
|
esac
|
||||||
|
done
|
||||||
|
shift $((OPTIND-1))
|
||||||
|
|
||||||
output="${1}"
|
output="${1}"
|
||||||
url="${2}"
|
url="${2}"
|
||||||
|
|
||||||
${SCP} "${url}" "${output}"
|
${SCP} ${verbose} "${url}" "${output}"
|
||||||
|
@ -4,19 +4,27 @@
|
|||||||
set -e
|
set -e
|
||||||
|
|
||||||
# Download helper for svn, to be called from the download wrapper script
|
# Download helper for svn, to be called from the download wrapper script
|
||||||
# Expected arguments:
|
#
|
||||||
# $1: output file
|
# Call it as:
|
||||||
# $2: svn repo
|
# .../svn [-q] OUT_FILE REPO_URL REV BASNAME
|
||||||
# $3: svn revision
|
#
|
||||||
# $4: package's basename (eg. foobar-1.2.3)
|
# Environment:
|
||||||
# And this environment:
|
|
||||||
# SVN : the svn command to call
|
# SVN : the svn command to call
|
||||||
|
|
||||||
|
verbose=
|
||||||
|
while getopts :q OPT; do
|
||||||
|
case "${OPT}" in
|
||||||
|
q) verbose=-q;;
|
||||||
|
\?) printf "unknown option '%s'\n" "${OPTARG}" >&2; exit 1;;
|
||||||
|
esac
|
||||||
|
done
|
||||||
|
shift $((OPTIND-1))
|
||||||
|
|
||||||
output="${1}"
|
output="${1}"
|
||||||
repo="${2}"
|
repo="${2}"
|
||||||
rev="${3}"
|
rev="${3}"
|
||||||
basename="${4}"
|
basename="${4}"
|
||||||
|
|
||||||
${SVN} export "${repo}@${rev}" "${basename}"
|
${SVN} export ${verbose} "${repo}@${rev}" "${basename}"
|
||||||
|
|
||||||
tar czf "${output}" "${basename}"
|
tar czf "${output}" "${basename}"
|
||||||
|
@ -4,13 +4,23 @@
|
|||||||
set -e
|
set -e
|
||||||
|
|
||||||
# Download helper for wget, to be called from the download wrapper script
|
# Download helper for wget, to be called from the download wrapper script
|
||||||
# Expected arguments:
|
#
|
||||||
# $1: output file
|
# Call it as:
|
||||||
# $2: URL
|
# .../wget [-q] OUT_FILE URL
|
||||||
# And this environment:
|
#
|
||||||
|
# Environment:
|
||||||
# WGET : the wget command to call
|
# WGET : the wget command to call
|
||||||
|
|
||||||
|
verbose=-v
|
||||||
|
while getopts :q OPT; do
|
||||||
|
case "${OPT}" in
|
||||||
|
q) verbose=-q;;
|
||||||
|
\?) printf "unknown option '%s'\n" "${OPTARG}" >&2; exit 1;;
|
||||||
|
esac
|
||||||
|
done
|
||||||
|
shift $((OPTIND-1))
|
||||||
|
|
||||||
output="${1}"
|
output="${1}"
|
||||||
url="${2}"
|
url="${2}"
|
||||||
|
|
||||||
${WGET} -O "${output}" "${url}"
|
${WGET} ${verbose} -O "${output}" "${url}"
|
||||||
|
Loading…
Reference in New Issue
Block a user