Removed dev-libs/libportal, dev-util/nvidia-cuda-toolkit and media-fonts/nerdfonts to favor better maintained overlays (guru, bentoo)

This commit is contained in:
saundersp
2025-02-22 13:04:03 +01:00
parent e2eec18f33
commit c3a9b0812a
13 changed files with 0 additions and 808 deletions

View File

@ -1,28 +0,0 @@
#!/bin/bash
SUPPORT_GCC_VERSIONS_BY_CUDA="CUDA_SUPPORTED_GCC"
_print_help() {
cat <<- EOF
Usage:
$(basename "$0") [options]
-s | --supported Returns by current CUDA supported gcc versions
-h | --help Shows this help
EOF
}
case ${1} in
-s|--supported)
echo "${SUPPORT_GCC_VERSIONS_BY_CUDA}"
exit 0
;;
-h|--help)
_print_help
exit 255
;;
*)
_print_help
exit 1
;;
esac