Merge pull request #4081 from MikeMcQuaid/deprecate_old_keg_only
formula_support: deprecate more keg_only reasons.
This commit is contained in:
commit
7b6fb39497
@ -2,15 +2,80 @@ require "formula_support"
|
||||
|
||||
class KegOnlyReason
|
||||
module Compat
|
||||
def valid?
|
||||
case @reason
|
||||
when :provided_by_osx
|
||||
odisabled "keg_only :provided_by_osx", "keg_only :provided_by_macos"
|
||||
when :shadowed_by_osx
|
||||
odisabled "keg_only :shadowed_by_osx", "keg_only :shadowed_by_macos"
|
||||
when :provided_pre_mountain_lion
|
||||
odeprecated "keg_only :provided_pre_mountain_lion"
|
||||
MacOS.version < :mountain_lion
|
||||
when :provided_pre_mavericks
|
||||
odeprecated "keg_only :provided_pre_mavericks"
|
||||
MacOS.version < :mavericks
|
||||
when :provided_pre_el_capitan
|
||||
odeprecated "keg_only :provided_pre_el_capitan"
|
||||
MacOS.version < :el_capitan
|
||||
when :provided_pre_high_sierra
|
||||
odeprecated "keg_only :provided_pre_high_sierra"
|
||||
MacOS.version < :high_sierra
|
||||
when :provided_until_xcode43
|
||||
odeprecated "keg_only :provided_until_xcode43"
|
||||
MacOS::Xcode.version < "4.3"
|
||||
when :provided_until_xcode5
|
||||
odeprecated "keg_only :provided_until_xcode5"
|
||||
MacOS::Xcode.version < "5.0"
|
||||
else
|
||||
super
|
||||
end
|
||||
end
|
||||
|
||||
def to_s
|
||||
case @reason
|
||||
when :provided_by_osx
|
||||
odisabled "keg_only :provided_by_osx", "keg_only :provided_by_macos"
|
||||
when :shadowed_by_osx
|
||||
odisabled "keg_only :shadowed_by_osx", "keg_only :shadowed_by_macos"
|
||||
end
|
||||
when :provided_pre_mountain_lion
|
||||
odeprecated "keg_only :provided_pre_mountain_lion"
|
||||
|
||||
<<~EOS
|
||||
macOS already provides this software in versions before Mountain Lion
|
||||
EOS
|
||||
when :provided_pre_mavericks
|
||||
odeprecated "keg_only :provided_pre_mavericks"
|
||||
|
||||
<<~EOS
|
||||
macOS already provides this software in versions before Mavericks
|
||||
EOS
|
||||
when :provided_pre_el_capitan
|
||||
odeprecated "keg_only :provided_pre_el_capitan"
|
||||
|
||||
<<~EOS
|
||||
macOS already provides this software in versions before El Capitan
|
||||
EOS
|
||||
when :provided_pre_high_sierra
|
||||
odeprecated "keg_only :provided_pre_high_sierra"
|
||||
|
||||
<<~EOS
|
||||
macOS already provides this software in versions before High Sierra
|
||||
EOS
|
||||
when :provided_until_xcode43
|
||||
odeprecated "keg_only :provided_until_xcode43"
|
||||
|
||||
<<~EOS
|
||||
Xcode provides this software prior to version 4.3
|
||||
EOS
|
||||
when :provided_until_xcode5
|
||||
odeprecated "keg_only :provided_until_xcode5"
|
||||
|
||||
<<~EOS
|
||||
Xcode provides this software prior to version 5
|
||||
EOS
|
||||
else
|
||||
super
|
||||
end.to_s.strip
|
||||
end
|
||||
end
|
||||
|
||||
|
||||
@ -12,57 +12,27 @@ class KegOnlyReason
|
||||
end
|
||||
|
||||
def valid?
|
||||
case @reason
|
||||
when :provided_pre_mountain_lion
|
||||
MacOS.version < :mountain_lion
|
||||
when :provided_pre_mavericks
|
||||
MacOS.version < :mavericks
|
||||
when :provided_pre_el_capitan
|
||||
MacOS.version < :el_capitan
|
||||
when :provided_pre_high_sierra
|
||||
MacOS.version < :high_sierra
|
||||
when :provided_until_xcode43
|
||||
MacOS::Xcode.version < "4.3"
|
||||
when :provided_until_xcode5
|
||||
MacOS::Xcode.version < "5.0"
|
||||
else
|
||||
true
|
||||
end
|
||||
end
|
||||
|
||||
def to_s
|
||||
return @explanation unless @explanation.empty?
|
||||
|
||||
case @reason
|
||||
when :versioned_formula then <<~EOS
|
||||
when :versioned_formula
|
||||
<<~EOS
|
||||
this is an alternate version of another formula
|
||||
EOS
|
||||
when :provided_by_macos then <<~EOS
|
||||
when :provided_by_macos
|
||||
<<~EOS
|
||||
macOS already provides this software and installing another version in
|
||||
parallel can cause all kinds of trouble
|
||||
EOS
|
||||
when :shadowed_by_macos then <<~EOS
|
||||
when :shadowed_by_macos
|
||||
<<~EOS
|
||||
macOS provides similar software and installing this software in
|
||||
parallel can cause all kinds of trouble
|
||||
EOS
|
||||
when :provided_pre_mountain_lion then <<~EOS
|
||||
macOS already provides this software in versions before Mountain Lion
|
||||
EOS
|
||||
when :provided_pre_mavericks then <<~EOS
|
||||
macOS already provides this software in versions before Mavericks
|
||||
EOS
|
||||
when :provided_pre_el_capitan then <<~EOS
|
||||
macOS already provides this software in versions before El Capitan
|
||||
EOS
|
||||
when :provided_pre_high_sierra then <<~EOS
|
||||
macOS already provides this software in versions before High Sierra
|
||||
EOS
|
||||
when :provided_until_xcode43 then <<~EOS
|
||||
Xcode provides this software prior to version 4.3
|
||||
EOS
|
||||
when :provided_until_xcode5 then <<~EOS
|
||||
Xcode provides this software prior to version 5
|
||||
EOS
|
||||
else
|
||||
@reason
|
||||
end.strip
|
||||
@ -87,10 +57,7 @@ class BottleDisableReason
|
||||
end
|
||||
|
||||
def to_s
|
||||
if unneeded?
|
||||
"This formula doesn't require compiling."
|
||||
else
|
||||
return "This formula doesn't require compiling." if unneeded?
|
||||
@reason
|
||||
end
|
||||
end
|
||||
end
|
||||
|
||||
Loading…
x
Reference in New Issue
Block a user