summaryrefslogtreecommitdiffstats
path: root/support/download/cvs
blob: 9aeed79b2924f27da1d90a6a4051af8d2bd01b6b (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
#!/bin/bash

# We want to catch any command failure, and exit immediately
set -e

# Download helper for cvs
# Call it with:
#   $1: cvs repo
#   $2: cvs revision
#   $3: package's name (eg. foobar)
#   $4: package's basename (eg. foobar-1.2.3)
#   $5: output file
# And this environment:
#   CVS      : the cvs command to call
#   BUILD_DIR: path to Buildroot's build dir

repo="${1}"
rev="${2}"
rawname="${3}"
basename="${4}"
output="${5}"

repodir="${basename}.tmp-cvs-checkout"
tmp_output="$( mktemp "${output}.XXXXXX" )"

cd "${BUILD_DIR}"
# 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}
OpenPOWER on IntegriCloud