Файловый менеджер - Редактировать - /home/digitalm/venv/lib/python3.7/site-packages/setuptools/_distutils/__pycache__/archive_util.cpython-37.pyc
Назад
B �5�g|! � @ sD d Z ddlZddlmZ ddlZyddlZW n ek rD dZY nX ddlmZ ddl m Z ddl mZ ddlm Z ydd lmZ W n ek r� dZY nX ydd lmZ W n ek r� dZY nX dd� Zd d� Zd$dd�Zd%dd�Zedgdfedgdfedgdfedgdfedgdfeg dfd�Zd d!� Zd&d"d#�ZdS )'zodistutils.archive_util Utility functions for creating archive files (tarballs, zip files, that sort of thing).� N)�warn� )�DistutilsExecError)�spawn)�mkpath)�log)�getpwnam)�getgrnamc C sN t dks| dkrdS yt | �}W n tk r8 d}Y nX |dk rJ|d S dS )z"Returns a gid, given a group name.N� )r �KeyError)�name�result� r �J/tmp/pip-install-251nq386/setuptools/setuptools/_distutils/archive_util.py�_get_gid s r c C sN t dks| dkrdS yt | �}W n tk r8 d}Y nX |dk rJ|d S dS )z"Returns an uid, given a user name.Nr )r r )r r r r r �_get_uid- s r �gzipc s. dddddd�}dddd d �}|dk r:||� � kr:td��| d } |dkrZ| |�|d�7 } ttj�| �|d� ddl} t� d� t ���t��� � ���fdd�}|s�| �| d|| �}z|j ||d� W d|�� X |dk�r*tdt� | || } tjdk�r|| | g}n |d| g}t||d� | S | S )a= Create a (possibly compressed) tar file from all the files under 'base_dir'. 'compress' must be "gzip" (the default), "bzip2", "xz", "compress", or None. ("compress" will be deprecated in Python 3.2) 'owner' and 'group' can be used to define an owner and a group for the archive that is being built. If not provided, the current owner and group will be used. The output tar file will be named 'base_dir' + ".tar", possibly plus the appropriate compression extension (".gz", ".bz2", ".xz" or ".Z"). Returns the output filename. �gz�bz2�xz� )r �bzip2r N�compressz.gzz.bz2z.xzz.Z)r r r r NzKbad value for 'compress': must be None, 'gzip', 'bzip2', 'xz' or 'compress'z.tarr )�dry_runr zCreating tar archivec s, � d k r� | _ �| _�d k r(�| _�| _| S )N)�gid�gname�uid�uname)�tarinfo)r �group�ownerr r r �_set_uid_gidj s z"make_tarball.<locals>._set_uid_gidzw|%s)�filterz'compress' is deprecated.�win32z-f)�keys� ValueError�getr �os�path�dirname�tarfiler �infor r �open�add�closer �DeprecationWarning�sys�platformr )� base_name�base_dirr �verboser r r �tar_compression�compress_ext�archive_namer* r! �tar�compressed_name�cmdr )r r r r r �make_tarball: s@ r; c C s� | d }t tj�|�|d� tdkrp|r.d}nd}ytd|||g|d� W n tk rj td| ��Y nX �nDt�d||� |�s�ytj |d tj d �}W n& tk r� tj |d tjd �}Y nX |�� |tj k�rtj�tj�|d��}|�||� t�d|� x�t�|�D ]�\}} } x>| D ]6}tj�tj�||d��}|�||� t�d|� �qW xJ| D ]B}tj�tj�||��}tj�|��r^|�||� t�d|� �q^W �qW W dQ R X |S ) av Create a zip file from all the files under 'base_dir'. The output zip file will be named 'base_name' + ".zip". Uses either the "zipfile" Python module (if available) or the InfoZIP "zip" utility (if installed and found on the default search path). If neither tool is available, raises DistutilsExecError. Returns the name of the output zip file. z.zip)r Nz-rz-rq�zipzkunable to create zip file '%s': could neither import the 'zipfile' module nor find a standalone zip utilityz#creating '%s' and adding '%s' to it�w)�compressionr zadding '%s')r r'