Merge pull request #12085 from danielnachun/macos_enable_texlive

missing_formula.rb: don't disable texlive
This commit is contained in:
Daniel Nachun 2021-09-18 15:20:38 -07:00 committed by GitHub
commit bfd605096d
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 0 additions and 14 deletions

View File

@ -18,19 +18,6 @@ module Homebrew
<<~EOS <<~EOS
Xcode can be installed from the App Store. Xcode can be installed from the App Store.
EOS EOS
when "tex", "tex-live", "texlive", "mactex", "latex"
<<~EOS
There are three versions of MacTeX.
Full installation:
brew install --cask mactex
Full installation without bundled applications:
brew install --cask mactex-no-gui
Minimal installation:
brew install --cask basictex
EOS
else else
generic_disallowed_reason(name) generic_disallowed_reason(name)
end end

View File

@ -18,7 +18,6 @@ describe Homebrew::MissingFormula do
end end
it { is_expected.to disallow("gem") } it { is_expected.to disallow("gem") }
it("disallows LaTeX", :needs_macos) { is_expected.to disallow("latex") }
it { is_expected.to disallow("pip") } it { is_expected.to disallow("pip") }
it { is_expected.to disallow("pil") } it { is_expected.to disallow("pil") }
it { is_expected.to disallow("macruby") } it { is_expected.to disallow("macruby") }