o
    Ö=âg  ã                   @   sÖ   d dl Z d dlZd dlZd dlmZ d dlmZ d dlmZ d dl	m
Z
 d dlmZmZ d dlmZ d dlmZ d d	lmZ d d
lmZmZ d dlmZmZ d dlmZ d dlmZmZ e  e ¡Z!G dd„ deƒZ"dS )é    N)ÚValues)ÚList)Ú
WheelCache)Ú
cmdoptions)ÚRequirementCommandÚwith_cleanup)ÚSUCCESS)ÚCommandError)Úget_build_tracker)ÚInstallRequirementÚcheck_legacy_setup_py_options)Ú
ensure_dirÚnormalize_path)ÚTempDirectory)ÚbuildÚshould_build_for_wheel_commandc                   @   s<   e Zd ZdZdZddd„Zededee	 de
fd	d
„ƒZdS )ÚWheelCommanda‘  
    Build Wheel archives for your requirements and dependencies.

    Wheel is a built-package format, and offers the advantage of not
    recompiling your software during every install. For more details, see the
    wheel docs: https://wheel.readthedocs.io/en/latest/

    'pip wheel' uses the build system interface as described here:
    https://pip.pypa.io/en/stable/reference/build-system/

    zõ
      %prog [options] <requirement specifier> ...
      %prog [options] -r <requirements file> ...
      %prog [options] [-e] <vcs project url> ...
      %prog [options] [-e] <local project path> ...
      %prog [options] <archive url/path> ...ÚreturnNc                 C   s–  | j jddddtjdd | j  t ¡ ¡ | j  t ¡ ¡ | j  t ¡ ¡ | j  t ¡ ¡ | j  t 	¡ ¡ | j  t 
¡ ¡ | j  t ¡ ¡ | j  t ¡ ¡ | j  t ¡ ¡ | j  t ¡ ¡ | j  t ¡ ¡ | j  t ¡ ¡ | j  t ¡ ¡ | j  t ¡ ¡ | j jddd	d
dd | j  t ¡ ¡ | j  t ¡ ¡ | j  t ¡ ¡ | j jdd	d
dd | j  t ¡ ¡ t tj| j¡}| j d|¡ | j d| j ¡ d S )Nz-wz--wheel-dirÚ	wheel_dirÚdirzLBuild wheels into <dir>, where the default is the current working directory.)ÚdestÚmetavarÚdefaultÚhelpz--no-verifyÚ	no_verifyÚ
store_trueFz%Don't verify if built wheel is valid.)r   Úactionr   r   z--prezYInclude pre-release and development versions. By default, pip only finds stable versions.)r   r   r   r   )Úcmd_optsÚ
add_optionÚosÚcurdirr   Ú	no_binaryÚonly_binaryÚprefer_binaryÚno_build_isolationÚ
use_pep517Úno_use_pep517Úcheck_build_depsÚconstraintsÚeditableÚrequirementsÚsrcÚignore_requires_pythonÚno_depsÚprogress_barÚconfig_settingsÚbuild_optionsÚglobal_optionsÚrequire_hashesÚmake_option_groupÚindex_groupÚparserÚinsert_option_group)ÚselfÚ
index_opts© r9   úO/var/www/html/venv/lib/python3.10/site-packages/pip/_internal/commands/wheel.pyÚadd_options,   sZ   ùûû
þzWheelCommand.add_optionsÚoptionsÚargsc                 C   s¼  |   |¡}|  ||¡}t|jƒ|_t|jƒ |  tƒ ¡}t|j ddd}|  	||||¡}t
||ƒ t|jƒ}| j||||||jd| jd}	| j|	||||j|jd}
|  |¡ |
j|dd}g }|j ¡ D ]}|jrq|	 |¡ qft|ƒrz| |¡ qf|	 |j ¡ ¡ t|||j |jpg |jp‘g d\}}|D ]9}|jr¡|jjs£J ‚|j s¨J ‚z
t! "|j |j¡ W q˜ t#yÑ } zt$ %d	|j&|¡ | |¡ W Y d }~q˜d }~ww t'|ƒd
krÜt(dƒ‚t)S )NÚwheelT)ÚdeleteÚkindÚglobally_managedF)Útemp_build_dirr<   Úbuild_trackerÚsessionÚfinderÚdownload_dirÚuse_user_siteÚ	verbosity)ÚpreparerrE   r<   Úwheel_cacher,   r%   )Úcheck_supported_wheels)rJ   Úverifyr0   r1   z Building wheel for %s failed: %sr   z"Failed to build one or more wheels)*Úget_default_sessionÚ_build_package_finderr   r   r   Úenter_contextr
   r   Úno_cleanÚget_requirementsr   r   Ú	cache_dirÚmake_requirement_preparerrH   Úmake_resolverr,   r%   Útrace_basic_infoÚresolver*   ÚvaluesÚis_wheelÚsave_linked_requirementr   ÚappendÚ prepare_linked_requirements_morer   r   r0   r1   ÚlinkÚlocal_file_pathÚshutilÚcopyÚOSErrorÚloggerÚwarningÚnameÚlenr	   r   )r7   r<   r=   rD   rE   rC   Ú	directoryÚreqsrJ   rI   ÚresolverÚrequirement_setÚreqs_to_buildÚreqÚbuild_successesÚbuild_failuresÚer9   r9   r:   Úrung   s‚   

ý

øú
	
€
û
ý€úzWheelCommand.run)r   N)Ú__name__Ú
__module__Ú__qualname__Ú__doc__Úusager;   r   r   r   ÚstrÚintrn   r9   r9   r9   r:   r      s    
; r   )#Úloggingr   r^   Úoptparser   Útypingr   Úpip._internal.cacher   Úpip._internal.clir   Úpip._internal.cli.req_commandr   r   Úpip._internal.cli.status_codesr   Úpip._internal.exceptionsr	   Ú,pip._internal.operations.build.build_trackerr
   Úpip._internal.req.req_installr   r   Úpip._internal.utils.miscr   r   Úpip._internal.utils.temp_dirr   Úpip._internal.wheel_builderr   r   Ú	getLoggerro   ra   r   r9   r9   r9   r:   Ú<module>   s"    
