core.py 6.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154
  1. # Copyright (c) 2013 Hewlett-Packard Development Company, L.P.
  2. #
  3. # Licensed under the Apache License, Version 2.0 (the "License");
  4. # you may not use this file except in compliance with the License.
  5. # You may obtain a copy of the License at
  6. #
  7. # http://www.apache.org/licenses/LICENSE-2.0
  8. #
  9. # Unless required by applicable law or agreed to in writing, software
  10. # distributed under the License is distributed on an "AS IS" BASIS,
  11. # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or
  12. # implied.
  13. # See the License for the specific language governing permissions and
  14. # limitations under the License.
  15. #
  16. # Copyright (C) 2013 Association of Universities for Research in Astronomy
  17. # (AURA)
  18. #
  19. # Redistribution and use in source and binary forms, with or without
  20. # modification, are permitted provided that the following conditions are met:
  21. #
  22. # 1. Redistributions of source code must retain the above copyright
  23. # notice, this list of conditions and the following disclaimer.
  24. #
  25. # 2. Redistributions in binary form must reproduce the above
  26. # copyright notice, this list of conditions and the following
  27. # disclaimer in the documentation and/or other materials provided
  28. # with the distribution.
  29. #
  30. # 3. The name of AURA and its representatives may not be used to
  31. # endorse or promote products derived from this software without
  32. # specific prior written permission.
  33. #
  34. # THIS SOFTWARE IS PROVIDED BY AURA ``AS IS'' AND ANY EXPRESS OR IMPLIED
  35. # WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF
  36. # MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
  37. # DISCLAIMED. IN NO EVENT SHALL AURA BE LIABLE FOR ANY DIRECT, INDIRECT,
  38. # INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING,
  39. # BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS
  40. # OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND
  41. # ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR
  42. # TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE
  43. # USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH
  44. # DAMAGE.
  45. import logging
  46. import os
  47. import sys
  48. import warnings
  49. from distutils import errors
  50. from pbr import util
  51. if sys.version_info[0] == 3:
  52. string_type = str
  53. integer_types = (int,)
  54. else:
  55. string_type = basestring # noqa
  56. integer_types = (int, long) # noqa
  57. def pbr(dist, attr, value):
  58. """Implements the actual pbr setup() keyword.
  59. When used, this should be the only keyword in your setup() aside from
  60. `setup_requires`.
  61. If given as a string, the value of pbr is assumed to be the relative path
  62. to the setup.cfg file to use. Otherwise, if it evaluates to true, it
  63. simply assumes that pbr should be used, and the default 'setup.cfg' is
  64. used.
  65. This works by reading the setup.cfg file, parsing out the supported
  66. metadata and command options, and using them to rebuild the
  67. `DistributionMetadata` object and set the newly added command options.
  68. The reason for doing things this way is that a custom `Distribution` class
  69. will not play nicely with setup_requires; however, this implementation may
  70. not work well with distributions that do use a `Distribution` subclass.
  71. """
  72. # Distribution.finalize_options() is what calls this method. That means
  73. # there is potential for recursion here. Recursion seems to be an issue
  74. # particularly when using PEP517 build-system configs without
  75. # setup_requires in setup.py. We can avoid the recursion by setting
  76. # this canary so we don't repeat ourselves.
  77. if hasattr(dist, '_pbr_initialized'):
  78. return
  79. dist._pbr_initialized = True
  80. if not value:
  81. return
  82. if isinstance(value, string_type):
  83. path = os.path.abspath(value)
  84. else:
  85. path = os.path.abspath('setup.cfg')
  86. if not os.path.exists(path):
  87. raise errors.DistutilsFileError(
  88. 'The setup.cfg file %s does not exist.' % path)
  89. # Converts the setup.cfg file to setup() arguments
  90. try:
  91. attrs = util.cfg_to_args(path, dist.script_args)
  92. except Exception:
  93. e = sys.exc_info()[1]
  94. # NB: This will output to the console if no explicit logging has
  95. # been setup - but thats fine, this is a fatal distutils error, so
  96. # being pretty isn't the #1 goal.. being diagnosable is.
  97. logging.exception('Error parsing')
  98. raise errors.DistutilsSetupError(
  99. 'Error parsing %s: %s: %s' % (path, e.__class__.__name__, e))
  100. # There are some metadata fields that are only supported by
  101. # setuptools and not distutils, and hence are not in
  102. # dist.metadata. We are OK to write these in. For gory details
  103. # see
  104. # https://github.com/pypa/setuptools/pull/1343
  105. _DISTUTILS_UNSUPPORTED_METADATA = (
  106. 'long_description_content_type', 'project_urls', 'provides_extras'
  107. )
  108. # Repeat some of the Distribution initialization code with the newly
  109. # provided attrs
  110. if attrs:
  111. # Skips 'options' and 'licence' support which are rarely used; may
  112. # add back in later if demanded
  113. for key, val in attrs.items():
  114. if hasattr(dist.metadata, 'set_' + key):
  115. getattr(dist.metadata, 'set_' + key)(val)
  116. elif hasattr(dist.metadata, key):
  117. setattr(dist.metadata, key, val)
  118. elif hasattr(dist, key):
  119. setattr(dist, key, val)
  120. elif key in _DISTUTILS_UNSUPPORTED_METADATA:
  121. setattr(dist.metadata, key, val)
  122. else:
  123. msg = 'Unknown distribution option: %s' % repr(key)
  124. warnings.warn(msg)
  125. # Re-finalize the underlying Distribution
  126. try:
  127. super(dist.__class__, dist).finalize_options()
  128. except TypeError:
  129. # If dist is not declared as a new-style class (with object as
  130. # a subclass) then super() will not work on it. This is the case
  131. # for Python 2. In that case, fall back to doing this the ugly way
  132. dist.__class__.__bases__[-1].finalize_options(dist)
  133. # This bit comes out of distribute/setuptools
  134. if isinstance(dist.metadata.version, integer_types + (float,)):
  135. # Some people apparently take "version number" too literally :)
  136. dist.metadata.version = str(dist.metadata.version)