brew/Library/Homebrew/os/linux.rb

118 lines
2.7 KiB
Ruby
Raw Normal View History

2020-10-10 14:16:11 +02:00
# typed: true
# frozen_string_literal: true
require "utils"
module OS
2020-08-26 03:06:19 +02:00
# Helper module for querying system information on Linux.
module Linux
2020-10-20 12:03:48 +02:00
sig { returns(String) }
def self.os_version
if which("lsb_release")
2021-03-17 15:34:20 +00:00
lsb_info = Utils.popen_read("lsb_release", "-a")
description = lsb_info[/^Description:\s*(.*)$/, 1].force_encoding("UTF-8")
codename = lsb_info[/^Codename:\s*(.*)$/, 1]
2020-12-02 11:54:59 +00:00
if codename.blank? || (codename == "n/a")
description
else
"#{description} (#{codename})"
end
elsif (redhat_release = Pathname.new("/etc/redhat-release")).readable?
redhat_release.read.chomp
2023-07-29 00:58:36 -04:00
elsif ::OS_VERSION.present?
config: fallback to ::OS_VERSION 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 ```
2023-07-29 00:41:13 -04:00
::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
2020-08-26 03:06:19 +02:00
# rubocop:disable Style/Documentation
module Mac
2022-06-29 11:47:57 -04:00
::MacOS = OS::Mac
raise "Loaded OS::Linux on generic OS!" if ENV["HOMEBREW_TEST_GENERIC_OS"]
def self.version
odeprecated "`MacOS.version` on Linux"
MacOSVersion::NULL
end
def self.full_version
odeprecated "`MacOS.full_version` on Linux"
MacOSVersion::NULL
end
def self.languages
odeprecated "`MacOS.languages` on Linux"
2020-07-13 22:48:53 +10:00
@languages ||= Array(ENV["LANG"]&.slice(/[a-z]+/)).uniq
end
def self.language
odeprecated "`MacOS.language` on Linux"
languages.first
end
def self.sdk_root_needed?
odeprecated "`MacOS.sdk_root_needed?` on Linux"
false
end
def self.sdk_path_if_needed(_version = nil)
odeprecated "`MacOS.sdk_path_if_needed` on Linux"
2020-03-10 14:59:22 +01:00
nil
end
def self.sdk_path(_version = nil)
odeprecated "`MacOS.sdk_path` on Linux"
nil
end
module Xcode
def self.version
odeprecated "`MacOS::Xcode.version` on Linux"
2021-09-11 00:10:24 +01:00
::Version::NULL
end
def self.installed?
odeprecated "`MacOS::Xcode.installed?` on Linux"
false
end
end
module CLT
def self.version
odeprecated "`MacOS::CLT.version` on Linux"
2021-09-11 00:10:24 +01:00
::Version::NULL
end
def self.installed?
odeprecated "`MacOS::CLT.installed?` on Linux"
false
end
end
end
2020-08-26 03:06:19 +02:00
# rubocop:enable Style/Documentation
end