tzh
2024-08-22 c7d0944258c7d0943aa7b2211498fd612971ce27
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
[\¬Qc@s¥dZdZddlZddlZddlZddlmZddlmZm    Z    m
Z
m Z m 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„Z d    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((sU/tmp/ndk-User/buildhost/install/prebuilt/darwin-x86_64/lib/python2.7/distutils/cmd.pyt__init__1s      
 
            cCsO|dkrBt|d|ƒ}|dkr;t|j|ƒS|Sn    t|‚dS(Ntdry_runt_(tgetattrRRtAttributeError(Rtattrtmyval((sU/tmp/ndk-User/buildhost/install/prebuilt/darwin-x86_64/lib/python2.7/distutils/cmd.pyt __getattr__as   cCs#|js|jƒnd|_dS(Ni(Rtfinalize_options(R((sU/tmp/ndk-User/buildhost/install/prebuilt/darwin-x86_64/lib/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((sU/tmp/ndk-User/buildhost/install/prebuilt/darwin-x86_64/lib/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((sU/tmp/ndk-User/buildhost/install/prebuilt/darwin-x86_64/lib/python2.7/distutils/cmd.pyR Šs tcCsÓ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((sU/tmp/ndk-User/buildhost/install/prebuilt/darwin-x86_64/lib/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((sU/tmp/ndk-User/buildhost/install/prebuilt/darwin-x86_64/lib/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$((sU/tmp/ndk-User/buildhost/install/prebuilt/darwin-x86_64/lib/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((sU/tmp/ndk-User/buildhost/install/prebuilt/darwin-x86_64/lib/python2.7/distutils/cmd.pyt debug_printºscCs[t||ƒ}|dkr/t|||ƒ|St|tƒsWtd|||f‚n|S(Ns'%s' must be a %s (got `%s`)(RRtsetattrR
tstrR(RR.twhattdefaulttval((sU/tmp/ndk-User/buildhost/install/prebuilt/darwin-x86_64/lib/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<((sU/tmp/ndk-User/buildhost/install/prebuilt/darwin-x86_64/lib/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((sU/tmp/ndk-User/buildhost/install/prebuilt/darwin-x86_64/lib/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=((sU/tmp/ndk-User/buildhost/install/prebuilt/darwin-x86_64/lib/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.((sU/tmp/ndk-User/buildhost/install/prebuilt/darwin-x86_64/lib/python2.7/distutils/cmd.pytensure_filenamescCs |j|tjjddƒdS(Nsdirectory names)'%s' does not exist or is not a directory(RIRKRLtisdir(RR.((sU/tmp/ndk-User/buildhost/install/prebuilt/darwin-x86_64/lib/python2.7/distutils/cmd.pytensure_dirname
scCs$t|dƒr|jS|jjSdS(Nt command_name(thasattrRQR t__name__(R((sU/tmp/ndk-User/buildhost/install/prebuilt/darwin-x86_64/lib/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_pairst src_cmd_objt
src_optiont
dst_option((sU/tmp/ndk-User/buildhost/install/prebuilt/darwin-x86_64/lib/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((sU/tmp/ndk-User/buildhost/install/prebuilt/darwin-x86_64/lib/python2.7/distutils/cmd.pytget_finalized_command1s
icCs|jj||ƒS(N(Rtreinitialize_command(RR[treinit_subcommands((sU/tmp/ndk-User/buildhost/install/prebuilt/darwin-x86_64/lib/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(Rt run_command(RR[((sU/tmp/ndk-User/buildhost/install/prebuilt/darwin-x86_64/lib/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((sU/tmp/ndk-User/buildhost/install/prebuilt/darwin-x86_64/lib/python2.7/distutils/cmd.pytget_sub_commandsHs
cCs!tjd|jƒ|fƒdS(Nswarning: %s: %s
(RtwarnR'(RR2((sU/tmp/ndk-User/buildhost/install/prebuilt/darwin-x86_64/lib/python2.7/distutils/cmd.pyRhXs    cCs tj|||d|jƒdS(NR(RtexecuteR(RtfunctargsR2R$((sU/tmp/ndk-User/buildhost/install/prebuilt/darwin-x86_64/lib/python2.7/distutils/cmd.pyRi\siÿcCstj||d|jƒdS(NR(RtmkpathR(Rtnametmode((sU/tmp/ndk-User/buildhost/install/prebuilt/darwin-x86_64/lib/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$((sU/tmp/ndk-User/buildhost/install/prebuilt/darwin-x86_64/lib/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$((sU/tmp/ndk-User/buildhost/install/prebuilt/darwin-x86_64/lib/python2.7/distutils/cmd.pyRuos
    
cCstj||d|jƒS(s$Move a file respecting dry-run flag.R(Rt    move_fileR(RtsrctdstR$((sU/tmp/ndk-User/buildhost/install/prebuilt/darwin-x86_64/lib/python2.7/distutils/cmd.pyRw{scCs*ddlm}|||d|jƒdS(s2Spawn an external command respecting dry-run flag.iÿÿÿÿ(tspawnRN(tdistutils.spawnRzR(Rtcmdt search_pathR$Rz((sU/tmp/ndk-User/buildhost/install/prebuilt/darwin-x86_64/lib/python2.7/distutils/cmd.pyRzsc Cs+tj||||d|jd|d|ƒS(NRtownertgroup(Rt make_archiveR(Rt    base_nametformattroot_dirtbase_dirR~R((sU/tmp/ndk-User/buildhost/install/prebuilt/darwin-x86_64/lib/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 t j |ƒ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:RCttupleR tjoinRRt newer_groupRiRtdebug(RtinfilesRqRjRktexec_msgtskip_msgR$((sU/tmp/ndk-User/buildhost/install/prebuilt/darwin-x86_64/lib/python2.7/distutils/cmd.pyt    make_fileŠs
       N(#RSt
__module__t__doc__RbRRR!RR RR0R1R(R8R>R@RFRIRNRPR'RZR^R_RaRgRhRiRlRoRuRwRzR€RŒ(((sU/tmp/ndk-User/buildhost/install/prebuilt/darwin-x86_64/lib/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(Rt install_dirtoutfiles(R((sU/tmp/ndk-User/buildhost/install/prebuilt/darwin-x86_64/lib/python2.7/distutils/cmd.pyR¸s    cCs|jd|dfƒdS(NtinstallR‘(RZ(Rtdirname((sU/tmp/ndk-User/buildhost/install/prebuilt/darwin-x86_64/lib/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((sU/tmp/ndk-User/buildhost/install/prebuilt/darwin-x86_64/lib/python2.7/distutils/cmd.pyt _copy_files¿s     cCs|jS(N(R’(R((sU/tmp/ndk-User/buildhost/install/prebuilt/darwin-x86_64/lib/python2.7/distutils/cmd.pyt get_outputsÈs(s install-dir=Rs!directory to install the files to(RSRRŽR*RR•R˜R™(((sU/tmp/ndk-User/buildhost/install/prebuilt/darwin-x86_64/lib/python2.7/distutils/cmd.pyR±s                     (RŽt __revision__R5RKRAtdistutils.errorsRt    distutilsRRRRRRRR(((sU/tmp/ndk-User/buildhost/install/prebuilt/darwin-x86_64/lib/python2.7/distutils/cmd.pyt<module>s$(ÿ¤