| # shellcheck source=helpers source-path=SCRIPTDIR |
| if [ "${BR_CARGO_MANIFEST_PATH}" ]; then |
| printf 'Setting BR_CARGO_MANIFEST_PATH is no longer supported; use post-process options.\n' >&2 |
| while getopts "n:o:m:" OPT; do |
| n) base_name="${OPTARG}";; |
| m) manifest="${OPTARG}";; |
| :) error "option '%s' expects a mandatory argument\n" "${OPTARG}";; |
| \?) error "unknown option '%s'\n" "${OPTARG}";; |
| # Already vendored tarball, nothing to do |
| if tar tf "${output}" | grep -q "^[^/]*/VENDOR" ; then |
| post_process_unpack "${base_name}" "${output}" |
| pushd "${base_name}" > /dev/null |
| # Create the local .cargo/config with vendor info |
| flock "${CARGO_HOME}"/.br-lock \ |
| --manifest-path "${manifest}" \ |
| # "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' |
| post_process_repack "$(pwd)" "${base_name}" "${output}" |