mirror of
				https://github.com/python/cpython.git
				synced 2025-10-31 13:41:24 +00:00 
			
		
		
		
	 9d17a7ad6d
			
		
	
	
		9d17a7ad6d
		
	
	
	
	
		
			
			values that "--foo" can take for various commands: eg. what formats for "sdist" and "bdist", what compilers for "build_ext" and "build_clib". I have *not* reviewed this patch; I'm checking it in as-is because it also fixes a paper-bag-over-head bug in bdist.py, and because I won't have time to review it properly for several days: so someone else can test it for me, instead!
		
			
				
	
	
		
			104 lines
		
	
	
	
		
			3.2 KiB
		
	
	
	
		
			Python
		
	
	
	
	
	
			
		
		
	
	
			104 lines
		
	
	
	
		
			3.2 KiB
		
	
	
	
		
			Python
		
	
	
	
	
	
| """distutils.command.bdist
 | |
| 
 | |
| Implements the Distutils 'bdist' command (create a built [binary]
 | |
| distribution)."""
 | |
| 
 | |
| # created 2000/03/29, Greg Ward
 | |
| 
 | |
| __revision__ = "$Id$"
 | |
| 
 | |
| import os, string
 | |
| from types import *
 | |
| from distutils.core import Command
 | |
| from distutils.errors import *
 | |
| from distutils.util import get_platform
 | |
| 
 | |
| 
 | |
| class bdist (Command):
 | |
| 
 | |
|     description = "create a built (binary) distribution"
 | |
| 
 | |
|     user_options = [('bdist-base=', 'b',
 | |
|                      "temporary directory for creating built distributions"),
 | |
|                     ('formats=', None,
 | |
|                      "formats for distribution"),
 | |
|                    ]
 | |
| 
 | |
|     # The following commands do not take a format option from bdist
 | |
|     no_format_option = ('bdist_rpm',)
 | |
| 
 | |
|     # This won't do in reality: will need to distinguish RPM-ish Linux,
 | |
|     # Debian-ish Linux, Solaris, FreeBSD, ..., Windows, Mac OS.
 | |
|     default_format = { 'posix': 'gztar',
 | |
|                        'nt': 'zip', }
 | |
| 
 | |
|     format_command = { 'gztar': ('bdist_dumb',"gzipped tar-file"),
 | |
|                        'bztar': ('bdist_dumb',"bzip2-ed tar-file"),
 | |
|                        'ztar':  ('bdist_dumb',"compressed tar-file"),
 | |
|                        'tar':   ('bdist_dumb',"tar-file"),
 | |
|                        'rpm':   ('bdist_rpm',"rpm distribution"),
 | |
|                        'zip':   ('bdist_dumb',"zip-file"),
 | |
| 		        }
 | |
| 
 | |
|     # prints all possible arguments to --format
 | |
|     def show_formats():
 | |
| 	from distutils.fancy_getopt import FancyGetopt 
 | |
| 	list_of_formats=[]
 | |
| 	for format in bdist.format_command.keys():
 | |
| 	    list_of_formats.append(("formats="+format,None,bdist.format_command[format][1]))
 | |
| 	list_of_formats.sort()
 | |
| 	pretty_printer=FancyGetopt(list_of_formats)
 | |
| 	pretty_printer.print_help("List of available distribution formats:")
 | |
| 
 | |
|     help_options = [
 | |
|         ('help-formats', None,
 | |
|          "lists available distribution formats",show_formats),
 | |
| 	]
 | |
| 
 | |
| 
 | |
|     def initialize_options (self):
 | |
|         self.bdist_base = None
 | |
|         self.formats = None
 | |
| 
 | |
|     # initialize_options()
 | |
| 
 | |
| 
 | |
|     def finalize_options (self):
 | |
|         # 'bdist_base' -- parent of per-built-distribution-format
 | |
|         # temporary directories (eg. we'll probably have
 | |
|         # "build/bdist.<plat>/dumb", "build/bdist.<plat>/rpm", etc.)
 | |
|         if self.bdist_base is None:
 | |
|             build_base = self.get_finalized_command('build').build_base
 | |
|             plat = get_platform()
 | |
|             self.bdist_base = os.path.join (build_base, 'bdist.' + plat)
 | |
| 
 | |
|         self.ensure_string_list('formats')
 | |
|         if self.formats is None:
 | |
|             try:
 | |
|                 self.formats = [self.default_format[os.name]]
 | |
|             except KeyError:
 | |
|                 raise DistutilsPlatformError, \
 | |
|                       "don't know how to create built distributions " + \
 | |
|                       "on platform %s" % os.name
 | |
|             
 | |
|     # finalize_options()
 | |
| 
 | |
| 
 | |
|     def run (self):
 | |
| 
 | |
|         for format in self.formats:
 | |
| 
 | |
|             try:
 | |
|                 cmd_name = self.format_command[format][0]
 | |
|             except KeyError:
 | |
|                 raise DistutilsOptionError, \
 | |
|                       "invalid format '%s'" % format
 | |
| 
 | |
|             sub_cmd = self.reinitialize_command(cmd_name)
 | |
|             if cmd_name not in self.no_format_option:
 | |
|                 sub_cmd.format = format
 | |
|             self.run_command (cmd_name)
 | |
| 
 | |
|     # run()
 | |
| 
 | |
| # class bdist
 |