-í
ì¶<c       sc   d  Z  d Z d k Z d k l Z d k l Z d k l Z l	 Z	 d k
 Td e f d     YZ d S(	   s·   distutils.command.bdist_dumb

Implements the Distutils 'bdist_dumb' command (create a "dumb" built
distribution -- i.e., just an archive to be unpacked under $prefix or
$exec_prefix).s9   $Id: bdist_dumb.py,v 1.16 2000/09/30 18:27:54 gward Exp $N(   s   Command(   s   get_platform(   s   create_trees   remove_tree(   s   *s
   bdist_dumbc      s   t  Z d Z d d d f d d d e   f d d	 d
 f d d d d f d d d f g Z d g Z h  d d <d d <Z d   Z d   Z d   Z	 RS(   Ns"   create a "dumb" built distributions
   bdist-dir=s   ds1   temporary directory for creating the distributions
   plat-name=s   ps;   platform name to embed in generated filenames (default: %s)s   format=s   fs0   archive format to create (tar, ztar, gztar, zip)s	   keep-temps   ks/   keep the pseudo-installation tree around after s!   creating the distribution archives	   dist-dir=s-   directory to put final built distributions ins   gztars   posixs   zips   ntc    s1   t  |  _ t  |  _ t  |  _ d |  _ t  |  _ d  S(   Ni    (   s   Nones   selfs	   bdist_dirs	   plat_names   formats	   keep_temps   dist_dir(   s   self(    (    s2   /usr/lib/python2.2/distutils/command/bdist_dumb.pys   initialize_options) s
    				c    s¶   |  i t j o. |  i d  i } t i i | d  |  _ n |  i t j oE y |  i	 t i
 |  _ Wn' t j
 o t d d t i
  n Xn |  i d d d f d d f  d  S(   Ns   bdists   dumbs2   don't know how to create dumb built distributions s   on platform %ss   dist_dirs	   plat_name(   s   selfs	   bdist_dirs   Nones   get_finalized_commands
   bdist_bases   oss   paths   joins   formats   default_formats   names   KeyErrors   DistutilsPlatformErrors   set_undefined_options(   s   selfs
   bdist_base(    (    s2   /usr/lib/python2.2/distutils/command/bdist_dumb.pys   finalize_options3 s    		c    sÅ   |  i d  |  i d d d } |  i | _ |  i d |  i  |  i d  d |  i i   |  i	 f } |  i t i i |  i |  |  i d |  i |  i o t |  i |  i |  i  n d  S(   Ns   builds   installs   reinit_subcommandsi   s   installing to %ss   %s.%ss   root_dir(   s   selfs   run_commands   reinitialize_commands   installs	   bdist_dirs   roots   announces   distributions   get_fullnames	   plat_names   archive_basenames   make_archives   oss   paths   joins   dist_dirs   formats	   keep_temps   remove_trees   verboses   dry_run(   s   selfs   installs   archive_basename(    (    s2   /usr/lib/python2.2/distutils/command/bdist_dumb.pys   runH s    (
   s   __name__s
   __module__s   descriptions   get_platforms   user_optionss   boolean_optionss   default_formats   initialize_optionss   finalize_optionss   run(    (    (    s2   /usr/lib/python2.2/distutils/command/bdist_dumb.pys
   bdist_dumb s   M		
	(   s   __doc__s   __revision__s   oss   distutils.cores   Commands   distutils.utils   get_platforms   distutils.dir_utils   create_trees   remove_trees   distutils.errorss
   bdist_dumb(   s   __revision__s   Commands   get_platforms   create_trees   remove_trees
   bdist_dumbs   os(    (    s2   /usr/lib/python2.2/distutils/command/bdist_dumb.pys   ? s   	