Mike McQuaid 08a9b44b72
linux/bundle/skipper: add support for Linux casks.
Don't unconditionally skip Linux casks but instead check if they are
supported on Linux.
2025-03-25 11:08:21 +00:00

45 lines
1.2 KiB
Ruby

# typed: true # rubocop:todo Sorbet/StrictSigil
# frozen_string_literal: true
module OS
module Linux
module Bundle
module Skipper
module ClassMethods
sig { params(entry: Homebrew::Bundle::Dsl::Entry).returns(T::Boolean) }
def macos_only_entry?(entry)
entry.type == :mas
end
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_cask?(entry)
unless silent
$stdout.puts Formatter.warning "Skipping #{entry.type} #{entry.name} (unsupported on Linux)"
end
true
else
super(entry)
end
end
end
end
end
end
end
Homebrew::Bundle::Skipper.singleton_class.prepend(OS::Linux::Bundle::Skipper::ClassMethods)