159 lines
4.7 KiB
Ruby
Raw Normal View History

2016-08-18 22:11:42 +03:00
# Caveats DSL. Each method should handle output, following the
# convention of at least one trailing blank line so that the user
# can distinguish separate caveats.
#
# ( The return value of the last method in the block is also sent
# to the output by the caller, but that feature is only for the
# convenience of Cask authors. )
2016-09-24 13:52:43 +02:00
module Hbc
class DSL
class Caveats < Base
def initialize(*args)
super(*args)
@built_in_caveats = {}
@custom_caveats = []
end
def self.caveat(name, &block)
define_method(name) do |*args|
key = [name, *args]
text = instance_exec(*args, &block)
@built_in_caveats[key] = text if text
:built_in_caveat
end
end
private_class_method :caveat
def to_s
(@custom_caveats + @built_in_caveats.values).join("\n")
end
# Override `puts` to collect caveats.
def puts(*args)
@custom_caveats += args
:built_in_caveat
end
def eval_caveats(&block)
result = instance_eval(&block)
return unless result
return if result == :built_in_caveat
@custom_caveats << result.to_s.sub(/\s*\Z/, "\n")
end
caveat :kext do
next if MacOS.version < :high_sierra
<<~EOS
To install and/or use #{@cask} you may need to enable their kernel extension in
System Preferences Security & Privacy General
For more information refer to vendor documentation or the Apple Technical Note:
#{Formatter.url("https://developer.apple.com/library/content/technotes/tn2459/_index.html")}
EOS
end
caveat :path_environment_variable do |path|
<<~EOS
2017-10-15 02:28:32 +02:00
To use #{@cask}, you may need to add the #{path} directory
to your PATH environment variable, eg (for bash shell):
2016-08-18 22:11:42 +03:00
2017-10-15 02:28:32 +02:00
export PATH=#{path}:"$PATH"
2016-09-24 13:52:43 +02:00
EOS
end
2016-08-18 22:11:42 +03:00
caveat :zsh_path_helper do |path|
<<~EOS
2017-10-15 02:28:32 +02:00
To use #{@cask}, zsh users may need to add the following line to their
~/.zprofile. (Among other effects, #{path} will be added to the
PATH environment variable):
2016-08-18 22:11:42 +03:00
2017-10-15 02:28:32 +02:00
eval `/usr/libexec/path_helper -s`
2016-09-24 13:52:43 +02:00
EOS
end
2016-08-18 22:11:42 +03:00
caveat :files_in_usr_local do
next unless HOMEBREW_PREFIX.to_s.downcase.start_with?("/usr/local")
<<~EOS
Cask #{@cask} installs files under /usr/local. The presence of such
2016-09-24 13:52:43 +02:00
files can cause warnings when running "brew doctor", which is considered
2018-09-03 20:12:29 +01:00
to be a bug in Homebrew Cask.
2016-09-24 13:52:43 +02:00
EOS
end
2016-08-18 22:11:42 +03:00
caveat :depends_on_java do |java_version = :any|
if java_version == :any
<<~EOS
2017-10-15 02:28:32 +02:00
#{@cask} requires Java. You can install the latest version with
2016-08-18 22:11:42 +03:00
2017-10-15 02:28:32 +02:00
brew cask install java
2016-09-24 13:52:43 +02:00
EOS
2018-03-07 08:20:05 +10:00
elsif java_version.include?("10") || java_version.include?("+")
<<~EOS
2017-10-15 02:28:32 +02:00
#{@cask} requires Java #{java_version}. You can install the latest version with
2016-08-18 22:11:42 +03:00
2017-10-15 02:28:32 +02:00
brew cask install java
2016-09-24 13:52:43 +02:00
EOS
else
<<~EOS
2017-10-15 02:28:32 +02:00
#{@cask} requires Java #{java_version}. You can install it with
2016-08-18 22:11:42 +03:00
2018-05-25 18:03:16 +02:00
brew cask install homebrew/cask-versions/java#{java_version}
2016-09-24 13:52:43 +02:00
EOS
end
end
2016-08-18 22:11:42 +03:00
caveat :logout do
<<~EOS
You must log out and log back in for the installation of #{@cask} to take effect.
2016-09-24 13:52:43 +02:00
EOS
end
2016-08-18 22:11:42 +03:00
caveat :reboot do
<<~EOS
2017-10-15 02:28:32 +02:00
You must reboot for the installation of #{@cask} to take effect.
2016-09-24 13:52:43 +02:00
EOS
end
2016-08-18 22:11:42 +03:00
caveat :discontinued do
<<~EOS
2017-10-15 02:28:32 +02:00
#{@cask} has been officially discontinued upstream.
It may stop working correctly (or at all) in recent versions of macOS.
2016-08-18 22:11:42 +03:00
2016-09-24 13:52:43 +02:00
EOS
end
2016-08-18 22:11:42 +03:00
2018-05-15 19:56:03 +10:00
caveat :license do |web_page|
<<~EOS
Installing #{@cask} means you have AGREED to the license at
#{web_page}
EOS
end
caveat :free_license do |web_page|
<<~EOS
2017-10-15 02:28:32 +02:00
The vendor offers a free license for #{@cask} at
#{web_page}
2016-09-24 13:52:43 +02:00
EOS
end
2016-08-18 22:11:42 +03:00
caveat :malware do |radar_number|
<<~EOS
2017-10-15 02:28:32 +02:00
#{@cask} has been reported to bundle malware. Like with any app, use at your own risk.
2016-08-18 22:11:42 +03:00
2017-10-15 02:28:32 +02:00
A report has been made to Apple about this app. Their certificate will hopefully be revoked.
See the public report at
#{Formatter.url("https://openradar.appspot.com/#{radar_number}")}
2016-08-18 22:11:42 +03:00
2017-10-15 02:28:32 +02:00
If this report is accurate, please duplicate it at
#{Formatter.url("https://bugreport.apple.com/")}
If this report is a mistake, please let us know by opening an issue at
2018-05-25 18:03:16 +02:00
#{Formatter.url("https://github.com/Homebrew/homebrew-cask/issues/new")}
2016-09-24 13:52:43 +02:00
EOS
end
end
2016-08-18 22:11:42 +03:00
end
end