44 lines
1.2 KiB
Bash
Executable File
44 lines
1.2 KiB
Bash
Executable File
#!/usr/bin/env bash
|
|
|
|
set -e
|
|
|
|
. "${0%/*}/helpers"
|
|
|
|
while getopts "n:o:" OPT; do
|
|
case "${OPT}" in
|
|
o) output="${OPTARG}";;
|
|
n) base_name="${OPTARG}";;
|
|
:) error "option '%s' expects a mandatory argument\n" "${OPTARG}";;
|
|
\?) error "unknown option '%s'\n" "${OPTARG}";;
|
|
esac
|
|
done
|
|
|
|
# Already vendored tarball, nothing to do
|
|
if tar tf "${output}" | grep -q "^[^/]*/VENDOR" ; then
|
|
exit 0
|
|
fi
|
|
|
|
post_process_unpack "${base_name}" "${output}"
|
|
|
|
# Do the Cargo vendoring
|
|
pushd "${base_name}" > /dev/null
|
|
|
|
# Create the local .cargo/config with vendor info
|
|
mkdir -p .cargo/
|
|
mkdir -p "${CARGO_HOME}"
|
|
flock "${CARGO_HOME}"/.br-lock \
|
|
cargo vendor \
|
|
--manifest-path ${BR_CARGO_MANIFEST_PATH-Cargo.toml} \
|
|
--locked VENDOR \
|
|
> .cargo/config
|
|
|
|
# "cargo vendor' outputs on stderr a message directing to add some data
|
|
# to the project's .cargo/config.toml, data that it outputs on stdout.
|
|
# Since we redirect stdout to .cargo/config.toml, the message on stderr
|
|
# gets confusing, so instruct the user that it's been handled.
|
|
printf '(note: .cargo/config.toml automatically updated by Buildroot)\n\n'
|
|
|
|
popd > /dev/null
|
|
|
|
post_process_repack "$(pwd)" "${base_name}" "${output}"
|