
In Linux systems where lsb_release is not available by default, `brew config` now falls back to `PRETTY_NAME` (`HOMEBREW_OS_VERSION`). Before: ```console $ brew config HOMEBREW_VERSION: 4.1.2-30-gc346a5c ORIGIN: https://github.com/Homebrew/brew HEAD: c346a5c97adef16fcc439b53cc6e757b64b71cb4 Last commit: 14 hours ago Core tap JSON: 29 Jul 04:16 UTC HOMEBREW_PREFIX: /home/linuxbrew/.linuxbrew HOMEBREW_CASK_OPTS: [] HOMEBREW_DISPLAY: :0 HOMEBREW_EDITOR: /usr/bin/nano HOMEBREW_EVAL_ALL: set HOMEBREW_MAKE_JOBS: 4 Homebrew Ruby: 2.6.10 => /home/linuxbrew/.linuxbrew/Homebrew/Library/Homebrew/vendor/portable-ruby/2.6.10_1/bin/ruby CPU: quad-core 64-bit skylake Clang: N/A Git: 2.41.0 => /bin/git Curl: 8.2.1 => /bin/curl Kernel: Linux 6.4.4-200.fc38.x86_64 x86_64 GNU/Linux OS: Unknown Host glibc: 2.37 /usr/bin/gcc: 13.1.1 /usr/bin/ruby: N/A glibc: N/A gcc@11: N/A gcc: N/A xorg: N/A ``` After: ```console $ brew config HOMEBREW_VERSION: 4.1.2-30-gc346a5c-dirty ORIGIN: https://github.com/Homebrew/brew HEAD: c346a5c97adef16fcc439b53cc6e757b64b71cb4 Last commit: 14 hours ago Core tap JSON: 29 Jul 04:37 UTC HOMEBREW_PREFIX: /home/linuxbrew/.linuxbrew HOMEBREW_CASK_OPTS: [] HOMEBREW_DISPLAY: :0 HOMEBREW_EDITOR: /usr/bin/nano HOMEBREW_EVAL_ALL: set HOMEBREW_MAKE_JOBS: 4 Homebrew Ruby: 2.6.10 => /home/linuxbrew/.linuxbrew/Homebrew/Library/Homebrew/vendor/portable-ruby/2.6.10_1/bin/ruby CPU: quad-core 64-bit skylake Clang: N/A Git: 2.41.0 => /bin/git Curl: 8.2.1 => /bin/curl Kernel: Linux 6.4.4-200.fc38.x86_64 x86_64 GNU/Linux OS: Arch Linux Host glibc: 2.37 /usr/bin/gcc: 13.1.1 /usr/bin/ruby: N/A glibc: N/A gcc@11: N/A gcc: N/A xorg: N/A ```
107 lines
2.2 KiB
Ruby
107 lines
2.2 KiB
Ruby
# typed: true
|
|
# frozen_string_literal: true
|
|
|
|
require "utils"
|
|
|
|
module OS
|
|
# Helper module for querying system information on Linux.
|
|
module Linux
|
|
sig { returns(String) }
|
|
def self.os_version
|
|
if which("lsb_release")
|
|
lsb_info = Utils.popen_read("lsb_release", "-a")
|
|
description = lsb_info[/^Description:\s*(.*)$/, 1].force_encoding("UTF-8")
|
|
codename = lsb_info[/^Codename:\s*(.*)$/, 1]
|
|
if codename.blank? || (codename == "n/a")
|
|
description
|
|
else
|
|
"#{description} (#{codename})"
|
|
end
|
|
elsif (redhat_release = Pathname.new("/etc/redhat-release")).readable?
|
|
redhat_release.read.chomp
|
|
elsif ::OS_VERSION and ! ::OS_VERSION.empty?
|
|
::OS_VERSION
|
|
else
|
|
"Unknown"
|
|
end
|
|
end
|
|
|
|
sig { returns(T::Boolean) }
|
|
def self.wsl?
|
|
/-microsoft/i.match?(OS.kernel_version.to_s)
|
|
end
|
|
|
|
sig { returns(Version) }
|
|
def self.wsl_version
|
|
return Version::NULL unless wsl?
|
|
|
|
kernel = OS.kernel_version.to_s
|
|
if Version.new(T.must(kernel[/^([0-9.]*)-.*/, 1])) > Version.new("5.15")
|
|
Version.new("2 (Microsoft Store)")
|
|
elsif kernel.include?("-microsoft")
|
|
Version.new("2")
|
|
elsif kernel.include?("-Microsoft")
|
|
Version.new("1")
|
|
else
|
|
Version::NULL
|
|
end
|
|
end
|
|
end
|
|
|
|
# rubocop:disable Style/Documentation
|
|
module Mac
|
|
::MacOS = OS::Mac
|
|
|
|
raise "Loaded OS::Linux on generic OS!" if ENV["HOMEBREW_TEST_GENERIC_OS"]
|
|
|
|
def self.version
|
|
MacOSVersion::NULL
|
|
end
|
|
|
|
def self.full_version
|
|
MacOSVersion::NULL
|
|
end
|
|
|
|
def self.languages
|
|
@languages ||= Array(ENV["LANG"]&.slice(/[a-z]+/)).uniq
|
|
end
|
|
|
|
def self.language
|
|
languages.first
|
|
end
|
|
|
|
def self.sdk_root_needed?
|
|
false
|
|
end
|
|
|
|
def self.sdk_path_if_needed(_version = nil)
|
|
nil
|
|
end
|
|
|
|
def self.sdk_path(_version = nil)
|
|
nil
|
|
end
|
|
|
|
module Xcode
|
|
def self.version
|
|
::Version::NULL
|
|
end
|
|
|
|
def self.installed?
|
|
false
|
|
end
|
|
end
|
|
|
|
module CLT
|
|
def self.version
|
|
::Version::NULL
|
|
end
|
|
|
|
def self.installed?
|
|
false
|
|
end
|
|
end
|
|
end
|
|
# rubocop:enable Style/Documentation
|
|
end
|