Ë
    As<gŸ	  ã                   ó–   — d dl Z d dlZd dlZd dlmZmZ d dlmZmZ d dl	m
Z
mZ ddgZdedee   fd	„Zdedee   fd
„Zdedee   fd„Zy)é    N)ÚListÚOptional)Úsite_packagesÚ	user_site)Úrunning_under_virtualenvÚvirtualenv_no_globalÚegg_link_path_from_sys_pathÚegg_link_path_from_locationÚraw_nameÚreturnc                 ó@   — t        j                  dd| «      dz   | › dgS )a€  
    Convert a Name metadata value to a .egg-link name, by applying
    the same substitution as pkg_resources's safe_name function.
    Note: we cannot use canonicalize_name because it has a different logic.

    We also look for the raw name (without normalization) as setuptools 69 changed
    the way it names .egg-link files (https://github.com/pypa/setuptools/issues/4167).
    z[^A-Za-z0-9.]+ú-z	.egg-link)ÚreÚsub)r   s    úZ/home/kevstigneev/proxy/myenv/lib/python3.12/site-packages/pip/_internal/utils/egg_link.pyÚ_egg_link_namesr      s.   € ô 	‰Ð  hÓ/°+Ñ=Øˆ*IÐðð ó    c                 óÜ   — t        | «      }t        j                  D ]N  }|D ]G  }t        j                  j	                  ||«      }t        j                  j                  |«      sŒC|c c S  ŒP y)zJ
    Look for a .egg-link file for project name, by walking sys.path.
    N)r   ÚsysÚpathÚosÚjoinÚisfile)r   Úegg_link_namesÚ	path_itemÚegg_link_nameÚegg_links        r   r	   r	   !   s^   € ô % XÓ.€NÜ—X‘Xò  ˆ	Ø+ò 	 ˆMÜ—w‘w—|‘| I¨}Ó=ˆHÜw‰w~‰~˜hÕ'Ø”ñ	 ð ð
 r   c                 ó®  — g }t        «       r;|j                  t        «       t        «       sLt        rF|j                  t        «       n0t        r|j                  t        «       |j                  t        «       t        | «      }|D ]N  }|D ]G  }t        j                  j                  ||«      }t        j                  j                  |«      sŒC|c c S  ŒP y)a  
    Return the path for the .egg-link file if it exists, otherwise, None.

    There's 3 scenarios:
    1) not in a virtualenv
       try to find in site.USER_SITE, then site_packages
    2) in a no-global virtualenv
       try to find in site_packages
    3) in a yes-global virtualenv
       try to find in site_packages, then site.USER_SITE
       (don't look in global location)

    For #1 and #3, there could be odd cases, where there's an egg-link in 2
    locations.

    This method will just return the first one found.
    N)
r   Úappendr   r   r   r   r   r   r   r   )r   Úsitesr   Úsiter   Úegglinks         r   r
   r
   .   s    € ð$ €EÜÔ!Ø‰”]Ô#Ü#Ô%­)ØL‰LœÕ#åØL‰LœÔ#Ø‰”]Ô#ä$ XÓ.€NØò ˆØ+ò 	ˆMÜ—g‘g—l‘l 4¨Ó7ˆGÜw‰w~‰~˜gÕ&Ø”ñ	ðð
 r   )r   r   r   Útypingr   r   Úpip._internal.locationsr   r   Úpip._internal.utils.virtualenvr   r   Ú__all__Ústrr   r	   r
   © r   r   ú<module>r)      sm   ðÛ 	Û 	Û 
ß !ç <÷ð "Ø!ð€ð˜cð  d¨3¡ió ð
¨#ð 
°(¸3±-ó 
ð"¨#ð "°(¸3±-ô "r   