diff options
author | Marc-André Lemburg <mal@egenix.com> | 2002-10-04 09:30:06 (GMT) |
---|---|---|
committer | Marc-André Lemburg <mal@egenix.com> | 2002-10-04 09:30:06 (GMT) |
commit | c7cdd7182aadcbb242ce61e5515cc91964806da4 (patch) | |
tree | 17aff6b791bf5bbf2ddacb1457b405db672df963 /Lib/distutils/command/bdist.py | |
parent | a7a76d3d9eb77b4dd3129d34ba8df636ce2e6014 (diff) | |
download | cpython-c7cdd7182aadcbb242ce61e5515cc91964806da4.zip cpython-c7cdd7182aadcbb242ce61e5515cc91964806da4.tar.gz cpython-c7cdd7182aadcbb242ce61e5515cc91964806da4.tar.bz2 |
Pulling Mark Alexander's contribution from CVS.
Diffstat (limited to 'Lib/distutils/command/bdist.py')
-rw-r--r-- | Lib/distutils/command/bdist.py | 17 |
1 files changed, 11 insertions, 6 deletions
diff --git a/Lib/distutils/command/bdist.py b/Lib/distutils/command/bdist.py index f61611e..454c9df 100644 --- a/Lib/distutils/command/bdist.py +++ b/Lib/distutils/command/bdist.py @@ -52,7 +52,9 @@ class bdist (Command): ] # The following commands do not take a format option from bdist - no_format_option = ('bdist_rpm', 'bdist_sdux', 'bdist_pkgtool') + no_format_option = ('bdist_rpm', + #'bdist_sdux', 'bdist_pkgtool' + ) # This won't do in reality: will need to distinguish RPM-ish Linux, # Debian-ish Linux, Solaris, FreeBSD, ..., Windows, Mac OS. @@ -62,20 +64,23 @@ class bdist (Command): # Establish the preferred order (for the --help-formats option). format_commands = ['rpm', 'gztar', 'bztar', 'ztar', 'tar', - 'wininst', 'zip', 'pkgtool', 'sdux'] + 'wininst', 'zip', + #'pkgtool', 'sdux' + ] # And the real information. format_command = { 'rpm': ('bdist_rpm', "RPM distribution"), - 'zip': ('bdist_dumb', "ZIP file"), 'gztar': ('bdist_dumb', "gzip'ed tar file"), + 'zip': ('bdist_dumb', "ZIP file"), + 'gztar': ('bdist_dumb', "gzip'ed tar file"), 'bztar': ('bdist_dumb', "bzip2'ed tar file"), 'ztar': ('bdist_dumb', "compressed tar file"), 'tar': ('bdist_dumb', "tar file"), 'wininst': ('bdist_wininst', "Windows executable installer"), 'zip': ('bdist_dumb', "ZIP file"), - 'pkgtool': ('bdist_pkgtool', - "Solaris pkgtool distribution"), - 'sdux': ('bdist_sdux', "HP-UX swinstall depot"), + #'pkgtool': ('bdist_pkgtool', + # "Solaris pkgtool distribution"), + #'sdux': ('bdist_sdux', "HP-UX swinstall depot"), } |