summaryrefslogtreecommitdiff
path: root/support/download
diff options
context:
space:
mode:
authorYann E. MORIN <yann.morin.1998@free.fr>2014-08-03 19:53:38 +0200
committerThomas Petazzoni <thomas.petazzoni@free-electrons.com>2014-08-04 20:12:24 +0200
commit7e40a1103a919a8177f00ddca2b46b4439953511 (patch)
treeb03860e7b74db8ab639ea694d626133fc6c655da /support/download
parent389f50dfb68b5e87413b348b34e87d69ff875e82 (diff)
support/download: convert git to use the wrapper
This drastically simplifies the git helper, as it no longer has to deal with atomically saving the downloaded archive. Signed-off-by: "Yann E. MORIN" <yann.morin.1998@free.fr> Tested-by: Thomas De Schampheleire <thomas.de.schampheleire@gmail.com> (Tested by running 'make fmc-fsl-sdk-source') Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
Diffstat (limited to 'support/download')
-rwxr-xr-xsupport/download/git62
1 files changed, 20 insertions, 42 deletions
diff --git a/support/download/git b/support/download/git
index 116e5a903..6edaa90fe 100755
--- a/support/download/git
+++ b/support/download/git
@@ -1,60 +1,38 @@
#!/bin/bash
-# We want to catch any command failure, and exit immediately
+# We want to catch any unexpected failure, and exit immediately
set -e
-# Download helper for git
-# Call it with:
-# $1: git repo
-# $2: git cset
-# $3: package's basename (eg. foobar-1.2.3)
-# $4: output file
+# Download helper for git, to be called from the download wrapper script
+# Expected arguments:
+# $1: output file
+# $2: git repo
+# $3: git cset
+# $4: package's basename (eg. foobar-1.2.3)
# And this environment:
# GIT : the git command to call
-# BUILD_DIR: path to Buildroot's build dir
-repo="${1}"
-cset="${2}"
-basename="${3}"
-output="${4}"
+output="${1}"
+repo="${2}"
+cset="${3}"
+basename="${4}"
-repodir="${basename}.tmp-git-checkout"
-tmp_tar="$( mktemp "${BUILD_DIR}/.XXXXXX" )"
-tmp_output="$( mktemp "${output}.XXXXXX" )"
-
-# Play tic-tac-toe with temp files
-# - first, we download to a trashable location (the build-dir)
-# - then we create the uncomporessed tarball in tht same trashable location
-# - then we create a temporary compressed tarball in the final location, so
-# it is on the same filesystem as the final file
-# - finally, we atomically rename to the final file
-
-cd "${BUILD_DIR}"
-# Remove leftovers from a previous failed run
-rm -rf "${repodir}"
-
-git_done=0
+# Try to see if we can do a shallow clone, since it is faster
+# than a full clone.
if [ -n "$(${GIT} ls-remote "${repo}" "${cset}" 2>&1)" ]; then
printf "Doing shallow clone\n"
- if ${GIT} clone --depth 1 -b "${cset}" --bare "${repo}" "${repodir}"; then
+ if ${GIT} clone --depth 1 -b "${cset}" --bare "${repo}" "${basename}"; then
git_done=1
+ else
+ printf "Shallow clone failed, falling back to doing a full clone\n"
fi
fi
if [ ${git_done} -eq 0 ]; then
printf "Doing full clone\n"
- ${GIT} clone --bare "${repo}" "${repodir}"
+ ${GIT} clone --bare "${repo}" "${basename}"
fi
-ret=1
-pushd "${repodir}" >/dev/null
-if ${GIT} archive --prefix="${basename}/" -o "${tmp_tar}" \
- --format=tar "${cset}"; then
- if gzip -c "${tmp_tar}" >"${tmp_output}"; then
- mv "${tmp_output}" "${output}"
- ret=0
- fi
-fi
-popd >/dev/null
+GIT_DIR="${basename}" \
+${GIT} archive --prefix="${basename}/" -o "${output}" --format=tar "${cset}"
-rm -rf "${repodir}" "${tmp_tar}" "${tmp_output}"
-exit ${ret}
+gzip "${output}"