bdist_dumb.py 5.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133
  1. """distutils.command.bdist_dumb
  2. Implements the Distutils 'bdist_dumb' command (create a "dumb" built
  3. distribution -- i.e., just an archive to be unpacked under $prefix or
  4. $exec_prefix)."""
  5. __revision__ = "$Id$"
  6. import os
  7. from sysconfig import get_python_version
  8. from distutils.util import get_platform
  9. from distutils.core import Command
  10. from distutils.dir_util import remove_tree, ensure_relative
  11. from distutils.errors import DistutilsPlatformError
  12. from distutils import log
  13. class bdist_dumb (Command):
  14. description = 'create a "dumb" built distribution'
  15. user_options = [('bdist-dir=', 'd',
  16. "temporary directory for creating the distribution"),
  17. ('plat-name=', 'p',
  18. "platform name to embed in generated filenames "
  19. "(default: %s)" % get_platform()),
  20. ('format=', 'f',
  21. "archive format to create (tar, ztar, gztar, zip)"),
  22. ('keep-temp', 'k',
  23. "keep the pseudo-installation tree around after " +
  24. "creating the distribution archive"),
  25. ('dist-dir=', 'd',
  26. "directory to put final built distributions in"),
  27. ('skip-build', None,
  28. "skip rebuilding everything (for testing/debugging)"),
  29. ('relative', None,
  30. "build the archive using relative paths"
  31. "(default: false)"),
  32. ('owner=', 'u',
  33. "Owner name used when creating a tar file"
  34. " [default: current user]"),
  35. ('group=', 'g',
  36. "Group name used when creating a tar file"
  37. " [default: current group]"),
  38. ]
  39. boolean_options = ['keep-temp', 'skip-build', 'relative']
  40. default_format = { 'posix': 'gztar',
  41. 'nt': 'zip',
  42. 'os2': 'zip' }
  43. def initialize_options (self):
  44. self.bdist_dir = None
  45. self.plat_name = None
  46. self.format = None
  47. self.keep_temp = 0
  48. self.dist_dir = None
  49. self.skip_build = None
  50. self.relative = 0
  51. self.owner = None
  52. self.group = None
  53. def finalize_options(self):
  54. if self.bdist_dir is None:
  55. bdist_base = self.get_finalized_command('bdist').bdist_base
  56. self.bdist_dir = os.path.join(bdist_base, 'dumb')
  57. if self.format is None:
  58. try:
  59. self.format = self.default_format[os.name]
  60. except KeyError:
  61. raise DistutilsPlatformError, \
  62. ("don't know how to create dumb built distributions " +
  63. "on platform %s") % os.name
  64. self.set_undefined_options('bdist',
  65. ('dist_dir', 'dist_dir'),
  66. ('plat_name', 'plat_name'),
  67. ('skip_build', 'skip_build'))
  68. def run(self):
  69. if not self.skip_build:
  70. self.run_command('build')
  71. install = self.reinitialize_command('install', reinit_subcommands=1)
  72. install.root = self.bdist_dir
  73. install.skip_build = self.skip_build
  74. install.warn_dir = 0
  75. log.info("installing to %s" % self.bdist_dir)
  76. self.run_command('install')
  77. # And make an archive relative to the root of the
  78. # pseudo-installation tree.
  79. archive_basename = "%s.%s" % (self.distribution.get_fullname(),
  80. self.plat_name)
  81. # OS/2 objects to any ":" characters in a filename (such as when
  82. # a timestamp is used in a version) so change them to hyphens.
  83. if os.name == "os2":
  84. archive_basename = archive_basename.replace(":", "-")
  85. pseudoinstall_root = os.path.join(self.dist_dir, archive_basename)
  86. if not self.relative:
  87. archive_root = self.bdist_dir
  88. else:
  89. if (self.distribution.has_ext_modules() and
  90. (install.install_base != install.install_platbase)):
  91. raise DistutilsPlatformError, \
  92. ("can't make a dumb built distribution where "
  93. "base and platbase are different (%s, %s)"
  94. % (repr(install.install_base),
  95. repr(install.install_platbase)))
  96. else:
  97. archive_root = os.path.join(self.bdist_dir,
  98. ensure_relative(install.install_base))
  99. # Make the archive
  100. filename = self.make_archive(pseudoinstall_root,
  101. self.format, root_dir=archive_root,
  102. owner=self.owner, group=self.group)
  103. if self.distribution.has_ext_modules():
  104. pyversion = get_python_version()
  105. else:
  106. pyversion = 'any'
  107. self.distribution.dist_files.append(('bdist_dumb', pyversion,
  108. filename))
  109. if not self.keep_temp:
  110. remove_tree(self.bdist_dir, dry_run=self.dry_run)