2024-04-01 10:00:07 -07:00
|
|
|
# typed: strict
|
2023-06-01 13:54:37 -04:00
|
|
|
# frozen_string_literal: true
|
|
|
|
|
2024-04-01 10:00:07 -07:00
|
|
|
require "abstract_command"
|
2023-06-01 13:54:37 -04:00
|
|
|
require "formula"
|
|
|
|
|
|
|
|
module Homebrew
|
2024-04-01 10:00:07 -07:00
|
|
|
module Cmd
|
|
|
|
class PyenvSync < AbstractCommand
|
|
|
|
cmd_args do
|
|
|
|
description <<~EOS
|
2025-01-27 15:12:50 +00:00
|
|
|
Create symlinks for Homebrew's installed Python versions in `~/.pyenv/versions`.
|
2023-06-01 13:54:37 -04:00
|
|
|
|
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
|
2023-06-01 13:54:37 -04:00
|
|
|
|
2024-04-01 10:00:07 -07:00
|
|
|
named_args :none
|
|
|
|
end
|
2023-06-01 13:54:37 -04:00
|
|
|
|
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"))
|
2023-06-01 13:54:37 -04:00
|
|
|
|
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?
|
2023-06-01 13:54:37 -04:00
|
|
|
|
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) }
|
2023-06-01 13:54:37 -04:00
|
|
|
|
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
|
2023-06-01 13:54:37 -04:00
|
|
|
|
2024-04-01 10:00:07 -07:00
|
|
|
private
|
2023-06-01 13:54:37 -04:00
|
|
|
|
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
|
2023-06-01 13:54:37 -04:00
|
|
|
|
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
|
2023-06-01 13:54:37 -04:00
|
|
|
|
2025-03-24 15:00:16 +00:00
|
|
|
patch_version_range = if Homebrew::EnvConfig.env_sync_strict?
|
|
|
|
# Only create symlinks for the exact installed patch version.
|
|
|
|
# e.g. 3.11.0 => 3.11.0
|
|
|
|
[patch_version]
|
|
|
|
else
|
2024-12-21 08:38:49 -06:00
|
|
|
# Create folder symlinks for all patch versions to the latest patch version
|
2025-03-24 15:00:16 +00:00
|
|
|
# e.g. 3.11.0 => 3.11.3
|
|
|
|
0..patch_version
|
|
|
|
end
|
|
|
|
|
|
|
|
patch_version_range.each do |patch|
|
2024-04-01 10:00:07 -07:00
|
|
|
link_path = pyenv_versions/"#{major_version}.#{minor_version}.#{patch}"
|
2024-12-21 08:38:49 -06:00
|
|
|
|
2024-04-26 18:32:54 +08:00
|
|
|
# Don't clobber existing user installations.
|
|
|
|
next if link_path.exist? && !link_path.symlink?
|
2023-06-01 13:54:37 -04:00
|
|
|
|
2024-04-01 10:00:07 -07:00
|
|
|
FileUtils.rm_f link_path
|
2025-03-24 15:00:16 +00:00
|
|
|
FileUtils.ln_s path, link_path
|
2024-12-21 08:38:49 -06:00
|
|
|
|
|
|
|
# Create an unversioned symlinks
|
|
|
|
# This is what pyenv expects to find in ~/.pyenv/versions/___/bin'.
|
|
|
|
# Without this, `python3`, `pip3` do not exist and pyenv falls back to system Python.
|
|
|
|
# (eg. python3 -> python3.11, pip3 -> pip3.11)
|
|
|
|
executables = %w[python3 pip3 wheel3 idle3 pydoc3]
|
|
|
|
executables.each do |executable|
|
|
|
|
major_link_path = link_path/"bin/#{executable}"
|
|
|
|
|
|
|
|
# Don't clobber existing user installations.
|
|
|
|
next if major_link_path.exist? && !major_link_path.symlink?
|
|
|
|
|
2025-03-24 15:00:16 +00:00
|
|
|
executable_link_path = link_path/"bin/#{executable}.#{minor_version}"
|
2024-12-21 08:38:49 -06:00
|
|
|
FileUtils.rm_f major_link_path
|
2025-03-24 15:00:16 +00:00
|
|
|
|
|
|
|
begin
|
|
|
|
FileUtils.ln_s executable_link_path, major_link_path
|
|
|
|
rescue => e
|
|
|
|
opoo "Failed to link #{executable_link_path} to #{major_link_path}: #{e}"
|
|
|
|
end
|
2024-12-21 08:38:49 -06:00
|
|
|
end
|
2024-04-01 10:00:07 -07:00
|
|
|
end
|
|
|
|
end
|
2023-06-01 13:54:37 -04:00
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|