brew/Library/Homebrew/cmd/pyenv-sync.rb

67 lines
1.9 KiB
Ruby
Raw Normal View History

2024-04-01 10:00:07 -07:00
# typed: strict
# frozen_string_literal: true
2024-04-01 10:00:07 -07:00
require "abstract_command"
require "formula"
module Homebrew
2024-04-01 10:00:07 -07:00
module Cmd
class PyenvSync < AbstractCommand
cmd_args do
description <<~EOS
Create symlinks for Homebrew's installed Python versions in `~/.pyenv/versions`.
2024-04-01 10:00:07 -07:00
Note that older patch version symlinks will be created and linked to the minor
version so e.g. Python 3.11.0 will also be symlinked to 3.11.3.
EOS
2024-04-01 10:00:07 -07:00
named_args :none
end
2024-04-01 10:00:07 -07:00
sig { override.void }
def run
pyenv_root = Pathname(ENV.fetch("HOMEBREW_PYENV_ROOT", Pathname(Dir.home)/".pyenv"))
2024-04-01 10:00:07 -07:00
# Don't run multiple times at once.
pyenv_sync_running = pyenv_root/".pyenv_sync_running"
return if pyenv_sync_running.exist?
2024-04-01 10:00:07 -07:00
begin
pyenv_versions = pyenv_root/"versions"
pyenv_versions.mkpath
FileUtils.touch pyenv_sync_running
HOMEBREW_CELLAR.glob("python{,@*}")
.flat_map(&:children)
.each { |path| link_pyenv_versions(path, pyenv_versions) }
2024-04-01 10:00:07 -07:00
pyenv_versions.children
.select(&:symlink?)
.reject(&:exist?)
.each { |path| FileUtils.rm_f path }
ensure
pyenv_sync_running.unlink if pyenv_sync_running.exist?
end
end
2024-04-01 10:00:07 -07:00
private
2024-04-01 10:00:07 -07:00
sig { params(path: Pathname, pyenv_versions: Pathname).void }
def link_pyenv_versions(path, pyenv_versions)
pyenv_versions.mkpath
2024-04-01 10:00:07 -07:00
version = Keg.new(path).version
major_version = version.major.to_i
minor_version = version.minor.to_i
patch_version = version.patch.to_i
2024-04-01 10:00:07 -07:00
(0..patch_version).each do |patch|
link_path = pyenv_versions/"#{major_version}.#{minor_version}.#{patch}"
2024-04-01 10:00:07 -07:00
FileUtils.rm_f link_path
FileUtils.ln_sf path, link_path
end
end
end
end
end