Plan 9 from Bell Labs’s /usr/web/sources/contrib/bichued/root/sys/lib/python/distutils/util.pyo

Copyright © 2021 Plan 9 Foundation.
Distributed under the MIT License.
Download the Plan 9 distribution.


�
��c@s!dZdZddkZddkZddkZddkZddklZddkl	Z	ddk
lZddkl
Z
d�Zd	�Zd
�Zdad�Zd
�Zdd�Zdaaad�Zd�Zdddd�Zd�Zdddddddd�Zd�ZdS(sudistutils.util

Miscellaneous utility functions -- anything that doesn't fit into
one of the other *util.py modules.
s4$Id: util.py 46157 2006-05-23 21:54:23Z tim.peters $i�N(tDistutilsPlatformError(tnewer(tspawn(tlogcCstidjpttd�otiSnti�\}}}}}ti|�}ti|dd�}ti|dd�}ti|dd�}|d d	jod
||fSnH|d djoA|dd
jo,d}dt	|d�d|df}q��d djod
||fSn�|d djod|||fSn�|d djo?d}t
id�}|i|�}|o|i
�}q�]|d djoKddkl}|�}tiid�}	|	p|id�}	n|	p�ytd�}
Wntj
oq�Xt
idd|
i��}|
i�|d*j	o)d i|i
d!�id �d �}	q�n|	onddkl}|	}d"}|d d#jo&|�id$d�i�o
d%}q�d+jo
d(}q��d)|||fS(,s�Return a string that identifies the current platform.  This is used
    mainly to distinguish platform-specific build directories and
    platform-specific built distributions.  Typically includes the OS name
    and version and the architecture (as supplied by 'os.uname()'),
    although the exact information included depends on the OS; eg. for IRIX
    the architecture isn't particularly important (IRIX only runs on SGI
    hardware), but for Linux the kernel version isn't particularly
    important.

    Examples of returned values:
       linux-i586
       linux-alpha (?)
       solaris-2.6-sun4u
       irix-5.3
       irix64-6.2

    For non-POSIX platforms, currently just returns 'sys.platform'.
    tposixtunamet/tt t_t-itlinuxs%s-%stsunosit5tsolariss%d.%siiitirixtaixs%s-%s.%sitcygwins[\d.]+tdarwini�(tget_config_varstMACOSX_DEPLOYMENT_TARGETs0/System/Library/CoreServices/SystemVersion.plists'<key>ProductUserVisibleVersion</key>\s*s<string>(.*?)</string>t.itmacosxs10.4.tUNIVERSALSDKtfattPowerPCtPower_Macintoshtppcs%s-%s-%sN(RR(tostnamethasattrtsystplatformRtstringtlowertreplacetinttretcompiletmatchtgrouptdistutils.sysconfigRtenvirontgettopentIOErrortsearchtreadtclosetNonetjointsplittstrip(tosnamethosttreleasetversiontmachinetrel_retmRtcfgvarstmacvertf((s!/sys/lib/python/distutils/util.pytget_platformsd!*	

-

cCs�tidjo|Sn|p|Sn|ddjotd|�n|ddjotd|�nti|d�}xd|jo|id�q�W|ptiSnttii	|�S(s�Return 'pathname' as a name that will work on the native filesystem,
    i.e. split it on '/' and put it back together again using the current
    directory separator.  Needed because filenames in the setup script are
    always supplied in Unix style, and have to be converted to the local
    convention before we can actually use them in the filesystem.  Raises
    ValueError on non-Unix-ish systems if 'pathname' either starts or
    ends with a slash.
    Rispath '%s' cannot be absolutei�spath '%s' cannot end with '/'R(
Rtsept
ValueErrorR!R3tremovetcurdirtapplytpathR2(tpathnametpaths((s!/sys/lib/python/distutils/util.pytconvert_path|s	cCs�tidjoEtii|�ptii||�Sq�tii||d�SnDtidjoNtii|�\}}|ddjo|d}ntii||�Sn�tidjoQtii|�\}}|dtijo|d}ntii||�Sn�tidjodtii|�ptii||�Sq�ti|dd�}d|d}tii||�Snt	d	ti�d
S(s	Return 'pathname' with 'new_root' prepended.  If 'pathname' is
    relative, this is equivalent to "os.path.join(new_root,pathname)".
    Otherwise, it requires making 'pathname' relative and then joining the
    two, which is tricky on DOS/Windows and Mac OS.
    Ritntis\tos2tmact:s!nothing known about platform '%s'N(
RRREtisabsR2t
splitdriveR@R!R3R(tnew_rootRFtdriveREtelements((s!/sys/lib/python/distutils/util.pytchange_root�s,icCs�todSntidjoDtiid�o0ddk}|iti��dtid<ntiid�pt�tid<ndadS(sLEnsure that 'os.environ' has all the environment variables we
    guarantee that users can use in config files, command-line options,
    etc.  Currently this includes:
      HOME - user's home directory (Unix only)
      PLAT - description of the current platform, including hardware
             and OS (see 'get_platform()')
    NRtHOMEi�itPLATi(	t_environ_checkedRRR*thas_keytpwdtgetpwuidtgetuidR?(RW((s!/sys/lib/python/distutils/util.pyt
check_environ�s	$$cCsSt�|d�}ytid||�SWn"tj
o}td|�nXdS(s�Perform shell/Perl-style variable substitution on 'string'.  Every
    occurrence of '$' followed by a name is considered a variable, and
    variable is substituted by the value found in the 'local_vars'
    dictionary, or in 'os.environ' if it's not in 'local_vars'.
    'os.environ' is first checked/augmented to guarantee that it contains
    certain values: see 'check_environ()'.  Raise ValueError for any
    variables not found in either 'local_vars' or 'os.environ'.
    cSs@|id�}|i|�ot||�Snti|SdS(Ni(R(RVtstrRR*(R't
local_varstvar_name((s!/sys/lib/python/distutils/util.pyt_subst�ss\$([a-zA-Z_][a-zA-Z_0-9]*)sinvalid variable '$%s'N(RZR%tsubtKeyErrorRA(tsR\R^tvar((s!/sys/lib/python/distutils/util.pyt
subst_vars�s	serror: cCsut|d�oMt|d�o=|io|d|i|if}qq|d|i}n|t|d�}|S(s�Generate a useful error message from an EnvironmentError (IOError or
    OSError) exception object.  Handles Python 1.5.1 and 1.5.2 styles, and
    does what it can to deal with exception objects that don't have a
    filename (which happens when the error is due to a two-file operation,
    such as 'rename()' or 'link()'.  Returns the error message as a string
    prefixed with 'prefix'.
    tfilenametstrerrors%s: %ss%si�(RRdReR[(texctprefixterror((s!/sys/lib/python/distutils/util.pytgrok_environment_error�s	 
cCs8tidti�atid�atid�adS(Ns
[^\\\'\"%s ]*s'(?:[^'\\]|\\.)*'s"(?:[^"\\]|\\.)*"(R%R&R!t
whitespacet
_wordchars_ret
_squote_ret
_dquote_re(((s!/sys/lib/python/distutils/util.pyt_init_regexscCs�td	jot�nti|�}g}d}x�|o�ti||�}|i�}|t|�jo|i|| �Pn||ti	jo.|i|| �ti
||�}d}n�|djo$|| ||d}|d}n�||djoti||�}n9||djoti||�}nt
d||�|d	jotd||�n|i�\}}|| ||d|d!||}|i�d}|t|�jo|i|�Pq6q6W|S(
sSplit a string up according to Unix shell-like rules for quotes and
    backslashes.  In short: words are delimited by spaces, as long as those
    spaces are not escaped by a backslash, or inside a quoted string.
    Single and double quotes are equivalent, and the quote characters can
    be backslash-escaped.  The backslash is stripped from any two-character
    escape sequence, leaving only the escaped character.  The quote
    characters are stripped from any quoted string.  Returns a list of
    words.
    is\it't"s!this can't happen (bad char '%c')s"bad string (mismatched %s quotes?)iN(RkR1RnR!R4R'tendtlentappendRjtlstripRlRmtRuntimeErrorRAtspan(RatwordstposR;Rqtbeg((s!/sys/lib/python/distutils/util.pytsplit_quotedsB


%

cCss|djo=d|i|f}|ddjo|dd!d}qJnti|�|pt||�ndS(s�Perform some action that affects the outside world (eg.  by
    writing to the filesystem).  Such actions are special because they
    are disabled by the 'dry_run' flag.  This method takes care of all
    that bureaucracy for you; all you have to do is supply the
    function to call and an argument tuple for it (to embody the
    "external action" being performed), and an optional message to
    print.
    s%s%ri�s,)it)N(R1t__name__RtinfoRD(tfunctargstmsgtverbosetdry_run((s!/sys/lib/python/distutils/util.pytexecuteKs	

cCsMti|�}|djodSn&|djodSntd|f�dS(s�Convert a string representation of truth to true (1) or false (0).

    True values are 'y', 'yes', 't', 'true', 'on', and '1'; false values
    are 'n', 'no', 'f', 'false', 'off', and '0'.  Raises ValueError if
    'val' is anything else.
    tytyesttttruetont1itntnoR>tfalsetofft0isinvalid truth value %rN(R�R�R�R�R�R�(R�R�R>R�R�R�(R!R"RA(tval((s!/sys/lib/python/distutils/util.pyt	strtobool^s

icCs�|djoto
|dj}n|p�y&ddkl}|d�\}	}
Wn6tj
o*ddkl}d|d�}	}
nXtid|
�|p�|	dj	oti	|	d�}nt
|
d�}|id�|iti
tt|�d	�d
�|id|||||f�|i�nti|
g}
|djo|
idd
�n"|djo|
idd�nt|
d|�tti|
fd|
d|�n:ddkl}x&|D]}|ddjoq�n|todpd}|}|oB|t|� |jotd||f�n|t|�}n|otii
||�}ntii|�}|o`|pt||�o2tid||�|p||||�q�q�tid||�q�q�WdS(s�Byte-compile a collection of Python source files to either .pyc
    or .pyo files in the same directory.  'py_files' is a list of files
    to compile; any files that don't end in ".py" are silently skipped.
    'optimize' must be one of the following:
      0 - don't optimize (generate .pyc)
      1 - normal optimization (like "python -O")
      2 - extra optimization (like "python -OO")
    If 'force' is true, all files are recompiled regardless of
    timestamps.

    The source filename encoded in each bytecode file defaults to the
    filenames listed in 'py_files'; you can modify these with 'prefix' and
    'basedir'.  'prefix' is a string that will be stripped off of each
    source filename, and 'base_dir' is a directory name that will be
    prepended (after 'prefix' is stripped).  You can supply either or both
    (or neither) of 'prefix' and 'base_dir', as you wish.

    If 'dry_run' is true, doesn't actually do anything that would
    affect the filesystem.

    Byte-compilation is either done directly in this interpreter process
    with the standard py_compile module, or indirectly by writing a
    temporary script and executing it.  Normally, you should let
    'byte_compile()' figure out to use direct compilation or not (see
    the source for details).  The 'direct' flag is used by the script
    generated in indirect mode; unless you know what you're doing, leave
    it set to None.
    ii�(tmkstemps.py(tmktemps$writing byte-compilation script '%s'tws2from distutils.util import byte_compile
files = [
s,
s]
s�
byte_compile(files, optimize=%r, force=%r,
             prefix=%r, base_dir=%r,
             verbose=%r, dry_run=0,
             direct=1)
is-Ois-OOR�sremoving %s(R&i�tctos1invalid prefix: filename %r doesn't start with %rsbyte-compiling %s to %ss%skipping byte-compilation of %s to %sN(R1t	__debug__ttempfileR�tImportErrorR�RR}RtfdopenR,twriteR!R2tmaptreprR0Rt
executabletinsertRR�RBt
py_compileR&RrRAREtbasenameRtdebug(tpy_filestoptimizetforceRgtbase_dirR�R�tdirectR�t	script_fdtscript_nameR�tscripttcmdR&tfiletcfiletdfilet
cfile_base((s!/sys/lib/python/distutils/util.pytbyte_compilensf,

&

	cCs>ti|d�}tti|�}ti|dd�}|S(s�Return a version of the string escaped for inclusion in an
    RFC-822 header, by ensuring there are 8 spaces space after each newline.
    s
iRs        (R!R3R�R4R2(theadertlines((s!/sys/lib/python/distutils/util.pyt
rfc822_escape�s(t__doc__t__revision__RRR!R%tdistutils.errorsRtdistutils.dep_utilRtdistutils.spawnRt	distutilsRR?RHRRRURZRcRiR1RkRlRmRnRzR�R�R�R�(((s!/sys/lib/python/distutils/util.pys<module>s.0	m		&				?	

Bell Labs OSI certified Powered by Plan 9

(Return to Plan 9 Home Page)

Copyright © 2021 Plan 9 Foundation. All Rights Reserved.
Comments to webmaster@9p.io.