develop.py 7.9 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216
  1. from distutils.util import convert_path
  2. from distutils import log
  3. from distutils.errors import DistutilsError, DistutilsOptionError
  4. import os
  5. import glob
  6. import io
  7. import pkg_resources
  8. from setuptools.command.easy_install import easy_install
  9. from setuptools import namespaces
  10. import setuptools
  11. class develop(namespaces.DevelopInstaller, easy_install):
  12. """Set up package for development"""
  13. description = "install package in 'development mode'"
  14. user_options = easy_install.user_options + [
  15. ("uninstall", "u", "Uninstall this source package"),
  16. ("egg-path=", None, "Set the path to be used in the .egg-link file"),
  17. ]
  18. boolean_options = easy_install.boolean_options + ['uninstall']
  19. command_consumes_arguments = False # override base
  20. def run(self):
  21. if self.uninstall:
  22. self.multi_version = True
  23. self.uninstall_link()
  24. self.uninstall_namespaces()
  25. else:
  26. self.install_for_development()
  27. self.warn_deprecated_options()
  28. def initialize_options(self):
  29. self.uninstall = None
  30. self.egg_path = None
  31. easy_install.initialize_options(self)
  32. self.setup_path = None
  33. self.always_copy_from = '.' # always copy eggs installed in curdir
  34. def finalize_options(self):
  35. ei = self.get_finalized_command("egg_info")
  36. if ei.broken_egg_info:
  37. template = "Please rename %r to %r before using 'develop'"
  38. args = ei.egg_info, ei.broken_egg_info
  39. raise DistutilsError(template % args)
  40. self.args = [ei.egg_name]
  41. easy_install.finalize_options(self)
  42. self.expand_basedirs()
  43. self.expand_dirs()
  44. # pick up setup-dir .egg files only: no .egg-info
  45. self.package_index.scan(glob.glob('*.egg'))
  46. egg_link_fn = ei.egg_name + '.egg-link'
  47. self.egg_link = os.path.join(self.install_dir, egg_link_fn)
  48. self.egg_base = ei.egg_base
  49. if self.egg_path is None:
  50. self.egg_path = os.path.abspath(ei.egg_base)
  51. target = pkg_resources.normalize_path(self.egg_base)
  52. egg_path = pkg_resources.normalize_path(
  53. os.path.join(self.install_dir, self.egg_path))
  54. if egg_path != target:
  55. raise DistutilsOptionError(
  56. "--egg-path must be a relative path from the install"
  57. " directory to " + target
  58. )
  59. # Make a distribution for the package's source
  60. self.dist = pkg_resources.Distribution(
  61. target,
  62. pkg_resources.PathMetadata(target, os.path.abspath(ei.egg_info)),
  63. project_name=ei.egg_name
  64. )
  65. self.setup_path = self._resolve_setup_path(
  66. self.egg_base,
  67. self.install_dir,
  68. self.egg_path,
  69. )
  70. @staticmethod
  71. def _resolve_setup_path(egg_base, install_dir, egg_path):
  72. """
  73. Generate a path from egg_base back to '.' where the
  74. setup script resides and ensure that path points to the
  75. setup path from $install_dir/$egg_path.
  76. """
  77. path_to_setup = egg_base.replace(os.sep, '/').rstrip('/')
  78. if path_to_setup != os.curdir:
  79. path_to_setup = '../' * (path_to_setup.count('/') + 1)
  80. resolved = pkg_resources.normalize_path(
  81. os.path.join(install_dir, egg_path, path_to_setup)
  82. )
  83. if resolved != pkg_resources.normalize_path(os.curdir):
  84. raise DistutilsOptionError(
  85. "Can't get a consistent path to setup script from"
  86. " installation directory", resolved,
  87. pkg_resources.normalize_path(os.curdir))
  88. return path_to_setup
  89. def install_for_development(self):
  90. if getattr(self.distribution, 'use_2to3', False):
  91. # If we run 2to3 we can not do this inplace:
  92. # Ensure metadata is up-to-date
  93. self.reinitialize_command('build_py', inplace=0)
  94. self.run_command('build_py')
  95. bpy_cmd = self.get_finalized_command("build_py")
  96. build_path = pkg_resources.normalize_path(bpy_cmd.build_lib)
  97. # Build extensions
  98. self.reinitialize_command('egg_info', egg_base=build_path)
  99. self.run_command('egg_info')
  100. self.reinitialize_command('build_ext', inplace=0)
  101. self.run_command('build_ext')
  102. # Fixup egg-link and easy-install.pth
  103. ei_cmd = self.get_finalized_command("egg_info")
  104. self.egg_path = build_path
  105. self.dist.location = build_path
  106. # XXX
  107. self.dist._provider = pkg_resources.PathMetadata(
  108. build_path, ei_cmd.egg_info)
  109. else:
  110. # Without 2to3 inplace works fine:
  111. self.run_command('egg_info')
  112. # Build extensions in-place
  113. self.reinitialize_command('build_ext', inplace=1)
  114. self.run_command('build_ext')
  115. if setuptools.bootstrap_install_from:
  116. self.easy_install(setuptools.bootstrap_install_from)
  117. setuptools.bootstrap_install_from = None
  118. self.install_namespaces()
  119. # create an .egg-link in the installation dir, pointing to our egg
  120. log.info("Creating %s (link to %s)", self.egg_link, self.egg_base)
  121. if not self.dry_run:
  122. with open(self.egg_link, "w") as f:
  123. f.write(self.egg_path + "\n" + self.setup_path)
  124. # postprocess the installed distro, fixing up .pth, installing scripts,
  125. # and handling requirements
  126. self.process_distribution(None, self.dist, not self.no_deps)
  127. def uninstall_link(self):
  128. if os.path.exists(self.egg_link):
  129. log.info("Removing %s (link to %s)", self.egg_link, self.egg_base)
  130. egg_link_file = open(self.egg_link)
  131. contents = [line.rstrip() for line in egg_link_file]
  132. egg_link_file.close()
  133. if contents not in ([self.egg_path],
  134. [self.egg_path, self.setup_path]):
  135. log.warn("Link points to %s: uninstall aborted", contents)
  136. return
  137. if not self.dry_run:
  138. os.unlink(self.egg_link)
  139. if not self.dry_run:
  140. self.update_pth(self.dist) # remove any .pth link to us
  141. if self.distribution.scripts:
  142. # XXX should also check for entry point scripts!
  143. log.warn("Note: you must uninstall or replace scripts manually!")
  144. def install_egg_scripts(self, dist):
  145. if dist is not self.dist:
  146. # Installing a dependency, so fall back to normal behavior
  147. return easy_install.install_egg_scripts(self, dist)
  148. # create wrapper scripts in the script dir, pointing to dist.scripts
  149. # new-style...
  150. self.install_wrapper_scripts(dist)
  151. # ...and old-style
  152. for script_name in self.distribution.scripts or []:
  153. script_path = os.path.abspath(convert_path(script_name))
  154. script_name = os.path.basename(script_path)
  155. with io.open(script_path) as strm:
  156. script_text = strm.read()
  157. self.install_script(dist, script_name, script_text, script_path)
  158. def install_wrapper_scripts(self, dist):
  159. dist = VersionlessRequirement(dist)
  160. return easy_install.install_wrapper_scripts(self, dist)
  161. class VersionlessRequirement:
  162. """
  163. Adapt a pkg_resources.Distribution to simply return the project
  164. name as the 'requirement' so that scripts will work across
  165. multiple versions.
  166. >>> from pkg_resources import Distribution
  167. >>> dist = Distribution(project_name='foo', version='1.0')
  168. >>> str(dist.as_requirement())
  169. 'foo==1.0'
  170. >>> adapted_dist = VersionlessRequirement(dist)
  171. >>> str(adapted_dist.as_requirement())
  172. 'foo'
  173. """
  174. def __init__(self, dist):
  175. self.__dist = dist
  176. def __getattr__(self, name):
  177. return getattr(self.__dist, name)
  178. def as_requirement(self):
  179. return self.project_name