2020-01-26 22:05:00 +00:00
|
|
|
#!/bin/sh
|
|
|
|
|
2020-05-25 19:41:05 +00:00
|
|
|
# spell-checker:ignore (utils) cksum coreutils dircolors hashsum mkdir mktemp printenv printf readlink realpath relpath rmdir shuf tsort unexpand
|
2020-01-26 22:05:00 +00:00
|
|
|
# spell-checker:ignore (jq) deps startswith
|
|
|
|
|
2020-05-31 03:06:31 +00:00
|
|
|
ME="${0}"
|
|
|
|
ME_dir="$(dirname -- "${ME}")"
|
|
|
|
ME_parent_dir="$(dirname -- "${ME_dir}")"
|
|
|
|
ME_parent_dir_abs="$(realpath -mP -- "${ME_parent_dir}")"
|
|
|
|
|
2020-01-26 22:05:00 +00:00
|
|
|
# refs: <https://forge.rust-lang.org/release/platform-support.html> , <https://docs.rs/platforms/0.2.1/platforms/platform/tier1/index.html>
|
|
|
|
|
|
|
|
# default ("Tier 1" cross-platform) utility list
|
|
|
|
default_utils="base32 base64 basename cat cksum comm cp cut date dircolors dirname echo env expand expr factor false fmt fold hashsum head join link ln ls mkdir mktemp more mv nl od paste printenv printf ptx pwd readlink realpath relpath rm rmdir seq shred shuf sleep sort split sum tac tail tee test tr true truncate tsort unexpand uniq wc yes"
|
|
|
|
|
2020-05-31 03:06:31 +00:00
|
|
|
project_main_dir="${ME_parent_dir_abs}"
|
|
|
|
# printf 'project_main_dir="%s"\n' "${project_main_dir}"
|
|
|
|
cd "${project_main_dir}"
|
|
|
|
|
2020-01-26 22:05:00 +00:00
|
|
|
# `jq` available?
|
|
|
|
unset JQ
|
|
|
|
jq --version 1>/dev/null 2>&1
|
|
|
|
if [ $? -eq 0 ]; then export JQ="jq"; fi
|
|
|
|
|
|
|
|
if [ -z "${JQ}" ]; then
|
|
|
|
echo 'WARN: missing `jq` (install with `sudo apt install jq`); falling back to default (only fully cross-platform) utility list' 1>&2
|
|
|
|
echo $default_utils
|
|
|
|
else
|
2020-05-25 19:41:05 +00:00
|
|
|
cargo metadata $* --format-version 1 | jq -r "[.resolve.nodes[] | { id: .id, deps: [.deps[] | { name:.name, pkg:.pkg }] }] | .[] | select(.id|startswith(\"coreutils\")) | [.deps[] | select((.name|startswith(\"uu_\")) or (.pkg|startswith(\"uu_\")))] | [.[].pkg | match(\"^\\\w+\";\"g\")] | [.[].string | sub(\"^uu_\"; \"\")] | sort | join(\" \")"
|
|
|
|
# cargo metadata $* --format-version 1 | jq -r "[.resolve.nodes[] | { id: .id, deps: [.deps[] | { name:.name, pkg:.pkg }] }] | .[] | select(.id|startswith(\"coreutils\")) | [.deps[] | select((.name|startswith(\"uu_\")) or (.pkg|startswith(\"uu_\")))] | [.[].pkg | match(\"^\\\w+\";\"g\")] | [.[].string] | sort | join(\" \")"
|
2020-01-26 22:05:00 +00:00
|
|
|
fi
|