support/download: convert cvs to use the wrapper
This drastically simplifies the cvs 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> Reviewed-by: Thomas De Schampheleire <thomas.de.schampheleire@gmail.com> Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
This commit is contained in:
parent
84469226c1
commit
389f50dfb6
@ -129,9 +129,12 @@ endef
|
|||||||
|
|
||||||
define DOWNLOAD_CVS
|
define DOWNLOAD_CVS
|
||||||
test -e $(DL_DIR)/$($(PKG)_SOURCE) || \
|
test -e $(DL_DIR)/$($(PKG)_SOURCE) || \
|
||||||
$(EXTRA_ENV) support/download/cvs $(call stripurischeme,$(call qstrip,$($(PKG)_SITE))) \
|
$(EXTRA_ENV) support/download/wrapper cvs \
|
||||||
$($(PKG)_DL_VERSION) $($(PKG)_RAWNAME) \
|
$(DL_DIR)/$($(PKG)_SOURCE) \
|
||||||
$($(PKG)_BASE_NAME) $(DL_DIR)/$($(PKG)_SOURCE)
|
$(call stripurischeme,$(call qstrip,$($(PKG)_SITE))) \
|
||||||
|
$($(PKG)_DL_VERSION) \
|
||||||
|
$($(PKG)_RAWNAME) \
|
||||||
|
$($(PKG)_BASE_NAME)
|
||||||
endef
|
endef
|
||||||
|
|
||||||
# Not all CVS servers support ls/rls, use login to see if we can connect
|
# Not all CVS servers support ls/rls, use login to see if we can connect
|
||||||
|
@ -1,47 +1,25 @@
|
|||||||
#!/bin/bash
|
#!/bin/bash
|
||||||
|
|
||||||
# We want to catch any command failure, and exit immediately
|
# We want to catch any unexpected failure, and exit immediately
|
||||||
set -e
|
set -e
|
||||||
|
|
||||||
# Download helper for cvs
|
# Download helper for cvs, to be called from the download wrapper script
|
||||||
# Call it with:
|
# Expected arguments:
|
||||||
# $1: cvs repo
|
# $1: output file
|
||||||
# $2: cvs revision
|
# $2: cvs repo
|
||||||
# $3: package's name (eg. foobar)
|
# $3: cvs revision
|
||||||
# $4: package's basename (eg. foobar-1.2.3)
|
# $4: package's name (eg. foobar)
|
||||||
# $5: output file
|
# $5: package's basename (eg. foobar-1.2.3)
|
||||||
# And this environment:
|
# And this environment:
|
||||||
# CVS : the cvs command to call
|
# CVS : the cvs command to call
|
||||||
# BUILD_DIR: path to Buildroot's build dir
|
|
||||||
|
|
||||||
repo="${1}"
|
output="${1}"
|
||||||
rev="${2}"
|
repo="${2}"
|
||||||
rawname="${3}"
|
rev="${3}"
|
||||||
basename="${4}"
|
rawname="${4}"
|
||||||
output="${5}"
|
basename="${5}"
|
||||||
|
|
||||||
repodir="${basename}.tmp-cvs-checkout"
|
${CVS} -z3 -d":pserver:anonymous@${repo}" \
|
||||||
tmp_output="$( mktemp "${output}.XXXXXX" )"
|
co -d "${basename}" -r ":${rev}" -P "${rawname}"
|
||||||
|
|
||||||
cd "${BUILD_DIR}"
|
tar czf "${output}" "${basename}"
|
||||||
# Remove leftovers from a previous failed run
|
|
||||||
rm -rf "${repodir}"
|
|
||||||
|
|
||||||
# Play tic-tac-toe with temp files
|
|
||||||
# - first, we download to a trashable location (the build-dir)
|
|
||||||
# - then we create a temporary tarball in the final location, so it is
|
|
||||||
# on the same filesystem as the final file
|
|
||||||
# - finally, we atomically rename to the final file
|
|
||||||
|
|
||||||
ret=1
|
|
||||||
if ${CVS} -z3 -d":pserver:anonymous@${repo}" \
|
|
||||||
co -d "${repodir}" -r ":${rev}" -P "${rawname}"; then
|
|
||||||
if tar czf "${tmp_output}" "${repodir}"; then
|
|
||||||
mv "${tmp_output}" "${output}"
|
|
||||||
ret=0
|
|
||||||
fi
|
|
||||||
fi
|
|
||||||
|
|
||||||
# Cleanup
|
|
||||||
rm -rf "${repodir}" "${tmp_output}"
|
|
||||||
exit ${ret}
|
|
||||||
|
Loading…
Reference in New Issue
Block a user