[ Avaa Bypassed ]




Upload:

Command:

hmhc3928@3.144.12.43: ~ $
�
q��fc@s�dZdZddlZddlZddlZddlmZddlmZm	Z	m
Z
mZmZddlm
Z
dfd��YZd	efd
��YZdS(stdistutils.cmd

Provides the Command class, the base class for the command classes
in the distutils.command package.
s$Id$i����N(tDistutilsOptionError(tutiltdir_utilt	file_utiltarchive_utiltdep_util(tlogtCommandcBsyeZdZgZd�Zd�Zd�Zd�Zd�Zd#dd�Z
d�Zd	d
�Zd�Z
d#d�Zd#d
�Zd�Zd#d�Zd�Zd�Zd�Zd�Zd	d�Zdd�Zd�Zd�Zd�Zd#d	d�Zdd�Zd	d	d#d	d�Zd	d	dd	d�Zd	d�Zd	d	d �Z d#d#d#d#d!�Z!d#d#d	d"�Z"RS($s}Abstract base class for defining command classes, the "worker bees"
    of the Distutils.  A useful analogy for command classes is to think of
    them as subroutines with local variables called "options".  The options
    are "declared" in 'initialize_options()' and "defined" (given their
    final values, aka "finalized") in 'finalize_options()', both of which
    must be defined by every command class.  The distinction between the
    two is necessary because option values might come from the outside
    world (command line, config file, ...), and any options dependent on
    other options must be computed *after* these outside influences have
    been processed -- hence 'finalize_options()'.  The "body" of the
    subroutine, where it does all its work based on the values of its
    options, is the 'run()' method, which must also be implemented by every
    command class.
    cCs�ddlm}t||�s+td�n|jtkrFtd�n||_|j�d|_
|j|_d|_d|_
d|_dS(s�Create and initialize a new Command object.  Most importantly,
        invokes the 'initialize_options()' method, which is the real
        initializer and depends on the actual command being
        instantiated.
        i����(tDistributions$dist must be a Distribution instancesCommand is an abstract classiN(tdistutils.distRt
isinstancet	TypeErrort	__class__RtRuntimeErrortdistributiontinitialize_optionstNonet_dry_runtverbosetforcethelpt	finalized(tselftdistR((s%/usr/lib64/python2.7/distutils/cmd.pyt__init__1s	

			cCsO|dkrBt|d|�}|dkr;t|j|�S|Sn	t|�dS(Ntdry_runt_(tgetattrRRtAttributeError(Rtattrtmyval((s%/usr/lib64/python2.7/distutils/cmd.pyt__getattr__ascCs#|js|j�nd|_dS(Ni(Rtfinalize_options(R((s%/usr/lib64/python2.7/distutils/cmd.pytensure_finalizedks	
cCstd|j�dS(s�Set default values for all the options that this command
        supports.  Note that these defaults may be overridden by other
        commands, by the setup script, by config files, or by the
        command-line.  Thus, this is not the place to code dependencies
        between options; generally, 'initialize_options()' implementations
        are just a bunch of "self.foo = None" assignments.

        This method must be implemented by all command classes.
        s,abstract method -- subclass %s must overrideN(R
R(R((s%/usr/lib64/python2.7/distutils/cmd.pyR}s
cCstd|j�dS(sSet final values for all the options that this command supports.
        This is always called as late as possible, ie.  after any option
        assignments from the command-line or from other commands have been
        done.  Thus, this is the place to code option dependencies: if
        'foo' depends on 'bar', then it is safe to set 'foo' from 'bar' as
        long as 'foo' still has the same value it was assigned in
        'initialize_options()'.

        This method must be implemented by all command classes.
        s,abstract method -- subclass %s must overrideN(R
R(R((s%/usr/lib64/python2.7/distutils/cmd.pyR �stcCs�ddlm}|dkr/d|j�}n|j||dtj�|d}xy|jD]n\}}}|j|�}|ddkr�|d }nt	||�}|j|d||fdtj�q]WdS(Ni����(t
longopt_xlatescommand options for '%s':tlevels  t=s%s = %s(
tdistutils.fancy_getoptR#Rtget_command_nametannounceRtINFOtuser_optionst	translateR(RtheadertindentR#toptionRtvalue((s%/usr/lib64/python2.7/distutils/cmd.pytdump_options�s

cCstd|j�dS(s�A command's raison d'etre: carry out the action it exists to
        perform, controlled by the options initialized in
        'initialize_options()', customized by other commands, the setup
        script, the command-line, and config files, and finalized in
        'finalize_options()'.  All terminal output and filesystem
        interaction should be done by 'run()'.

        This method must be implemented by all command classes.
        s,abstract method -- subclass %s must overrideN(R
R(R((s%/usr/lib64/python2.7/distutils/cmd.pytrun�s
icCstj||�dS(smIf the current verbosity level is of greater than or equal to
        'level' print 'msg' to stdout.
        N(R(RtmsgR$((s%/usr/lib64/python2.7/distutils/cmd.pyR(�scCs/ddlm}|r+|GHtjj�ndS(s~Print 'msg' to stdout if the global DEBUG (taken from the
        DISTUTILS_DEBUG environment variable) flag is true.
        i����(tDEBUGN(tdistutils.debugR3tsyststdouttflush(RR2R3((s%/usr/lib64/python2.7/distutils/cmd.pytdebug_print�scCs[t||�}|dkr/t|||�|St|t�sWtd|||f�n|S(Ns'%s' must be a %s (got `%s`)(RRtsetattrR
tstrR(RR.twhattdefaulttval((s%/usr/lib64/python2.7/distutils/cmd.pyt_ensure_stringlike�scCs|j|d|�dS(sWEnsure that 'option' is a string; if not defined, set it to
        'default'.
        tstringN(R>(RR.R<((s%/usr/lib64/python2.7/distutils/cmd.pyt
ensure_string�scCs�t||�}|dkrdSt|t�rMt||tjd|��ndt|t�r�d}x0|D]}t|t�sid}PqiqiWnd}|s�td||f�ndS(s�Ensure that 'option' is a list of strings.  If 'option' is
        currently a string, we split it either on /,\s*/ or /\s+/, so
        "foo bar baz", "foo,bar,baz", and "foo,   bar baz" all become
        ["foo", "bar", "baz"].
        Ns,\s*|\s+iis''%s' must be a list of strings (got %r)(	RRR
R:R9tretsplittlistR(RR.R=toktelement((s%/usr/lib64/python2.7/distutils/cmd.pytensure_string_list�s 
cCsL|j|||�}|dk	rH||�rHtd|||f�ndS(Nserror in '%s' option: (R>RR(RR.ttesterR;t	error_fmtR<R=((s%/usr/lib64/python2.7/distutils/cmd.pyt_ensure_tested_string�scCs |j|tjjdd�dS(s5Ensure that 'option' is the name of an existing file.tfilenames$'%s' does not exist or is not a fileN(RItostpathtisfile(RR.((s%/usr/lib64/python2.7/distutils/cmd.pytensure_filenamescCs |j|tjjdd�dS(Nsdirectory names)'%s' does not exist or is not a directory(RIRKRLtisdir(RR.((s%/usr/lib64/python2.7/distutils/cmd.pytensure_dirname
scCs$t|d�r|jS|jjSdS(Ntcommand_name(thasattrRQRt__name__(R((s%/usr/lib64/python2.7/distutils/cmd.pyR'scGsh|jj|�}|j�xE|D]=\}}t||�dkr#t||t||��q#q#WdS(s>Set the values of any "undefined" options from corresponding
        option values in some other command object.  "Undefined" here means
        "is None", which is the convention used to indicate that an option
        has not been changed between 'initialize_options()' and
        'finalize_options()'.  Usually called from 'finalize_options()' for
        options that depend on some other command rather than another
        option of the same command.  'src_cmd' is the other command from
        which option values will be taken (a command object will be created
        for it if necessary); the remaining arguments are
        '(src_option,dst_option)' tuples which mean "take the value of
        'src_option' in the 'src_cmd' command object, and copy it to
        'dst_option' in the current command object".
        N(Rtget_command_objR!RRR9(Rtsrc_cmdtoption_pairstsrc_cmd_objt
src_optiont
dst_option((s%/usr/lib64/python2.7/distutils/cmd.pytset_undefined_optionss
	cCs#|jj||�}|j�|S(s�Wrapper around Distribution's 'get_command_obj()' method: find
        (create if necessary and 'create' is true) the command object for
        'command', call its 'ensure_finalized()' method, and return the
        finalized command object.
        (RRTR!(Rtcommandtcreatetcmd_obj((s%/usr/lib64/python2.7/distutils/cmd.pytget_finalized_command1s
icCs|jj||�S(N(Rtreinitialize_command(RR[treinit_subcommands((s%/usr/lib64/python2.7/distutils/cmd.pyR_=s	cCs|jj|�dS(s�Run some other command: uses the 'run_command()' method of
        Distribution, which creates and finalizes the command object if
        necessary and then invokes its 'run()' method.
        N(Rtrun_command(RR[((s%/usr/lib64/python2.7/distutils/cmd.pyRaAscCsLg}x?|jD]4\}}|dks4||�r|j|�qqW|S(skDetermine the sub-commands that are relevant in the current
        distribution (ie., that need to be run).  This is based on the
        'sub_commands' class attribute: each tuple in that list may include
        a method that we call to determine if the subcommand needs to be
        run for the current distribution.  Return a list of command names.
        N(tsub_commandsRtappend(Rtcommandstcmd_nametmethod((s%/usr/lib64/python2.7/distutils/cmd.pytget_sub_commandsHs
cCs!tjd|j�|f�dS(Nswarning: %s: %s
(RtwarnR'(RR2((s%/usr/lib64/python2.7/distutils/cmd.pyRhXs	cCs tj|||d|j�dS(NR(RtexecuteR(RtfunctargsR2R$((s%/usr/lib64/python2.7/distutils/cmd.pyRi\si�cCstj||d|j�dS(NR(RtmkpathR(Rtnametmode((s%/usr/lib64/python2.7/distutils/cmd.pyRl_sc	Cs)tj|||||j|d|j�S(s�Copy a file respecting verbose, dry-run and force flags.  (The
        former two default to whatever is in the Distribution object, and
        the latter defaults to false for commands that don't define it.)R(Rt	copy_fileRR(Rtinfiletoutfilet
preserve_modetpreserve_timestlinkR$((s%/usr/lib64/python2.7/distutils/cmd.pyRobsc	Cs)tj||||||jd|j�S(s\Copy an entire directory tree respecting verbose, dry-run,
        and force flags.
        R(Rt	copy_treeRR(RRpRqRrRstpreserve_symlinksR$((s%/usr/lib64/python2.7/distutils/cmd.pyRuos
	
cCstj||d|j�S(s$Move a file respecting dry-run flag.R(Rt	move_fileR(RtsrctdstR$((s%/usr/lib64/python2.7/distutils/cmd.pyRw{scCs*ddlm}|||d|j�dS(s2Spawn an external command respecting dry-run flag.i����(tspawnRN(tdistutils.spawnRzR(Rtcmdtsearch_pathR$Rz((s%/usr/lib64/python2.7/distutils/cmd.pyRzscCs+tj||||d|jd|d|�S(NRtownertgroup(Rtmake_archiveR(Rt	base_nametformattroot_dirtbase_dirR~R((s%/usr/lib64/python2.7/distutils/cmd.pyR��scCs�|dkrd|}nt|t�r4|f}n!t|ttf�sUtd�n|dkr}d|dj|�f}n|js�tj	||�r�|j
||||�n
tj|�dS(s�Special case of 'execute()' for operations that process one or
        more input files and generate one output file.  Works just like
        'execute()', except the operation is skipped and a different
        message printed if 'outfile' already exists and is newer than all
        files listed in 'infiles'.  If the command defined 'self.force',
        and it is true, then the command is unconditionally run -- does no
        timestamp checks.
        sskipping %s (inputs unchanged)s9'infiles' must be a string, or a list or tuple of stringssgenerating %s from %ss, N(
RR
R:RCttupleRtjoinRRtnewer_groupRiRtdebug(RtinfilesRqRjRktexec_msgtskip_msgR$((s%/usr/lib64/python2.7/distutils/cmd.pyt	make_file�s

	N(#RSt
__module__t__doc__RbRRR!RR RR0R1R(R8R>R@RFRIRNRPR'RZR^R_RaRgRhRiRlRoRuRwRzR�R�(((s%/usr/lib64/python2.7/distutils/cmd.pyRsD	0	
		
		
	
								
	
tinstall_misccBs;eZdZdgZd�Zd�Zd�Zd�ZRS(	s{Common base class for installing some files in a subdirectory.
    Currently used by install_data and install_scripts.
    sinstall-dir=tds!directory to install the files tocCsd|_g|_dS(N(Rtinstall_dirtoutfiles(R((s%/usr/lib64/python2.7/distutils/cmd.pyR�s	cCs|jd|df�dS(NtinstallR�(RZ(Rtdirname((s%/usr/lib64/python2.7/distutils/cmd.pyt_install_dir_from�scCsmg|_|sdS|j|j�xC|D];}|j||j�|jjtjj|j|��q*WdS(N(R�RlR�RoRcRKRLR�(Rtfilelisttf((s%/usr/lib64/python2.7/distutils/cmd.pyt_copy_files�s	
cCs|jS(N(R�(R((s%/usr/lib64/python2.7/distutils/cmd.pytget_outputs�s(sinstall-dir=R�s!directory to install the files to(RSR�R�R*RR�R�R�(((s%/usr/lib64/python2.7/distutils/cmd.pyR��s					(R�t__revision__R5RKRAtdistutils.errorsRt	distutilsRRRRRRRR�(((s%/usr/lib64/python2.7/distutils/cmd.pyt<module>s$(��

Filemanager

Name Type Size Permission Actions
command Folder 0755
.__init__.pyo.40009 File 385 B 0644
.archive_util.pyo.40009 File 7.28 KB 0644
.bcppcompiler.pyo.40009 File 7.7 KB 0644
.cmd.pyo.40009 File 16.41 KB 0644
.config.pyo.40009 File 3.49 KB 0644
.core.pyo.40009 File 7.5 KB 0644
.cygwinccompiler.pyo.40009 File 9.19 KB 0644
.debug.pyo.40009 File 254 B 0644
.dep_util.pyo.40009 File 3.11 KB 0644
.dir_util.pyo.40009 File 6.72 KB 0644
.dist.pyo.40009 File 38.64 KB 0644
.emxccompiler.pyo.40009 File 7.29 KB 0644
.errors.pyo.40009 File 6.14 KB 0644
.file_util.pyo.40009 File 6.47 KB 0644
.filelist.pyo.40009 File 10.51 KB 0644
.log.pyo.40009 File 2.72 KB 0644
.msvccompiler.pyo.40009 File 17.11 KB 0644
.spawn.pyo.40009 File 6.02 KB 0644
.sysconfig.pyo.40009 File 12.96 KB 0644
.text_file.pyo.40009 File 9.03 KB 0644
.unixccompiler.pyo.40009 File 7.76 KB 0644
.util.pyo.40009 File 14.58 KB 0644
.version.pyo.40009 File 7.04 KB 0644
.versionpredicate.pyo.40009 File 5.41 KB 0644
README File 295 B 0644
__init__.py File 337 B 0644
__init__.pyc File 385 B 0644
__init__.pyo File 385 B 0644
archive_util.py File 7.64 KB 0644
archive_util.pyc File 7.28 KB 0644
archive_util.pyo File 7.28 KB 0644
bcppcompiler.py File 14.59 KB 0644
bcppcompiler.pyc File 7.7 KB 0644
bcppcompiler.pyo File 7.7 KB 0644
ccompiler.py File 45.54 KB 0644
ccompiler.pyc File 35.96 KB 0644
ccompiler.pyo File 35.82 KB 0644
cmd.py File 18.82 KB 0644
cmd.pyc File 16.41 KB 0644
cmd.pyo File 16.41 KB 0644
config.py File 4.03 KB 0644
config.pyc File 3.49 KB 0644
config.pyo File 3.49 KB 0644
core.py File 8.88 KB 0644
core.pyc File 7.5 KB 0644
core.pyo File 7.5 KB 0644
cygwinccompiler.py File 16.87 KB 0644
cygwinccompiler.pyc File 9.19 KB 0644
cygwinccompiler.pyo File 9.19 KB 0644
debug.py File 162 B 0644
debug.pyc File 254 B 0644
debug.pyo File 254 B 0644
dep_util.py File 3.43 KB 0644
dep_util.pyc File 3.11 KB 0644
dep_util.pyo File 3.11 KB 0644
dir_util.py File 7.78 KB 0644
dir_util.pyc File 6.72 KB 0644
dir_util.pyo File 6.72 KB 0644
dist.py File 48.88 KB 0644
dist.pyc File 38.64 KB 0644
dist.pyo File 38.64 KB 0644
emxccompiler.py File 11.65 KB 0644
emxccompiler.pyc File 7.29 KB 0644
emxccompiler.pyo File 7.29 KB 0644
errors.py File 3.41 KB 0644
errors.pyc File 6.14 KB 0644
errors.pyo File 6.14 KB 0644
extension.py File 10.65 KB 0644
extension.pyc File 7.24 KB 0644
extension.pyo File 7.02 KB 0644
fancy_getopt.py File 17.53 KB 0644
fancy_getopt.pyc File 11.68 KB 0644
fancy_getopt.pyo File 11.5 KB 0644
file_util.py File 7.61 KB 0644
file_util.pyc File 6.47 KB 0644
file_util.pyo File 6.47 KB 0644
filelist.py File 12.39 KB 0644
filelist.pyc File 10.51 KB 0644
filelist.pyo File 10.51 KB 0644
log.py File 1.65 KB 0644
log.pyc File 2.72 KB 0644
log.pyo File 2.72 KB 0644
msvc9compiler.py File 30.29 KB 0644
msvc9compiler.pyc File 21.04 KB 0644
msvc9compiler.pyo File 20.96 KB 0644
msvccompiler.py File 23.08 KB 0644
msvccompiler.pyc File 17.11 KB 0644
msvccompiler.pyo File 17.11 KB 0644
spawn.py File 7.61 KB 0644
spawn.pyc File 6.02 KB 0644
spawn.pyo File 6.02 KB 0644
sysconfig.py File 16.52 KB 0644
sysconfig.py.debug-build File 16.42 KB 0644
sysconfig.pyc File 12.96 KB 0644
sysconfig.pyo File 12.96 KB 0644
text_file.py File 12.12 KB 0644
text_file.pyc File 9.03 KB 0644
text_file.pyo File 9.03 KB 0644
unixccompiler.py File 12.56 KB 0644
unixccompiler.py.distutils-rpath File 12.03 KB 0644
unixccompiler.pyc File 7.76 KB 0644
unixccompiler.pyo File 7.76 KB 0644
util.py File 18.28 KB 0644
util.pyc File 14.58 KB 0644
util.pyo File 14.58 KB 0644
version.py File 11.17 KB 0644
version.pyc File 7.04 KB 0644
version.pyo File 7.04 KB 0644
versionpredicate.py File 4.98 KB 0644
versionpredicate.pyc File 5.41 KB 0644
versionpredicate.pyo File 5.41 KB 0644