Skip to content

Commit cca8000

Browse files
committed
visp: update postinstall to support API
1 parent 127afa2 commit cca8000

File tree

1 file changed

+14
-3
lines changed

1 file changed

+14
-3
lines changed

Formula/v/visp.rb

+14-3
Original file line numberDiff line numberDiff line change
@@ -155,14 +155,25 @@ def post_install
155155
# Replace SDK paths in bottle when pouring on different OS version than bottle OS.
156156
# This avoids error like https://github.com/orgs/Homebrew/discussions/5853
157157
# TODO: Consider handling this in brew, e.g. as part of keg cleaner or bottle relocation
158-
if OS.mac? && Tab.for_formula(self).poured_from_bottle && MacOS.version != bottle&.tag&.to_macos_version
158+
if OS.mac? && (tab = Tab.for_formula(self)).poured_from_bottle
159+
bottle_os = bottle&.tag&.to_macos_version
160+
if bottle_os.nil? && (os_version = tab.built_on.fetch("os_version", "")[/\d+(?:\.\d+)*$/])
161+
bottle_os = MacOSVersion.new(os_version).strip_patch
162+
end
163+
return if bottle_os.nil? || MacOS.version == bottle_os
164+
159165
sdk_path_files = [
160166
lib/"cmake/visp/VISPConfig.cmake",
161167
lib/"cmake/visp/VISPModules.cmake",
162168
lib/"pkgconfig/visp.pc",
163169
]
164-
bottle_sdk_path = MacOS.sdk_for_formula(self, bottle&.tag&.to_macos_version).path
165-
inreplace sdk_path_files, bottle_sdk_path, MacOS.sdk_for_formula(self).path, audit_result: false
170+
old = MacOS.sdk_for_formula(self, bottle_os).path
171+
new = MacOS.sdk_for_formula(self).path
172+
sdk_path_files.each do |sdk_path_file|
173+
# NOTE: Should be `odebug` to match os/mac/keg.rb but brew postinstall doesn't support it
174+
ohai "Changing SDK path in #{sdk_path_file}", " from #{old}\n to #{new}"
175+
inreplace sdk_path_file, old, new, audit_result: false
176+
end
166177
end
167178
end
168179

0 commit comments

Comments
 (0)