Where to report missing dependency on formula? #4939
Replies: 3 comments 16 replies
-
Here is where dependencies are listed, are you interested in making a PR? |
Beta Was this translation helpful? Give feedback.
-
Adding the dependency could have undesired side effects. The comments in that file say
so maybe they actually should be removed? Or that comment should be removed and the dependency added. Or the script refactored upstream to not have that dependency (https://gitlab.kitware.com/cmake/cmake/-/issues/25461). Or... some other solution that might come up in an Issue about this situation, if I could figure out where to put it. |
Beta Was this translation helpful? Give feedback.
-
That would make it difficult for macOS users who want to use latest One option is to move completions to It isn't unusual for completions to assume installation of some for COMPLETION in "${HOMEBREW_PREFIX}/etc/bash_completion.d/"*
do
[[ -r "${COMPLETION}" ]] && source "${COMPLETION}"
done and instead use the corresponding formula. |
Beta Was this translation helpful? Give feedback.
-
Output of
brew config
Output of
brew doctor
Description of issue
After installing
cmake
I encountered multiple failures with the included bash completions, including errors during shell loading. I have reported those upstream, in hopes of getting them fixed there. However, in the mean time, thecmake
formula has a dependency onbash-completion
to provide some helper functions for its bash completions.I've read the instructions on the Issue creation pages for Homebrew/brew and Homebrew/homebrew-core and can't figure out the right category/template to use to report this, so I'm here looking for guidance on where and how to report this problem.
Beta Was this translation helpful? Give feedback.
All reactions