universal-ctags / homebrew-universal-ctags

Homebrew Tap for Universal Ctags on OSX
https://ctags.io
GNU General Public License v2.0
326 stars 19 forks source link

Remove python3 dependency #48

Closed wookayin closed 4 years ago

wookayin commented 4 years ago

I don't think it makes much sense to have python3 as a dependency (#43, #45). I want to keep the brew python version as I already have, but the current brew formula would always require me to update to new version whenever installing.

Do you think it would be possible to get rid of python3 or docutils dependency, allowing users to just use existing python installation? Or we should be able to optionally install it without python dependency.

wookayin commented 4 years ago

Workaround: If one already have docutils installed, we can ignore dependencies like:

brew install --HEAD universal-ctags/universal-ctags/universal-ctags --ignore-dependencies
KazuakiM commented 4 years ago

Hi @wookayin I update fomula changes :build to :recommended . So Add --without-docutils options. Can you do it again?

wookayin commented 4 years ago
brew install --HEAD --without-docutils universal-ctags/universal-ctags/universal-ctags

Yes, this works for me. Thank you for making it optional!