brew/Library/Homebrew/os/linux.rb

61 lines
1.7 KiB
Ruby
Raw Normal View History

rubocop: Use `Sorbet/StrictSigil` as it's better than comments - Previously I thought that comments were fine to discourage people from wasting their time trying to bump things that used `undef` that Sorbet didn't support. But RuboCop is better at this since it'll complain if the comments are unnecessary. - Suggested in https://github.com/Homebrew/brew/pull/18018#issuecomment-2283369501. - I've gone for a mixture of `rubocop:disable` for the files that can't be `typed: strict` (use of undef, required before everything else, etc) and `rubocop:todo` for everything else that should be tried to make strictly typed. There's no functional difference between the two as `rubocop:todo` is `rubocop:disable` with a different name. - And I entirely disabled the cop for the docs/ directory since `typed: strict` isn't going to gain us anything for some Markdown linting config files. - This means that now it's easier to track what needs to be done rather than relying on checklists of files in our big Sorbet issue: ```shell $ git grep 'typed: true # rubocop:todo Sorbet/StrictSigil' | wc -l 268 ``` - And this is confirmed working for new files: ```shell $ git status On branch use-rubocop-for-sorbet-strict-sigils Untracked files: (use "git add <file>..." to include in what will be committed) Library/Homebrew/bad.rb Library/Homebrew/good.rb nothing added to commit but untracked files present (use "git add" to track) $ brew style Offenses: bad.rb:1:1: C: Sorbet/StrictSigil: Sorbet sigil should be at least strict got true. ^^^^^^^^^^^^^ 1340 files inspected, 1 offense detected ```
2024-08-12 10:30:59 +01:00
# typed: true # rubocop:todo Sorbet/StrictSigil
# 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
raise "Loaded OS::Linux on generic OS!" if ENV["HOMEBREW_TEST_GENERIC_OS"]
# This check is the only acceptable or necessary one in this file.
# rubocop:disable Homebrew/MoveToExtendOS
raise "Loaded OS::Linux on macOS!" if OS.mac?
# rubocop:enable Homebrew/MoveToExtendOS
2024-04-22 21:05:48 +02:00
# Get the OS version.
#
# @api internal
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
end