linux/bundle/skipper: add support for Linux casks.

Don't unconditionally skip Linux casks but instead check if they are
supported on Linux.
This commit is contained in:
Mike McQuaid 2025-03-25 11:08:21 +00:00
parent 2dbce6bac5
commit 08a9b44b72
No known key found for this signature in database

View File

@ -6,17 +6,30 @@ module OS
module Bundle
module Skipper
module ClassMethods
sig { params(entry: Homebrew::Bundle::Dsl::Entry).returns(T::Boolean) }
def macos_only_entry?(entry)
[:cask, :mas].include?(entry.type)
entry.type == :mas
end
def macos_only_tap?(entry)
entry.type == :tap && entry.name == "homebrew/cask"
sig { params(entry: Homebrew::Bundle::Dsl::Entry).returns(T::Boolean) }
def macos_only_cask?(entry)
return false if entry.type != :cask
cask = ::Cask::CaskLoader.load(entry.name)
installer = ::Cask::Installer.new(cask)
installer.check_stanza_os_requirements
true
rescue ::Cask::CaskError
false
end
def skip?(entry, silent: false)
if macos_only_entry?(entry) || macos_only_tap?(entry)
::Kernel.puts Formatter.warning "Skipping #{entry.type} #{entry.name} (on Linux)" unless silent
if macos_only_entry?(entry) || macos_only_cask?(entry)
unless silent
$stdout.puts Formatter.warning "Skipping #{entry.type} #{entry.name} (unsupported on Linux)"
end
true
else
super(entry)