2014-02-22 07:51:33 -08:00
|
|
|
# Used to track formulae that cannot be installed at the same time
|
2013-06-09 13:44:59 -05:00
|
|
|
FormulaConflict = Struct.new(:name, :reason)
|
|
|
|
|
2012-02-04 18:45:08 -08:00
|
|
|
# Used to annotate formulae that duplicate OS X provided software
|
|
|
|
# or cause conflicts when linked in.
|
|
|
|
class KegOnlyReason
|
2014-08-08 01:34:45 -05:00
|
|
|
def initialize(reason, explanation)
|
2012-02-04 18:45:08 -08:00
|
|
|
@reason = reason
|
|
|
|
@explanation = explanation
|
|
|
|
end
|
|
|
|
|
2012-08-09 02:00:58 -05:00
|
|
|
def valid?
|
2014-04-01 21:35:22 -05:00
|
|
|
case @reason
|
|
|
|
when :provided_pre_mountain_lion
|
|
|
|
MacOS.version < :mountain_lion
|
2014-04-03 09:11:51 -05:00
|
|
|
when :provided_until_xcode43
|
|
|
|
MacOS::Xcode.version < "4.3"
|
|
|
|
when :provided_until_xcode5
|
|
|
|
MacOS::Xcode.version < "5.0"
|
2014-04-01 21:35:22 -05:00
|
|
|
else
|
|
|
|
true
|
|
|
|
end
|
2012-08-09 02:00:58 -05:00
|
|
|
end
|
2012-02-04 18:45:08 -08:00
|
|
|
|
2012-08-09 02:00:58 -05:00
|
|
|
def to_s
|
|
|
|
case @reason
|
2014-09-12 20:54:41 -05:00
|
|
|
when :provided_by_osx then <<-EOS
|
|
|
|
Mac OS X already provides this software and installing another version in
|
|
|
|
parallel can cause all kinds of trouble.
|
2012-08-09 02:00:58 -05:00
|
|
|
|
2014-09-12 20:54:41 -05:00
|
|
|
#{@explanation}
|
|
|
|
EOS
|
|
|
|
when :shadowed_by_osx then <<-EOS
|
|
|
|
Mac OS X provides similar software, and installing this software in
|
|
|
|
parallel can cause all kinds of trouble.
|
2014-08-27 12:53:41 -07:00
|
|
|
|
2014-09-12 20:54:41 -05:00
|
|
|
#{@explanation}
|
|
|
|
EOS
|
|
|
|
when :provided_pre_mountain_lion then <<-EOS
|
|
|
|
Mac OS X already provides this software in versions before Mountain Lion.
|
2012-08-09 02:00:58 -05:00
|
|
|
|
2014-09-12 20:54:41 -05:00
|
|
|
#{@explanation}
|
|
|
|
EOS
|
2014-04-03 09:11:51 -05:00
|
|
|
when :provided_until_xcode43
|
2014-08-08 01:34:45 -05:00
|
|
|
"Xcode provides this software prior to version 4.3.\n\n#{@explanation}"
|
2014-04-03 09:11:51 -05:00
|
|
|
when :provided_until_xcode5
|
2014-08-08 01:34:45 -05:00
|
|
|
"Xcode provides this software prior to version 5.\n\n#{@explanation}"
|
2012-02-04 18:45:08 -08:00
|
|
|
else
|
2012-08-09 02:00:58 -05:00
|
|
|
@reason
|
|
|
|
end.strip
|
2012-02-04 18:45:08 -08:00
|
|
|
end
|
|
|
|
end
|