Commit 84469226 authored by Yann E. MORIN's avatar Yann E. MORIN Committed by Thomas Petazzoni
Browse files

support/download: convert localfiles to use the wrapper



This drastically simplifies the localfiles helper, as it no longer has
to deal with atomically saving the downloaded archive.

Signed-off-by: default avatar"Yann E. MORIN" <yann.morin.1998@free.fr>
Tested-by: default avatarThomas De Schampheleire <thomas.de.schampheleire@gmail.com>
(Tested by setting BUSYBOX_SITE = file:///tmp

 and running 'make busybox-source')
Signed-off-by: default avatarThomas Petazzoni <thomas.petazzoni@free-electrons.com>
parent c48d45e3
Loading
Loading
Loading
Loading
+3 −2
Original line number Diff line number Diff line
@@ -209,8 +209,9 @@ endef

define DOWNLOAD_LOCALFILES
	test -e $(DL_DIR)/$(2) || \
	$(EXTRA_ENV) support/download/cp $(call stripurischeme,$(call qstrip,$(1))) \
					 $(DL_DIR)/$(2) && \
	$(EXTRA_ENV) support/download/wrapper cp \
		$(DL_DIR)/$(2) \
		$(call stripurischeme,$(call qstrip,$(1))) && \
	$(call VERIFY_HASH,$(PKGDIR)/$($(PKG)_NAME).hash,$(DL_DIR)/$(2))
endef

+8 −18
Original line number Diff line number Diff line
#!/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 cp
# Call it with:
#   $1: source file
#   $2: output file
# Download helper for cp, to be called from the download wrapper script
# Expected arguments:
#   $1: output file
#   $2: source file
# And this environment:
#   LOCALFILES: the cp command to call

source="${1}"
output="${2}"
output="${1}"
source="${2}"

tmp_output="$( mktemp "${output}.XXXXXX" )"

ret=1
if ${LOCALFILES} "${source}" "${tmp_output}"; then
    mv "${tmp_output}" "${output}"
    ret=0
fi

# Cleanup
rm -f "${tmp_output}"
exit ${ret}
${LOCALFILES} "${source}" "${output}"