Class: Homebrew::Bundle::Uv Private
- Inherits:
-
Extension
- Object
- PackageType
- Extension
- Homebrew::Bundle::Uv
- Defined in:
- bundle/extensions/uv.rb
This class is part of a private API. This class may only be used in the Homebrew/brew repository. Third parties should avoid using this class if possible, as it may be removed or changed without warning.
Constant Summary collapse
- WithOptions =
This constant is part of a private API. This constant may only be used in the Homebrew/brew repository. Third parties should avoid using this constant if possible, as it may be removed or changed without warning.
T.type_alias { T::Hash[Symbol, T.any(String, T::Array[String])] }
- Tool =
This constant is part of a private API. This constant may only be used in the Homebrew/brew repository. Third parties should avoid using this constant if possible, as it may be removed or changed without warning.
T.type_alias { { name: String, with: T::Array[String], source: T.nilable(String) } }
- Checkable =
This constant is part of a private API. This constant may only be used in the Homebrew/brew repository. Third parties should avoid using this constant if possible, as it may be removed or changed without warning.
T.type_alias { { name: String, options: WithOptions } }
- ToolEntry =
This constant is part of a private API. This constant may only be used in the Homebrew/brew repository. Third parties should avoid using this constant if possible, as it may be removed or changed without warning.
T.type_alias { T.any(Tool, Checkable) }
- SOURCE_REQUIREMENT_REGEX =
This constant is part of a private API. This constant may only be used in the Homebrew/brew repository. Third parties should avoid using this constant if possible, as it may be removed or changed without warning.
%r{\A(?:git\+|https?://)|\.git\z}- LOCAL_SOURCE_REGEX =
This constant is part of a private API. This constant may only be used in the Homebrew/brew repository. Third parties should avoid using this constant if possible, as it may be removed or changed without warning.
uv tool listreports a tool installed from a directory as an absolutefile://URL, and a hand-written Brewfile can name a path directly.uv tool installalso takes either spelling behind agit+prefix. None of them resolves on another machine, so none is accepted, and a tool installed from one is dumped without asource:rather than with one that would then fail to parse. %r{\A(?:git\+)?(?:file://|\.{0,2}/)}
Class Method Summary collapse
- .banner_name ⇒ String private
- .check_label ⇒ String private
- .cleanup_heading ⇒ String? private
- .continuation_constraint?(requirement) ⇒ Boolean private
- .dump_entry(package) ⇒ String private
- .dump_name(package) ⇒ String private
- .dump_source(package) ⇒ String? private
- .dump_with(package) ⇒ Array<String>? private
- .entry(name, options = {}) ⇒ Dsl::Entry private
- .install!(name, with: nil, source: nil, preinstall: true, no_upgrade: false, verbose: false, force: false, **_options) ⇒ Boolean private
- .install_package!(name, with: nil, source: nil, verbose: false) ⇒ Boolean private
- .installed_packages ⇒ Array<Tool> private
- .name_with_extras(name, extras_raw) ⇒ String private
- .normalize_constraint(requirement) ⇒ String private
- .normalize_name(name) ⇒ String private
- .normalize_source(source) ⇒ String? private
- .normalize_with(with) ⇒ Array<String> private
- .normalized_options(name, with:, source: nil) ⇒ Tool private
- .package_installed?(name, with: nil, source: nil) ⇒ Boolean private
- .package_name(package) ⇒ String private
- .package_record(name, with: nil, source: nil) ⇒ Object private
- .package_source(package) ⇒ String? private
- .package_with(package) ⇒ Array<String>? private
- .packages ⇒ Array<Tool> private
- .parse_source(required_raw) ⇒ String? private
- .parse_tool_list(output) ⇒ Array<Tool> private
- .parse_with_requirements(with_raw) ⇒ Array<String> private
- .preinstall!(name, with: nil, source: nil, no_upgrade: false, verbose: false, **_options) ⇒ Boolean private
- .reset! ⇒ void private
- .type ⇒ Symbol private
- .uninstall_package!(name, executable: Pathname.new("")) ⇒ void private
Instance Method Summary collapse
- #format_checkable(entries) ⇒ Array<Object> private
- #installed_and_up_to_date?(package, no_upgrade: false) ⇒ Boolean private
Methods inherited from Extension
add_supported?, check, cleanup!, cleanup_disable_description, cleanup_disable_env, cleanup_item_name, cleanup_items, cleanup_supported?, disable_predicate_method, dump, dump_disable_description, dump_disable_env, dump_disable_predicate_method, dump_disable_supported?, dump_output, dump_supported?, ensure_package_manager_installed!, #failure_reason, flag, inherited, install_supported?, install_verb, legacy_check_step, package_description, package_manager_env, package_manager_executable, package_manager_executable!, package_manager_installed?, package_manager_name, predicate_method, quote, remove_supported?, switch_description, with_package_manager_env
Methods inherited from PackageType
batch_installable?, check, #checkable_entries, dump, dump_output, dump_supported?, #exit_early_check, #failure_reason, #find_actionable, #full_check, inherited, install_batch!, install_supported?, install_verb
Class Method Details
.banner_name ⇒ String
This method is part of a private API. This method may only be used in the Homebrew/brew repository. Third parties should avoid using this method if possible, as it may be removed or changed without warning.
31 |
# File 'bundle/extensions/uv.rb', line 31 def = "uv tools" |
.check_label ⇒ String
This method is part of a private API. This method may only be used in the Homebrew/brew repository. Third parties should avoid using this method if possible, as it may be removed or changed without warning.
28 |
# File 'bundle/extensions/uv.rb', line 28 def check_label = "uv Tool" |
.cleanup_heading ⇒ String?
This method is part of a private API. This method may only be used in the Homebrew/brew repository. Third parties should avoid using this method if possible, as it may be removed or changed without warning.
68 69 70 |
# File 'bundle/extensions/uv.rb', line 68 def cleanup_heading end |
.continuation_constraint?(requirement) ⇒ Boolean
This method is part of a private API. This method may only be used in the Homebrew/brew repository. Third parties should avoid using this method if possible, as it may be removed or changed without warning.
201 202 203 |
# File 'bundle/extensions/uv.rb', line 201 def continuation_constraint?(requirement) requirement.match?(/\A(?:<=|>=|!=|==|~=|<|>)\s*\S/) end |
.dump_entry(package) ⇒ String
This method is part of a private API. This method may only be used in the Homebrew/brew repository. Third parties should avoid using this method if possible, as it may be removed or changed without warning.
288 289 290 291 292 293 294 |
# File 'bundle/extensions/uv.rb', line 288 def dump_entry(package) line = super source = dump_source(package) line = "#{line}, source: #{quote(source)}" if source.present? line end |
.dump_name(package) ⇒ String
This method is part of a private API. This method may only be used in the Homebrew/brew repository. Third parties should avoid using this method if possible, as it may be removed or changed without warning.
88 89 90 |
# File 'bundle/extensions/uv.rb', line 88 def dump_name(package) package_name(T.cast(package, ToolEntry)) end |
.dump_source(package) ⇒ String?
This method is part of a private API. This method may only be used in the Homebrew/brew repository. Third parties should avoid using this method if possible, as it may be removed or changed without warning.
98 99 100 |
# File 'bundle/extensions/uv.rb', line 98 def dump_source(package) package_source(T.cast(package, ToolEntry)) end |
.dump_with(package) ⇒ Array<String>?
This method is part of a private API. This method may only be used in the Homebrew/brew repository. Third parties should avoid using this method if possible, as it may be removed or changed without warning.
93 94 95 |
# File 'bundle/extensions/uv.rb', line 93 def dump_with(package) package_with(T.cast(package, ToolEntry)) end |
.entry(name, options = {}) ⇒ Dsl::Entry
This method is part of a private API. This method may only be used in the Homebrew/brew repository. Third parties should avoid using this method if possible, as it may be removed or changed without warning.
34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 |
# File 'bundle/extensions/uv.rb', line 34 def entry(name, = {}) = .keys - [:with, :source] raise "unknown options(#{.inspect}) for uv" if .present? with = [:with] if !with.nil? && (!with.is_a?(Array) || with.any? { |requirement| !requirement.is_a?(String) }) raise "options[:with](#{with.inspect}) should be an Array of String objects" end source = .fetch(:source, nil) if !source.nil? && !source.is_a?(String) raise "options[:source](#{source.inspect}) should be a String object" end = {} normalized_with = normalize_with(with || []) [:with] = normalized_with if normalized_with.present? normalized_source = normalize_source(source) if normalized_source&.match?(LOCAL_SOURCE_REGEX) raise "options[:source](#{source.inspect}) is local to this machine so cannot be used in a Brewfile" end [:source] = normalized_source if normalized_source.present? Dsl::Entry.new(:uv, name, ) end |
.install!(name, with: nil, source: nil, preinstall: true, no_upgrade: false, verbose: false, force: false, **_options) ⇒ Boolean
This method is part of a private API. This method may only be used in the Homebrew/brew repository. Third parties should avoid using this method if possible, as it may be removed or changed without warning.
331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 |
# File 'bundle/extensions/uv.rb', line 331 def install!(name, with: nil, source: nil, preinstall: true, no_upgrade: false, verbose: false, force: false, **) _ = no_upgrade _ = force return true unless preinstall puts "Installing #{name} #{package_description}. It is not currently installed." if verbose return false unless install_package!(name, with:, source:, verbose:) package = (name, with: with || [], source:) installed_packages << package unless installed_packages.include?(package) packages << package unless packages.include?(package) true end |
.install_package!(name, with: nil, source: nil, verbose: false) ⇒ Boolean
This method is part of a private API. This method may only be used in the Homebrew/brew repository. Third parties should avoid using this method if possible, as it may be removed or changed without warning.
110 111 112 113 114 115 116 117 118 119 120 |
# File 'bundle/extensions/uv.rb', line 110 def install_package!(name, with: nil, source: nil, verbose: false) uv = package_manager_executable! args = ["tool", "install", source.presence || name] normalize_with(with || []).each do |requirement| args << "--with" args << requirement end Bundle.system(uv.to_s, *args, verbose:) end |
.installed_packages ⇒ Array<Tool>
This method is part of a private API. This method may only be used in the Homebrew/brew repository. Third parties should avoid using this method if possible, as it may be removed or changed without warning.
123 124 125 126 127 128 |
# File 'bundle/extensions/uv.rb', line 123 def installed_packages installed_packages = @installed_packages return installed_packages if installed_packages @installed_packages = packages.dup end |
.name_with_extras(name, extras_raw) ⇒ String
This method is part of a private API. This method may only be used in the Homebrew/brew repository. Third parties should avoid using this method if possible, as it may be removed or changed without warning.
169 170 171 172 173 174 175 176 |
# File 'bundle/extensions/uv.rb', line 169 def name_with_extras(name, extras_raw) return name if extras_raw.blank? extras = extras_raw.split(",").map(&:strip).reject(&:empty?).uniq.sort return name if extras.empty? "#{name}[#{extras.join(",")}]" end |
.normalize_constraint(requirement) ⇒ String
This method is part of a private API. This method may only be used in the Homebrew/brew repository. Third parties should avoid using this method if possible, as it may be removed or changed without warning.
207 208 209 |
# File 'bundle/extensions/uv.rb', line 207 def normalize_constraint(requirement) requirement.strip.sub(/\A(<=|>=|!=|==|~=|<|>)\s+/, "\\1") end |
.normalize_name(name) ⇒ String
This method is part of a private API. This method may only be used in the Homebrew/brew repository. Third parties should avoid using this method if possible, as it may be removed or changed without warning.
225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 |
# File 'bundle/extensions/uv.rb', line 225 def normalize_name(name) match = name.strip.match(/\A(?<base>[^\[\]]+)(?:\[(?<extras>[^\]]+)\])?\z/) return name.strip unless match base = match[:base] return name.strip if base.nil? extras_raw = match[:extras] return base.strip if extras_raw.blank? extras = extras_raw.split(",").map(&:strip).reject(&:empty?).uniq.sort return base.strip if extras.empty? "#{base.strip}[#{extras.join(",")}]" end |
.normalize_source(source) ⇒ String?
This method is part of a private API. This method may only be used in the Homebrew/brew repository. Third parties should avoid using this method if possible, as it may be removed or changed without warning.
219 220 221 |
# File 'bundle/extensions/uv.rb', line 219 def normalize_source(source) source.presence&.strip end |
.normalize_with(with) ⇒ Array<String>
This method is part of a private API. This method may only be used in the Homebrew/brew repository. Third parties should avoid using this method if possible, as it may be removed or changed without warning.
213 214 215 |
# File 'bundle/extensions/uv.rb', line 213 def normalize_with(with) with.map(&:strip).reject(&:empty?).uniq.sort end |
.normalized_options(name, with:, source: nil) ⇒ Tool
This method is part of a private API. This method may only be used in the Homebrew/brew repository. Third parties should avoid using this method if possible, as it may be removed or changed without warning.
254 255 256 257 258 259 260 |
# File 'bundle/extensions/uv.rb', line 254 def (name, with:, source: nil) { name: normalize_name(name), with: normalize_with(with), source: normalize_source(source), } end |
.package_installed?(name, with: nil, source: nil) ⇒ Boolean
This method is part of a private API. This method may only be used in the Homebrew/brew repository. Third parties should avoid using this method if possible, as it may be removed or changed without warning.
354 355 356 |
# File 'bundle/extensions/uv.rb', line 354 def package_installed?(name, with: nil, source: nil) installed_packages.include?(package_record(name, with:, source:)) end |
.package_name(package) ⇒ String
This method is part of a private API. This method may only be used in the Homebrew/brew repository. Third parties should avoid using this method if possible, as it may be removed or changed without warning.
264 265 266 |
# File 'bundle/extensions/uv.rb', line 264 def package_name(package) package[:name] end |
.package_record(name, with: nil, source: nil) ⇒ Object
This method is part of a private API. This method may only be used in the Homebrew/brew repository. Third parties should avoid using this method if possible, as it may be removed or changed without warning.
249 250 251 |
# File 'bundle/extensions/uv.rb', line 249 def package_record(name, with: nil, source: nil) (name, with: with || [], source:) end |
.package_source(package) ⇒ String?
This method is part of a private API. This method may only be used in the Homebrew/brew repository. Third parties should avoid using this method if possible, as it may be removed or changed without warning.
280 281 282 283 284 |
# File 'bundle/extensions/uv.rb', line 280 def package_source(package) return package[:source] if package.key?(:source) T.cast(package[:options].fetch(:source, nil), T.nilable(String)) end |
.package_with(package) ⇒ Array<String>?
This method is part of a private API. This method may only be used in the Homebrew/brew repository. Third parties should avoid using this method if possible, as it may be removed or changed without warning.
270 271 272 273 274 275 276 |
# File 'bundle/extensions/uv.rb', line 270 def package_with(package) if package.key?(:with) package[:with] else package[:options].fetch(:with, []) end end |
.packages ⇒ Array<Tool>
This method is part of a private API. This method may only be used in the Homebrew/brew repository. Third parties should avoid using this method if possible, as it may be removed or changed without warning.
73 74 75 76 77 78 79 80 81 82 83 84 85 |
# File 'bundle/extensions/uv.rb', line 73 def packages packages = @packages return packages if packages @packages = if (uv = package_manager_executable) output = Utils.popen_read_text(uv, "tool", "list", "--show-with", "--show-extras", "--show-version-specifiers", err: File::NULL) parse_tool_list(output) end return [] if @packages.nil? @packages end |
.parse_source(required_raw) ⇒ String?
This method is part of a private API. This method may only be used in the Homebrew/brew repository. Third parties should avoid using this method if possible, as it may be removed or changed without warning.
158 159 160 161 162 163 164 165 |
# File 'bundle/extensions/uv.rb', line 158 def parse_source(required_raw) source = normalize_source(required_raw) return if source.nil? return if source.match?(LOCAL_SOURCE_REGEX) return source if source.match?(SOURCE_REQUIREMENT_REGEX) nil end |
.parse_tool_list(output) ⇒ Array<Tool>
This method is part of a private API. This method may only be used in the Homebrew/brew repository. Third parties should avoid using this method if possible, as it may be removed or changed without warning.
131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 |
# File 'bundle/extensions/uv.rb', line 131 def parse_tool_list(output) entries = T.let([], T::Array[Tool]) output.each_line do |line| match = line.match(/\A([A-Za-z0-9]\S*)\s+v\S+/) next unless match name = match[1] next if name.nil? extras_raw = line[/\[extras:\s*([^\]]+)\]/, 1] name = name_with_extras(name, extras_raw) with_raw = line[/\[with:\s*([^\]]+)\]/, 1] required_raw = line[/\[required:\s*([^\]]+)\]/, 1] entries << { name: name, with: parse_with_requirements(with_raw), source: parse_source(required_raw), } end entries.sort_by { |entry| entry[:name].to_s } end |
.parse_with_requirements(with_raw) ⇒ Array<String>
This method is part of a private API. This method may only be used in the Homebrew/brew repository. Third parties should avoid using this method if possible, as it may be removed or changed without warning.
180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 |
# File 'bundle/extensions/uv.rb', line 180 def parse_with_requirements(with_raw) return [] if with_raw.blank? entries = T.let([], T::Array[String]) with_raw.split(", ").each do |token| requirement = token.strip next if requirement.empty? if continuation_constraint?(requirement) && entries.any? last_requirement = entries.pop entries << "#{last_requirement}, #{normalize_constraint(requirement)}" if last_requirement else entries << requirement end end entries.uniq.sort end |
.preinstall!(name, with: nil, source: nil, no_upgrade: false, verbose: false, **_options) ⇒ Boolean
This method is part of a private API. This method may only be used in the Homebrew/brew repository. Third parties should avoid using this method if possible, as it may be removed or changed without warning.
306 307 308 309 310 311 312 313 314 315 316 317 |
# File 'bundle/extensions/uv.rb', line 306 def preinstall!(name, with: nil, source: nil, no_upgrade: false, verbose: false, **) _ = no_upgrade ensure_package_manager_installed!(name, verbose:) if package_installed?(name, with:, source:) puts "Skipping install of #{name} #{package_description}. It is already installed." if verbose return false end true end |
.reset! ⇒ void
This method is part of a private API. This method may only be used in the Homebrew/brew repository. Third parties should avoid using this method if possible, as it may be removed or changed without warning.
This method returns an undefined value.
62 63 64 65 |
# File 'bundle/extensions/uv.rb', line 62 def reset! @packages = T.let(nil, T.nilable(T::Array[Tool])) @installed_packages = T.let(nil, T.nilable(T::Array[Tool])) end |
.type ⇒ Symbol
This method is part of a private API. This method may only be used in the Homebrew/brew repository. Third parties should avoid using this method if possible, as it may be removed or changed without warning.
25 |
# File 'bundle/extensions/uv.rb', line 25 def type = :uv |
.uninstall_package!(name, executable: Pathname.new("")) ⇒ void
This method is part of a private API. This method may only be used in the Homebrew/brew repository. Third parties should avoid using this method if possible, as it may be removed or changed without warning.
This method returns an undefined value.
359 360 361 |
# File 'bundle/extensions/uv.rb', line 359 def uninstall_package!(name, executable: Pathname.new("")) Bundle.system(executable.to_s, "tool", "uninstall", name, verbose: false) end |
Instance Method Details
#format_checkable(entries) ⇒ Array<Object>
This method is part of a private API. This method may only be used in the Homebrew/brew repository. Third parties should avoid using this method if possible, as it may be removed or changed without warning.
365 366 367 368 369 |
# File 'bundle/extensions/uv.rb', line 365 def format_checkable(entries) checkable_entries(entries).map do |entry| { name: entry.name, options: entry. } end end |
#installed_and_up_to_date?(package, no_upgrade: false) ⇒ Boolean
This method is part of a private API. This method may only be used in the Homebrew/brew repository. Third parties should avoid using this method if possible, as it may be removed or changed without warning.
372 373 374 375 376 377 378 |
# File 'bundle/extensions/uv.rb', line 372 def installed_and_up_to_date?(package, no_upgrade: false) self.class.package_installed?( self.class.dump_name(package), with: self.class.dump_with(package), source: self.class.dump_source(package), ) end |