 764d2b2dcc
			
		
	
	
		764d2b2dcc
		
			
		
	
	
	
	
		
			
			We have a `HOMEBREW_MACOS_NEWEST_UNSUPPORTED` environment variable and this is used in `MacOSVersion` to determine prerelease versions but we don't have a way of easily determining the newest supported macOS version. `bump-cask-pr` contains logic that assumes the first key/value in `MacOSVersion::SYMBOLS` is the newest macOS version but it recently became clear that this is a prerelease version between WWDC and the subsequent macOS release. Similarly, `dev-cmd/generate-cask-api.rb` tries to compute the newest stable macOS version as `HOMEBREW_MACOS_NEWEST_UNSUPPORTED.to_i - 1` and this will fail if/when we update that variable to `"26"`, as the macOS version before 26 is 15, not 25. This adds a `HOMEBREW_MACOS_NEWEST_SUPPORTED` environment variable, so we have a straightforward way of quickly identifying the newest supported macOS version without having to make potentially unreliable assumptions or do computations to identify the latest non-prerelease `MacOSVersion` value. This also updates the two aforementioned areas to use this environment variable to produce the newest stable macOS version symbol in a more reliable way.
		
			
				
	
	
		
			98 lines
		
	
	
		
			3.0 KiB
		
	
	
	
		
			Ruby
		
	
	
	
	
	
			
		
		
	
	
			98 lines
		
	
	
		
			3.0 KiB
		
	
	
	
		
			Ruby
		
	
	
	
	
	
| # typed: strict
 | |
| # frozen_string_literal: true
 | |
| 
 | |
| require "abstract_command"
 | |
| require "cask/cask"
 | |
| require "fileutils"
 | |
| require "formula"
 | |
| 
 | |
| module Homebrew
 | |
|   module DevCmd
 | |
|     class GenerateCaskApi < AbstractCommand
 | |
|       CASK_JSON_TEMPLATE = <<~EOS
 | |
|         ---
 | |
|         layout: cask_json
 | |
|         ---
 | |
|         {{ content }}
 | |
|       EOS
 | |
| 
 | |
|       cmd_args do
 | |
|         description <<~EOS
 | |
|           Generate `homebrew/cask` API data files for <#{HOMEBREW_API_WWW}>.
 | |
|           The generated files are written to the current directory.
 | |
|         EOS
 | |
| 
 | |
|         switch "-n", "--dry-run", description: "Generate API data without writing it to files."
 | |
| 
 | |
|         named_args :none
 | |
|       end
 | |
| 
 | |
|       sig { override.void }
 | |
|       def run
 | |
|         tap = CoreCaskTap.instance
 | |
|         raise TapUnavailableError, tap.name unless tap.installed?
 | |
| 
 | |
|         unless args.dry_run?
 | |
|           directories = ["_data/cask", "api/cask", "api/cask-source", "cask", "api/internal"].freeze
 | |
|           FileUtils.rm_rf directories
 | |
|           FileUtils.mkdir_p directories
 | |
|         end
 | |
| 
 | |
|         Homebrew.with_no_api_env do
 | |
|           tap_migrations_json = JSON.dump(tap.tap_migrations)
 | |
|           File.write("api/cask_tap_migrations.json", tap_migrations_json) unless args.dry_run?
 | |
| 
 | |
|           Cask::Cask.generating_hash!
 | |
| 
 | |
|           all_casks = {}
 | |
|           latest_macos = MacOSVersion.new(HOMEBREW_MACOS_NEWEST_SUPPORTED).to_sym
 | |
|           Homebrew::SimulateSystem.with(os: latest_macos, arch: :arm) do
 | |
|             tap.cask_files.each do |path|
 | |
|               cask = Cask::CaskLoader.load(path)
 | |
|               name = cask.token
 | |
|               all_casks[name] = cask.to_hash_with_variations
 | |
|               json = JSON.pretty_generate(all_casks[name])
 | |
|               cask_source = path.read
 | |
|               html_template_name = html_template(name)
 | |
| 
 | |
|               unless args.dry_run?
 | |
|                 File.write("_data/cask/#{name.tr("+", "_")}.json", "#{json}\n")
 | |
|                 File.write("api/cask/#{name}.json", CASK_JSON_TEMPLATE)
 | |
|                 File.write("api/cask-source/#{name}.rb", cask_source)
 | |
|                 File.write("cask/#{name}.html", html_template_name)
 | |
|               end
 | |
|             rescue
 | |
|               onoe "Error while generating data for cask '#{path.stem}'."
 | |
|               raise
 | |
|             end
 | |
|           end
 | |
| 
 | |
|           canonical_json = JSON.pretty_generate(tap.cask_renames)
 | |
|           File.write("_data/cask_canonical.json", "#{canonical_json}\n") unless args.dry_run?
 | |
| 
 | |
|           OnSystem::VALID_OS_ARCH_TAGS.each do |bottle_tag|
 | |
|             variation_casks = all_casks.map do |_, cask|
 | |
|               Homebrew::API.merge_variations(cask, bottle_tag:)
 | |
|             end
 | |
| 
 | |
|             File.write("api/internal/cask.#{bottle_tag}.json", JSON.generate(variation_casks)) unless args.dry_run?
 | |
|           end
 | |
|         end
 | |
|       end
 | |
| 
 | |
|       private
 | |
| 
 | |
|       sig { params(title: String).returns(String) }
 | |
|       def html_template(title)
 | |
|         <<~EOS
 | |
|           ---
 | |
|           title: '#{title}'
 | |
|           layout: cask
 | |
|           ---
 | |
|           {{ content }}
 | |
|         EOS
 | |
|       end
 | |
|     end
 | |
|   end
 | |
| end
 |