Skip to content
Snippets Groups Projects
Commit 4f549da1 authored by Dominyk Tiller's avatar Dominyk Tiller
Browse files

formula_support: add provided_pre_mavericks


Closes Homebrew/homebrew#42460.

Signed-off-by: default avatarDominyk Tiller <dominyktiller@gmail.com>
parent e1d736a0
No related branches found
No related tags found
No related merge requests found
......@@ -13,6 +13,8 @@ class KegOnlyReason
case @reason
when :provided_pre_mountain_lion
MacOS.version < :mountain_lion
when :provided_pre_mavericks
MacOS.version < :mavericks
when :provided_until_xcode43
MacOS::Xcode.version < "4.3"
when :provided_until_xcode5
......@@ -30,8 +32,11 @@ OS X already provides this software and installing another version in
parallel can cause all kinds of trouble.
EOS
when :shadowed_by_osx then <<-EOS
OS X provides similar software, and installing this software in
OS X provides similar software and installing this software in
parallel can cause all kinds of trouble.
EOS
when :provided_pre_mavericks then <<-EOS
OS X already provides this software in versions before Mavericks.
EOS
when :provided_pre_mountain_lion then <<-EOS
OS X already provides this software in versions before Mountain Lion.
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment