Class: Cask::Installer Private
- Inherits:
-
Object
- Object
- Cask::Installer
- Extended by:
- Predicable, T::Sig
- Includes:
- Staged
- Defined in:
- brew/Library/Homebrew/cask/installer.rb
Overview
This class is part of a private API. You should avoid using this class if possible, as it may be removed or be changed in the future.
Installer for a Cask.
Constant Summary
Constants included from Staged
Class Method Summary collapse
-
.caveats(cask) ⇒ Object
private
Instance Method Summary collapse
-
#arch_dependencies ⇒ Object
private
-
#backup ⇒ Object
private
-
#backup_metadata_path ⇒ Object
private
-
#backup_path ⇒ Object
private
-
#cask_and_formula_dependencies ⇒ Object
private
-
#caveats ⇒ Object
private
-
#check_conflicts ⇒ Object
private
-
#collect_cask_and_formula_dependencies ⇒ Object
private
-
#download ⇒ Pathname
private
-
#downloader ⇒ Download
private
-
#extract_primary_container(to: @cask.staged_path) ⇒ Object
private
-
#fetch ⇒ Object
private
-
#finalize_upgrade ⇒ Object
private
-
#gain_permissions_remove(path) ⇒ Object
private
-
#graph_dependencies(cask_or_formula, acc = TopologicalHash.new) ⇒ Object
private
-
#initialize(cask, command: SystemCommand, force: false, skip_cask_deps: false, binaries: true, verbose: false, require_sha: false, upgrade: false, installed_as_dependency: false, quarantine: true, verify_download_integrity: true) ⇒ Installer
constructor
private
A new instance of Installer.
-
#install ⇒ Object
private
-
#install_artifacts ⇒ Object
private
-
#macos_dependencies ⇒ Object
private
-
#missing_cask_and_formula_dependencies ⇒ Object
private
-
#primary_container ⇒ Object
private
-
#purge_backed_up_versioned_files ⇒ Object
private
-
#purge_caskroom_path ⇒ Object
private
-
#purge_versioned_files ⇒ Object
private
-
#reinstall ⇒ Object
private
-
#remove_config_file ⇒ Object
private
-
#restore_backup ⇒ Object
private
-
#revert_upgrade ⇒ Object
private
-
#satisfy_dependencies ⇒ Object
private
-
#save_caskfile ⇒ Object
private
-
#save_config_file ⇒ Object
private
-
#stage ⇒ Object
private
-
#start_upgrade ⇒ Object
private
-
#summary ⇒ String
private
-
#uninstall ⇒ Object
private
-
#uninstall_artifacts(clear: false) ⇒ Object
private
-
#uninstall_existing_cask ⇒ Object
private
-
#verify_has_sha ⇒ Object
private
-
#x11_dependencies ⇒ Object
private
-
#zap ⇒ Object
private
Methods included from Predicable
Methods included from Staged
#set_ownership, #set_permissions
Constructor Details
#initialize(cask, command: SystemCommand, force: false, skip_cask_deps: false, binaries: true, verbose: false, require_sha: false, upgrade: false, installed_as_dependency: false, quarantine: true, verify_download_integrity: true) ⇒ Installer
This method is part of a private API. You should avoid using this method if possible, as it may be removed or be changed in the future.
Returns a new instance of Installer.
30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 |
# File 'brew/Library/Homebrew/cask/installer.rb', line 30 def initialize(cask, command: SystemCommand, force: false, skip_cask_deps: false, binaries: true, verbose: false, require_sha: false, upgrade: false, installed_as_dependency: false, quarantine: true, verify_download_integrity: true) @cask = cask @command = command @force = force @skip_cask_deps = skip_cask_deps @binaries = binaries @verbose = verbose @require_sha = require_sha @reinstall = false @upgrade = upgrade @installed_as_dependency = installed_as_dependency @quarantine = quarantine @verify_download_integrity = verify_download_integrity end |
Class Method Details
.caveats(cask) ⇒ Object
This method is part of a private API. You should avoid using this method if possible, as it may be removed or be changed in the future.
53 54 55 56 57 58 59 60 61 62 63 |
# File 'brew/Library/Homebrew/cask/installer.rb', line 53 def self.caveats(cask) odebug "Printing caveats" caveats = cask.caveats return if caveats.empty? <<~EOS #{ohai_title "Caveats"} #{caveats} EOS end |
Instance Method Details
#arch_dependencies ⇒ Object
This method is part of a private API. You should avoid using this method if possible, as it may be removed or be changed in the future.
271 272 273 274 275 276 277 278 279 280 281 282 283 284 |
# File 'brew/Library/Homebrew/cask/installer.rb', line 271 def arch_dependencies return if @cask.depends_on.arch.nil? @current_arch ||= { type: Hardware::CPU.type, bits: Hardware::CPU.bits } return if @cask.depends_on.arch.any? do |arch| arch[:type] == @current_arch[:type] && Array(arch[:bits]).include?(@current_arch[:bits]) end raise CaskError, "Cask #{@cask} depends on hardware architecture being one of " \ "[#{@cask.depends_on.arch.map(&:to_s).join(", ")}], " \ "but you are running #{@current_arch}" end |
#backup ⇒ Object
This method is part of a private API. You should avoid using this method if possible, as it may be removed or be changed in the future.
432 433 434 435 |
# File 'brew/Library/Homebrew/cask/installer.rb', line 432 def backup @cask.staged_path.rename backup_path @cask..rename end |
#backup_metadata_path ⇒ Object
This method is part of a private API. You should avoid using this method if possible, as it may be removed or be changed in the future.
505 506 507 508 509 |
# File 'brew/Library/Homebrew/cask/installer.rb', line 505 def return if @cask..nil? Pathname("#{@cask.}.upgrading") end |
#backup_path ⇒ Object
This method is part of a private API. You should avoid using this method if possible, as it may be removed or be changed in the future.
499 500 501 502 503 |
# File 'brew/Library/Homebrew/cask/installer.rb', line 499 def backup_path return if @cask.staged_path.nil? Pathname("#{@cask.staged_path}.upgrading") end |
#cask_and_formula_dependencies ⇒ Object
This method is part of a private API. You should avoid using this method if possible, as it may be removed or be changed in the future.
349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 |
# File 'brew/Library/Homebrew/cask/installer.rb', line 349 def cask_and_formula_dependencies return if installed_as_dependency? formulae_and_casks = collect_cask_and_formula_dependencies return if formulae_and_casks.empty? missing_formulae_and_casks = missing_cask_and_formula_dependencies if missing_formulae_and_casks.empty? puts "All Formula dependencies satisfied." return end ohai "Installing dependencies: #{missing_formulae_and_casks.map(&:to_s).join(", ")}" missing_formulae_and_casks.each do |cask_or_formula| if cask_or_formula.is_a?(Cask) if skip_cask_deps? opoo "`--skip-cask-deps` is set; skipping installation of #{@cask}." next end Installer.new( cask_or_formula, binaries: binaries?, verbose: verbose?, installed_as_dependency: true, force: false, ).install else fi = FormulaInstaller.new( cask_or_formula, **{ show_header: true, installed_as_dependency: true, installed_on_request: false, verbose: verbose?, }.compact, ) fi.prelude fi.fetch fi.install fi.finish end end end |
#caveats ⇒ Object
This method is part of a private API. You should avoid using this method if possible, as it may be removed or be changed in the future.
396 397 398 |
# File 'brew/Library/Homebrew/cask/installer.rb', line 396 def caveats self.class.caveats(@cask) end |
#check_conflicts ⇒ Object
This method is part of a private API. You should avoid using this method if possible, as it may be removed or be changed in the future.
119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 |
# File 'brew/Library/Homebrew/cask/installer.rb', line 119 def check_conflicts return unless @cask.conflicts_with @cask.conflicts_with[:cask].each do |conflicting_cask| if (match = conflicting_cask.match(HOMEBREW_TAP_CASK_REGEX)) conflicting_cask_tap = Tap.fetch(match[1], match[2]) next unless conflicting_cask_tap.installed? end conflicting_cask = CaskLoader.load(conflicting_cask) raise CaskConflictError.new(@cask, conflicting_cask) if conflicting_cask.installed? rescue CaskUnavailableError next # Ignore conflicting Casks that do not exist. end end |
#collect_cask_and_formula_dependencies ⇒ Object
This method is part of a private API. You should avoid using this method if possible, as it may be removed or be changed in the future.
318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 |
# File 'brew/Library/Homebrew/cask/installer.rb', line 318 def collect_cask_and_formula_dependencies return @cask_and_formula_dependencies if @cask_and_formula_dependencies graph = graph_dependencies(@cask) raise CaskSelfReferencingDependencyError, cask.token if graph[@cask].include?(@cask) primary_container.dependencies.each do |dep| graph_dependencies(dep, graph) end begin @cask_and_formula_dependencies = graph.tsort - [@cask] rescue TSort::Cyclic strongly_connected_components = graph.strongly_connected_components.sort_by(&:count) cyclic_dependencies = strongly_connected_components.last - [@cask] raise CaskCyclicDependencyError.new(@cask.token, cyclic_dependencies.to_sentence) end end |
#download ⇒ Pathname
This method is part of a private API. You should avoid using this method if possible, as it may be removed or be changed in the future.
166 167 168 |
# File 'brew/Library/Homebrew/cask/installer.rb', line 166 def download @download ||= downloader.fetch(verify_download_integrity: @verify_download_integrity) end |
#downloader ⇒ Download
This method is part of a private API. You should avoid using this method if possible, as it may be removed or be changed in the future.
161 162 163 |
# File 'brew/Library/Homebrew/cask/installer.rb', line 161 def downloader @downloader ||= Download.new(@cask, quarantine: quarantine?) end |
#extract_primary_container(to: @cask.staged_path) ⇒ Object
This method is part of a private API. You should avoid using this method if possible, as it may be removed or be changed in the future.
187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 |
# File 'brew/Library/Homebrew/cask/installer.rb', line 187 def extract_primary_container(to: @cask.staged_path) odebug "Extracting primary container" odebug "Using container class #{primary_container.class} for #{primary_container.path}" basename = downloader.basename if nested_container = @cask.container&.nested Dir.mktmpdir do |tmpdir| tmpdir = Pathname(tmpdir) primary_container.extract(to: tmpdir, basename: basename, verbose: verbose?) FileUtils.chmod_R "+rw", tmpdir/nested_container, force: true, verbose: verbose? UnpackStrategy.detect(tmpdir/nested_container, merge_xattrs: true) .extract_nestedly(to: to, verbose: verbose?) end else primary_container.extract_nestedly(to: to, basename: basename, verbose: verbose?) end return unless quarantine? return unless Quarantine.available? Quarantine.propagate(from: primary_container.path, to: to) end |
#fetch ⇒ Object
This method is part of a private API. You should avoid using this method if possible, as it may be removed or be changed in the future.
65 66 67 68 69 70 71 72 |
# File 'brew/Library/Homebrew/cask/installer.rb', line 65 def fetch odebug "Cask::Installer#fetch" verify_has_sha if require_sha? && !force? satisfy_dependencies download end |
#finalize_upgrade ⇒ Object
This method is part of a private API. You should avoid using this method if possible, as it may be removed or be changed in the future.
453 454 455 456 457 458 459 |
# File 'brew/Library/Homebrew/cask/installer.rb', line 453 def finalize_upgrade ohai "Purging files for version #{@cask.version} of Cask #{@cask}" purge_backed_up_versioned_files puts summary end |
#gain_permissions_remove(path) ⇒ Object
This method is part of a private API. You should avoid using this method if possible, as it may be removed or be changed in the future.
511 512 513 |
# File 'brew/Library/Homebrew/cask/installer.rb', line 511 def (path) Utils.(path, command: @command) end |
#graph_dependencies(cask_or_formula, acc = TopologicalHash.new) ⇒ Object
This method is part of a private API. You should avoid using this method if possible, as it may be removed or be changed in the future.
291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 |
# File 'brew/Library/Homebrew/cask/installer.rb', line 291 def graph_dependencies(cask_or_formula, acc = TopologicalHash.new) return acc if acc.key?(cask_or_formula) if cask_or_formula.is_a?(Cask) formula_deps = cask_or_formula.depends_on.formula.map { |f| Formula[f] } cask_deps = cask_or_formula.depends_on.cask.map { |c| CaskLoader.load(c, config: nil) } else formula_deps = cask_or_formula.deps.reject(&:build?).map(&:to_formula) cask_deps = cask_or_formula.requirements.map(&:cask).compact .map { |c| CaskLoader.load(c, config: nil) } end acc[cask_or_formula] ||= [] acc[cask_or_formula] += formula_deps acc[cask_or_formula] += cask_deps formula_deps.each do |f| graph_dependencies(f, acc) end cask_deps.each do |c| graph_dependencies(c, acc) end acc end |
#install ⇒ Object
This method is part of a private API. You should avoid using this method if possible, as it may be removed or be changed in the future.
86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 |
# File 'brew/Library/Homebrew/cask/installer.rb', line 86 def install odebug "Cask::Installer#install" old_config = @cask.config raise CaskAlreadyInstalledError, @cask if @cask.installed? && !force? && !reinstall? && !upgrade? check_conflicts print caveats fetch uninstall_existing_cask if reinstall? backup if force? && @cask.staged_path.exist? && @cask..exist? oh1 "Installing Cask #{Formatter.identifier(@cask)}" opoo "macOS's Gatekeeper has been disabled for this Cask" unless quarantine? stage @cask.config = @cask.default_config.merge(old_config) install_artifacts ::Utils::Analytics.report_event("cask_install", @cask.token) unless @cask.tap&.private? purge_backed_up_versioned_files puts summary rescue restore_backup raise end |
#install_artifacts ⇒ Object
This method is part of a private API. You should avoid using this method if possible, as it may be removed or be changed in the future.
214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 |
# File 'brew/Library/Homebrew/cask/installer.rb', line 214 def install_artifacts already_installed_artifacts = [] odebug "Installing artifacts" artifacts = @cask.artifacts odebug "#{artifacts.length} artifact/s defined", artifacts artifacts.each do |artifact| next unless artifact.respond_to?(:install_phase) odebug "Installing artifact of class #{artifact.class}" next if artifact.is_a?(Artifact::Binary) && !binaries? artifact.install_phase(command: @command, verbose: verbose?, force: force?) already_installed_artifacts.unshift(artifact) end save_config_file rescue => e begin already_installed_artifacts.each do |artifact| if artifact.respond_to?(:uninstall_phase) odebug "Reverting installation of artifact of class #{artifact.class}" artifact.uninstall_phase(command: @command, verbose: verbose?, force: force?) end next unless artifact.respond_to?(:post_uninstall_phase) odebug "Reverting installation of artifact of class #{artifact.class}" artifact.post_uninstall_phase(command: @command, verbose: verbose?, force: force?) end ensure purge_versioned_files raise e end end |
#macos_dependencies ⇒ Object
This method is part of a private API. You should avoid using this method if possible, as it may be removed or be changed in the future.
264 265 266 267 268 269 |
# File 'brew/Library/Homebrew/cask/installer.rb', line 264 def macos_dependencies return unless @cask.depends_on.macos return if @cask.depends_on.macos.satisfied? raise CaskError, @cask.depends_on.macos.(type: :cask) end |
#missing_cask_and_formula_dependencies ⇒ Object
This method is part of a private API. You should avoid using this method if possible, as it may be removed or be changed in the future.
338 339 340 341 342 343 344 345 346 347 |
# File 'brew/Library/Homebrew/cask/installer.rb', line 338 def missing_cask_and_formula_dependencies collect_cask_and_formula_dependencies.reject do |cask_or_formula| installed = if cask_or_formula.respond_to?(:any_version_installed?) cask_or_formula.any_version_installed? else cask_or_formula.try(:installed?) end installed && (cask_or_formula.respond_to?(:optlinked?) ? cask_or_formula.optlinked? : true) end end |
#primary_container ⇒ Object
This method is part of a private API. You should avoid using this method if possible, as it may be removed or be changed in the future.
180 181 182 183 184 185 |
# File 'brew/Library/Homebrew/cask/installer.rb', line 180 def primary_container @primary_container ||= begin downloaded_path = download UnpackStrategy.detect(downloaded_path, type: @cask.container&.type, merge_xattrs: true) end end |
#purge_backed_up_versioned_files ⇒ Object
This method is part of a private API. You should avoid using this method if possible, as it may be removed or be changed in the future.
515 516 517 518 519 520 521 522 523 524 525 526 |
# File 'brew/Library/Homebrew/cask/installer.rb', line 515 def purge_backed_up_versioned_files # versioned staged distribution (backup_path) if backup_path&.exist? # Homebrew Cask metadata return unless .directory? .children.each do |subdir| (subdir) end .rmdir_if_possible end |
#purge_caskroom_path ⇒ Object
This method is part of a private API. You should avoid using this method if possible, as it may be removed or be changed in the future.
548 549 550 551 |
# File 'brew/Library/Homebrew/cask/installer.rb', line 548 def purge_caskroom_path odebug "Purging all staged versions of Cask #{@cask}" (@cask.caskroom_path) end |
#purge_versioned_files ⇒ Object
This method is part of a private API. You should avoid using this method if possible, as it may be removed or be changed in the future.
528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 |
# File 'brew/Library/Homebrew/cask/installer.rb', line 528 def purge_versioned_files ohai "Purging files for version #{@cask.version} of Cask #{@cask}" # versioned staged distribution (@cask.staged_path) if @cask.staged_path&.exist? # Homebrew Cask metadata if @cask..directory? @cask..children.each do |subdir| (subdir) end @cask..rmdir_if_possible end @cask..rmdir_if_possible unless upgrade? # toplevel staged distribution @cask.caskroom_path.rmdir_if_possible unless upgrade? end |
#reinstall ⇒ Object
This method is part of a private API. You should avoid using this method if possible, as it may be removed or be changed in the future.
135 136 137 138 139 |
# File 'brew/Library/Homebrew/cask/installer.rb', line 135 def reinstall odebug "Cask::Installer#reinstall" @reinstall = true install end |
#remove_config_file ⇒ Object
This method is part of a private API. You should avoid using this method if possible, as it may be removed or be changed in the future.
422 423 424 425 |
# File 'brew/Library/Homebrew/cask/installer.rb', line 422 def remove_config_file FileUtils.rm_f @cask.config_path @cask.config_path.parent.rmdir_if_possible end |
#restore_backup ⇒ Object
This method is part of a private API. You should avoid using this method if possible, as it may be removed or be changed in the future.
437 438 439 440 441 442 443 444 445 |
# File 'brew/Library/Homebrew/cask/installer.rb', line 437 def restore_backup return if !backup_path.directory? || !.directory? Pathname.new(@cask.staged_path).rmtree if @cask.staged_path.exist? Pathname.new(@cask.).rmtree if @cask..exist? backup_path.rename @cask.staged_path .rename @cask. end |
#revert_upgrade ⇒ Object
This method is part of a private API. You should avoid using this method if possible, as it may be removed or be changed in the future.
447 448 449 450 451 |
# File 'brew/Library/Homebrew/cask/installer.rb', line 447 def revert_upgrade opoo "Reverting upgrade for Cask #{@cask}" restore_backup install_artifacts end |
#satisfy_dependencies ⇒ Object
This method is part of a private API. You should avoid using this method if possible, as it may be removed or be changed in the future.
255 256 257 258 259 260 261 262 |
# File 'brew/Library/Homebrew/cask/installer.rb', line 255 def satisfy_dependencies return unless @cask.depends_on macos_dependencies arch_dependencies x11_dependencies cask_and_formula_dependencies end |
#save_caskfile ⇒ Object
This method is part of a private API. You should avoid using this method if possible, as it may be removed or be changed in the future.
400 401 402 403 404 405 406 407 408 |
# File 'brew/Library/Homebrew/cask/installer.rb', line 400 def save_caskfile old_savedir = @cask. return unless @cask.sourcefile_path savedir = @cask.("Casks", timestamp: :now, create: true) FileUtils.copy @cask.sourcefile_path, savedir old_savedir&.rmtree end |
#save_config_file ⇒ Object
This method is part of a private API. You should avoid using this method if possible, as it may be removed or be changed in the future.
410 411 412 |
# File 'brew/Library/Homebrew/cask/installer.rb', line 410 def save_config_file @cask.config_path.atomic_write(@cask.config.to_json) end |
#stage ⇒ Object
This method is part of a private API. You should avoid using this method if possible, as it may be removed or be changed in the future.
74 75 76 77 78 79 80 81 82 83 84 |
# File 'brew/Library/Homebrew/cask/installer.rb', line 74 def stage odebug "Cask::Installer#stage" Caskroom.ensure_caskroom_exists extract_primary_container save_caskfile rescue => e purge_versioned_files raise e end |
#start_upgrade ⇒ Object
This method is part of a private API. You should avoid using this method if possible, as it may be removed or be changed in the future.
427 428 429 430 |
# File 'brew/Library/Homebrew/cask/installer.rb', line 427 def start_upgrade uninstall_artifacts backup end |
#summary ⇒ String
This method is part of a private API. You should avoid using this method if possible, as it may be removed or be changed in the future.
153 154 155 156 157 158 |
# File 'brew/Library/Homebrew/cask/installer.rb', line 153 def summary s = +"" s << "#{Homebrew::EnvConfig.install_badge} " unless Homebrew::EnvConfig.no_emoji? s << "#{@cask} was successfully #{upgrade? ? "upgraded" : "installed"}!" s.freeze end |
#uninstall ⇒ Object
This method is part of a private API. You should avoid using this method if possible, as it may be removed or be changed in the future.
414 415 416 417 418 419 420 |
# File 'brew/Library/Homebrew/cask/installer.rb', line 414 def uninstall oh1 "Uninstalling Cask #{Formatter.identifier(@cask)}" uninstall_artifacts(clear: true) remove_config_file if !reinstall? && !upgrade? purge_versioned_files purge_caskroom_path if force? end |
#uninstall_artifacts(clear: false) ⇒ Object
This method is part of a private API. You should avoid using this method if possible, as it may be removed or be changed in the future.
461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 |
# File 'brew/Library/Homebrew/cask/installer.rb', line 461 def uninstall_artifacts(clear: false) odebug "Uninstalling artifacts" artifacts = @cask.artifacts odebug "#{artifacts.length} artifact/s defined", artifacts artifacts.each do |artifact| if artifact.respond_to?(:uninstall_phase) odebug "Uninstalling artifact of class #{artifact.class}" artifact.uninstall_phase( command: @command, verbose: verbose?, skip: clear, force: force?, upgrade: upgrade?, ) end next unless artifact.respond_to?(:post_uninstall_phase) odebug "Post-uninstalling artifact of class #{artifact.class}" artifact.post_uninstall_phase( command: @command, verbose: verbose?, skip: clear, force: force?, upgrade: upgrade?, ) end end |
#uninstall_existing_cask ⇒ Object
This method is part of a private API. You should avoid using this method if possible, as it may be removed or be changed in the future.
141 142 143 144 145 146 147 148 149 150 |
# File 'brew/Library/Homebrew/cask/installer.rb', line 141 def uninstall_existing_cask return unless @cask.installed? # use the same cask file that was used for installation, if possible installed_caskfile = @cask.installed_caskfile installed_cask = installed_caskfile.exist? ? CaskLoader.load(installed_caskfile) : @cask # Always force uninstallation, ignore method parameter Installer.new(installed_cask, binaries: binaries?, verbose: verbose?, force: true, upgrade: upgrade?).uninstall end |
#verify_has_sha ⇒ Object
This method is part of a private API. You should avoid using this method if possible, as it may be removed or be changed in the future.
170 171 172 173 174 175 176 177 178 |
# File 'brew/Library/Homebrew/cask/installer.rb', line 170 def verify_has_sha odebug "Checking cask has checksum" return unless @cask.sha256 == :no_check raise CaskError, <<~EOS Cask '#{@cask}' does not have a sha256 checksum defined and was not installed. This means you have the #{Formatter.identifier("--require-sha")} option set, perhaps in your HOMEBREW_CASK_OPTS. EOS end |
#x11_dependencies ⇒ Object
This method is part of a private API. You should avoid using this method if possible, as it may be removed or be changed in the future.
286 287 288 289 |
# File 'brew/Library/Homebrew/cask/installer.rb', line 286 def x11_dependencies return unless @cask.depends_on.x11 raise CaskX11DependencyError, @cask.token unless MacOS::XQuartz.installed? end |
#zap ⇒ Object
This method is part of a private API. You should avoid using this method if possible, as it may be removed or be changed in the future.
484 485 486 487 488 489 490 491 492 493 494 495 496 497 |
# File 'brew/Library/Homebrew/cask/installer.rb', line 484 def zap ohai %Q(Implied "brew uninstall --cask #{@cask}") uninstall_artifacts if (zap_stanzas = @cask.artifacts.select { |a| a.is_a?(Artifact::Zap) }).empty? opoo "No zap stanza present for Cask '#{@cask}'" else ohai "Dispatching zap stanza" zap_stanzas.each do |stanza| stanza.zap_phase(command: @command, verbose: verbose?, force: force?) end end ohai "Removing all staged versions of Cask '#{@cask}'" purge_caskroom_path end |