os/mac/keg: typed: strict

Signed-off-by: botantony <antonsm21@gmail.com>
This commit is contained in:
botantony 2025-09-09 15:07:35 +02:00
parent 80f9e6714f
commit 744e2452d8
No known key found for this signature in database
GPG Key ID: 7FE721557EA6AAD6

View File

@ -1,4 +1,4 @@
# typed: true # rubocop:todo Sorbet/StrictSigil # typed: strict
# frozen_string_literal: true # frozen_string_literal: true
class Keg class Keg
@ -6,7 +6,7 @@ class Keg
def change_dylib_id(id, file) def change_dylib_id(id, file)
return false if file.dylib_id == id return false if file.dylib_id == id
@require_relocation = true @require_relocation = T.let(true, T.nilable(T::Boolean))
odebug "Changing dylib ID of #{file}\n from #{file.dylib_id}\n to #{id}" odebug "Changing dylib ID of #{file}\n from #{file.dylib_id}\n to #{id}"
file.change_dylib_id(id, strict: false) file.change_dylib_id(id, strict: false)
true true
@ -23,7 +23,7 @@ class Keg
def change_install_name(old, new, file) def change_install_name(old, new, file)
return false if old == new return false if old == new
@require_relocation = true @require_relocation = T.let(true, T.nilable(T::Boolean))
odebug "Changing install name in #{file}\n from #{old}\n to #{new}" odebug "Changing install name in #{file}\n from #{old}\n to #{new}"
file.change_install_name(old, new, strict: false) file.change_install_name(old, new, strict: false)
true true
@ -36,10 +36,11 @@ class Keg
raise raise
end end
sig { params(old: String, new: String, file: Pathname).returns(T::Boolean) }
def change_rpath(old, new, file) def change_rpath(old, new, file)
return false if old == new return false if old == new
@require_relocation = true @require_relocation = T.let(true, T.nilable(T::Boolean))
odebug "Changing rpath in #{file}\n from #{old}\n to #{new}" odebug "Changing rpath in #{file}\n from #{old}\n to #{new}"
file.change_rpath(old, new, strict: false) file.change_rpath(old, new, strict: false)
true true