packaging.py 31 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879
  1. # Copyright 2011 OpenStack Foundation
  2. # Copyright 2012-2013 Hewlett-Packard Development Company, L.P.
  3. # All Rights Reserved.
  4. #
  5. # Licensed under the Apache License, Version 2.0 (the "License"); you may
  6. # not use this file except in compliance with the License. You may obtain
  7. # a copy of the License at
  8. #
  9. # http://www.apache.org/licenses/LICENSE-2.0
  10. #
  11. # Unless required by applicable law or agreed to in writing, software
  12. # distributed under the License is distributed on an "AS IS" BASIS, WITHOUT
  13. # WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the
  14. # License for the specific language governing permissions and limitations
  15. # under the License.
  16. """
  17. Utilities with minimum-depends for use in setup.py
  18. """
  19. from __future__ import unicode_literals
  20. from distutils.command import install as du_install
  21. from distutils import log
  22. # (hberaud) do not use six here to import urlparse
  23. # to keep this module free from external dependencies
  24. # to avoid cross dependencies errors on minimal system
  25. # free from dependencies.
  26. try:
  27. from urllib.parse import urlparse
  28. except ImportError:
  29. from urlparse import urlparse
  30. import email
  31. import email.errors
  32. import os
  33. import re
  34. import sys
  35. import warnings
  36. import pkg_resources
  37. import setuptools
  38. from setuptools.command import develop
  39. from setuptools.command import easy_install
  40. from setuptools.command import egg_info
  41. from setuptools.command import install
  42. from setuptools.command import install_scripts
  43. from setuptools.command import sdist
  44. from pbr import extra_files
  45. from pbr import git
  46. from pbr import options
  47. import pbr.pbr_json
  48. from pbr import testr_command
  49. from pbr import version
  50. REQUIREMENTS_FILES = ('requirements.txt', 'tools/pip-requires')
  51. PY_REQUIREMENTS_FILES = [x % sys.version_info[0] for x in (
  52. 'requirements-py%d.txt', 'tools/pip-requires-py%d')]
  53. TEST_REQUIREMENTS_FILES = ('test-requirements.txt', 'tools/test-requires')
  54. def get_requirements_files():
  55. files = os.environ.get("PBR_REQUIREMENTS_FILES")
  56. if files:
  57. return tuple(f.strip() for f in files.split(','))
  58. # Returns a list composed of:
  59. # - REQUIREMENTS_FILES with -py2 or -py3 in the name
  60. # (e.g. requirements-py3.txt)
  61. # - REQUIREMENTS_FILES
  62. return PY_REQUIREMENTS_FILES + list(REQUIREMENTS_FILES)
  63. def append_text_list(config, key, text_list):
  64. """Append a \n separated list to possibly existing value."""
  65. new_value = []
  66. current_value = config.get(key, "")
  67. if current_value:
  68. new_value.append(current_value)
  69. new_value.extend(text_list)
  70. config[key] = '\n'.join(new_value)
  71. def _any_existing(file_list):
  72. return [f for f in file_list if os.path.exists(f)]
  73. # Get requirements from the first file that exists
  74. def get_reqs_from_files(requirements_files):
  75. existing = _any_existing(requirements_files)
  76. # TODO(stephenfin): Remove this in pbr 6.0+
  77. deprecated = [f for f in existing if f in PY_REQUIREMENTS_FILES]
  78. if deprecated:
  79. warnings.warn('Support for \'-pyN\'-suffixed requirements files is '
  80. 'removed in pbr 5.0 and these files are now ignored. '
  81. 'Use environment markers instead. Conflicting files: '
  82. '%r' % deprecated,
  83. DeprecationWarning)
  84. existing = [f for f in existing if f not in PY_REQUIREMENTS_FILES]
  85. for requirements_file in existing:
  86. with open(requirements_file, 'r') as fil:
  87. return fil.read().split('\n')
  88. return []
  89. def egg_fragment(match):
  90. return re.sub(r'(?P<PackageName>[\w.-]+)-'
  91. r'(?P<GlobalVersion>'
  92. r'(?P<VersionTripple>'
  93. r'(?P<Major>0|[1-9][0-9]*)\.'
  94. r'(?P<Minor>0|[1-9][0-9]*)\.'
  95. r'(?P<Patch>0|[1-9][0-9]*)){1}'
  96. r'(?P<Tags>(?:\-'
  97. r'(?P<Prerelease>(?:(?=[0]{1}[0-9A-Za-z-]{0})(?:[0]{1})|'
  98. r'(?=[1-9]{1}[0-9]*[A-Za-z]{0})(?:[0-9]+)|'
  99. r'(?=[0-9]*[A-Za-z-]+[0-9A-Za-z-]*)(?:[0-9A-Za-z-]+)){1}'
  100. r'(?:\.(?=[0]{1}[0-9A-Za-z-]{0})(?:[0]{1})|'
  101. r'\.(?=[1-9]{1}[0-9]*[A-Za-z]{0})(?:[0-9]+)|'
  102. r'\.(?=[0-9]*[A-Za-z-]+[0-9A-Za-z-]*)'
  103. r'(?:[0-9A-Za-z-]+))*){1}){0,1}(?:\+'
  104. r'(?P<Meta>(?:[0-9A-Za-z-]+(?:\.[0-9A-Za-z-]+)*))){0,1}))',
  105. r'\g<PackageName>>=\g<GlobalVersion>',
  106. match.groups()[-1])
  107. def parse_requirements(requirements_files=None, strip_markers=False):
  108. if requirements_files is None:
  109. requirements_files = get_requirements_files()
  110. requirements = []
  111. for line in get_reqs_from_files(requirements_files):
  112. # Ignore comments
  113. if (not line.strip()) or line.startswith('#'):
  114. continue
  115. # Ignore index URL lines
  116. if re.match(r'^\s*(-i|--index-url|--extra-index-url|--find-links).*',
  117. line):
  118. continue
  119. # Handle nested requirements files such as:
  120. # -r other-requirements.txt
  121. if line.startswith('-r'):
  122. req_file = line.partition(' ')[2]
  123. requirements += parse_requirements(
  124. [req_file], strip_markers=strip_markers)
  125. continue
  126. try:
  127. project_name = pkg_resources.Requirement.parse(line).project_name
  128. except ValueError:
  129. project_name = None
  130. # For the requirements list, we need to inject only the portion
  131. # after egg= so that distutils knows the package it's looking for
  132. # such as:
  133. # -e git://github.com/openstack/nova/master#egg=nova
  134. # -e git://github.com/openstack/nova/master#egg=nova-1.2.3
  135. # -e git+https://foo.com/zipball#egg=bar&subdirectory=baz
  136. # http://github.com/openstack/nova/zipball/master#egg=nova
  137. # http://github.com/openstack/nova/zipball/master#egg=nova-1.2.3
  138. # git+https://foo.com/zipball#egg=bar&subdirectory=baz
  139. # git+[ssh]://github.com/openstack/nova/zipball/master#egg=nova-1.2.3
  140. # hg+[ssh]://github.com/openstack/nova/zipball/master#egg=nova-1.2.3
  141. # svn+[proto]://github.com/openstack/nova/zipball/master#egg=nova-1.2.3
  142. # -f lines are for index locations, and don't get used here
  143. if re.match(r'\s*-e\s+', line):
  144. extract = re.match(r'\s*-e\s+(.*)$', line)
  145. line = extract.group(1)
  146. egg = urlparse(line)
  147. if egg.scheme:
  148. line = re.sub(r'egg=([^&]+).*$', egg_fragment, egg.fragment)
  149. elif re.match(r'\s*-f\s+', line):
  150. line = None
  151. reason = 'Index Location'
  152. if line is not None:
  153. line = re.sub('#.*$', '', line)
  154. if strip_markers:
  155. semi_pos = line.find(';')
  156. if semi_pos < 0:
  157. semi_pos = None
  158. line = line[:semi_pos]
  159. requirements.append(line)
  160. else:
  161. log.info(
  162. '[pbr] Excluding %s: %s' % (project_name, reason))
  163. return requirements
  164. def parse_dependency_links(requirements_files=None):
  165. if requirements_files is None:
  166. requirements_files = get_requirements_files()
  167. dependency_links = []
  168. # dependency_links inject alternate locations to find packages listed
  169. # in requirements
  170. for line in get_reqs_from_files(requirements_files):
  171. # skip comments and blank lines
  172. if re.match(r'(\s*#)|(\s*$)', line):
  173. continue
  174. # lines with -e or -f need the whole line, minus the flag
  175. if re.match(r'\s*-[ef]\s+', line):
  176. dependency_links.append(re.sub(r'\s*-[ef]\s+', '', line))
  177. # lines that are only urls can go in unmolested
  178. elif re.match(r'^\s*(https?|git(\+(https|ssh))?|svn|hg)\S*:', line):
  179. dependency_links.append(line)
  180. return dependency_links
  181. class InstallWithGit(install.install):
  182. """Extracts ChangeLog and AUTHORS from git then installs.
  183. This is useful for e.g. readthedocs where the package is
  184. installed and then docs built.
  185. """
  186. command_name = 'install'
  187. def run(self):
  188. _from_git(self.distribution)
  189. return install.install.run(self)
  190. class LocalInstall(install.install):
  191. """Runs python setup.py install in a sensible manner.
  192. Force a non-egg installed in the manner of
  193. single-version-externally-managed, which allows us to install manpages
  194. and config files.
  195. """
  196. command_name = 'install'
  197. def run(self):
  198. _from_git(self.distribution)
  199. return du_install.install.run(self)
  200. class TestrTest(testr_command.Testr):
  201. """Make setup.py test do the right thing."""
  202. command_name = 'test'
  203. description = 'DEPRECATED: Run unit tests using testr'
  204. def run(self):
  205. warnings.warn('testr integration is deprecated in pbr 4.2 and will '
  206. 'be removed in a future release. Please call your test '
  207. 'runner directly',
  208. DeprecationWarning)
  209. # Can't use super - base class old-style class
  210. testr_command.Testr.run(self)
  211. class LocalRPMVersion(setuptools.Command):
  212. __doc__ = """Output the rpm *compatible* version string of this package"""
  213. description = __doc__
  214. user_options = []
  215. command_name = "rpm_version"
  216. def run(self):
  217. log.info("[pbr] Extracting rpm version")
  218. name = self.distribution.get_name()
  219. print(version.VersionInfo(name).semantic_version().rpm_string())
  220. def initialize_options(self):
  221. pass
  222. def finalize_options(self):
  223. pass
  224. class LocalDebVersion(setuptools.Command):
  225. __doc__ = """Output the deb *compatible* version string of this package"""
  226. description = __doc__
  227. user_options = []
  228. command_name = "deb_version"
  229. def run(self):
  230. log.info("[pbr] Extracting deb version")
  231. name = self.distribution.get_name()
  232. print(version.VersionInfo(name).semantic_version().debian_string())
  233. def initialize_options(self):
  234. pass
  235. def finalize_options(self):
  236. pass
  237. def have_testr():
  238. return testr_command.have_testr
  239. try:
  240. from nose import commands
  241. class NoseTest(commands.nosetests):
  242. """Fallback test runner if testr is a no-go."""
  243. command_name = 'test'
  244. description = 'DEPRECATED: Run unit tests using nose'
  245. def run(self):
  246. warnings.warn('nose integration in pbr is deprecated. Please use '
  247. 'the native nose setuptools configuration or call '
  248. 'nose directly',
  249. DeprecationWarning)
  250. # Can't use super - base class old-style class
  251. commands.nosetests.run(self)
  252. _have_nose = True
  253. except ImportError:
  254. _have_nose = False
  255. def have_nose():
  256. return _have_nose
  257. _wsgi_text = """#PBR Generated from %(group)r
  258. import threading
  259. from %(module_name)s import %(import_target)s
  260. if __name__ == "__main__":
  261. import argparse
  262. import socket
  263. import sys
  264. import wsgiref.simple_server as wss
  265. parser = argparse.ArgumentParser(
  266. description=%(import_target)s.__doc__,
  267. formatter_class=argparse.ArgumentDefaultsHelpFormatter,
  268. usage='%%(prog)s [-h] [--port PORT] [--host IP] -- [passed options]')
  269. parser.add_argument('--port', '-p', type=int, default=8000,
  270. help='TCP port to listen on')
  271. parser.add_argument('--host', '-b', default='',
  272. help='IP to bind the server to')
  273. parser.add_argument('args',
  274. nargs=argparse.REMAINDER,
  275. metavar='-- [passed options]',
  276. help="'--' is the separator of the arguments used "
  277. "to start the WSGI server and the arguments passed "
  278. "to the WSGI application.")
  279. args = parser.parse_args()
  280. if args.args:
  281. if args.args[0] == '--':
  282. args.args.pop(0)
  283. else:
  284. parser.error("unrecognized arguments: %%s" %% ' '.join(args.args))
  285. sys.argv[1:] = args.args
  286. server = wss.make_server(args.host, args.port, %(invoke_target)s())
  287. print("*" * 80)
  288. print("STARTING test server %(module_name)s.%(invoke_target)s")
  289. url = "http://%%s:%%d/" %% (server.server_name, server.server_port)
  290. print("Available at %%s" %% url)
  291. print("DANGER! For testing only, do not use in production")
  292. print("*" * 80)
  293. sys.stdout.flush()
  294. server.serve_forever()
  295. else:
  296. application = None
  297. app_lock = threading.Lock()
  298. with app_lock:
  299. if application is None:
  300. application = %(invoke_target)s()
  301. """
  302. _script_text = """# PBR Generated from %(group)r
  303. import sys
  304. from %(module_name)s import %(import_target)s
  305. if __name__ == "__main__":
  306. sys.exit(%(invoke_target)s())
  307. """
  308. # the following allows us to specify different templates per entry
  309. # point group when generating pbr scripts.
  310. ENTRY_POINTS_MAP = {
  311. 'console_scripts': _script_text,
  312. 'gui_scripts': _script_text,
  313. 'wsgi_scripts': _wsgi_text
  314. }
  315. def generate_script(group, entry_point, header, template):
  316. """Generate the script based on the template.
  317. :param str group:
  318. The entry-point group name, e.g., "console_scripts".
  319. :param str header:
  320. The first line of the script, e.g., "!#/usr/bin/env python".
  321. :param str template:
  322. The script template.
  323. :returns:
  324. The templated script content
  325. :rtype:
  326. str
  327. """
  328. if not entry_point.attrs or len(entry_point.attrs) > 2:
  329. raise ValueError("Script targets must be of the form "
  330. "'func' or 'Class.class_method'.")
  331. script_text = template % dict(
  332. group=group,
  333. module_name=entry_point.module_name,
  334. import_target=entry_point.attrs[0],
  335. invoke_target='.'.join(entry_point.attrs),
  336. )
  337. return header + script_text
  338. def override_get_script_args(
  339. dist, executable=os.path.normpath(sys.executable)):
  340. """Override entrypoints console_script."""
  341. # get_script_header() is deprecated since Setuptools 12.0
  342. try:
  343. header = easy_install.ScriptWriter.get_header("", executable)
  344. except AttributeError:
  345. header = easy_install.get_script_header("", executable)
  346. for group, template in ENTRY_POINTS_MAP.items():
  347. for name, ep in dist.get_entry_map(group).items():
  348. yield (name, generate_script(group, ep, header, template))
  349. class LocalDevelop(develop.develop):
  350. command_name = 'develop'
  351. def install_wrapper_scripts(self, dist):
  352. if sys.platform == 'win32':
  353. return develop.develop.install_wrapper_scripts(self, dist)
  354. if not self.exclude_scripts:
  355. for args in override_get_script_args(dist):
  356. self.write_script(*args)
  357. class LocalInstallScripts(install_scripts.install_scripts):
  358. """Intercepts console scripts entry_points."""
  359. command_name = 'install_scripts'
  360. def _make_wsgi_scripts_only(self, dist, executable):
  361. # get_script_header() is deprecated since Setuptools 12.0
  362. try:
  363. header = easy_install.ScriptWriter.get_header("", executable)
  364. except AttributeError:
  365. header = easy_install.get_script_header("", executable)
  366. wsgi_script_template = ENTRY_POINTS_MAP['wsgi_scripts']
  367. for name, ep in dist.get_entry_map('wsgi_scripts').items():
  368. content = generate_script(
  369. 'wsgi_scripts', ep, header, wsgi_script_template)
  370. self.write_script(name, content)
  371. def run(self):
  372. import distutils.command.install_scripts
  373. self.run_command("egg_info")
  374. if self.distribution.scripts:
  375. # run first to set up self.outfiles
  376. distutils.command.install_scripts.install_scripts.run(self)
  377. else:
  378. self.outfiles = []
  379. ei_cmd = self.get_finalized_command("egg_info")
  380. dist = pkg_resources.Distribution(
  381. ei_cmd.egg_base,
  382. pkg_resources.PathMetadata(ei_cmd.egg_base, ei_cmd.egg_info),
  383. ei_cmd.egg_name, ei_cmd.egg_version,
  384. )
  385. bs_cmd = self.get_finalized_command('build_scripts')
  386. executable = getattr(
  387. bs_cmd, 'executable', easy_install.sys_executable)
  388. if 'bdist_wheel' in self.distribution.have_run:
  389. # We're building a wheel which has no way of generating mod_wsgi
  390. # scripts for us. Let's build them.
  391. # NOTE(sigmavirus24): This needs to happen here because, as the
  392. # comment below indicates, no_ep is True when building a wheel.
  393. self._make_wsgi_scripts_only(dist, executable)
  394. if self.no_ep:
  395. # no_ep is True if we're installing into an .egg file or building
  396. # a .whl file, in those cases, we do not want to build all of the
  397. # entry-points listed for this package.
  398. return
  399. if os.name != 'nt':
  400. get_script_args = override_get_script_args
  401. else:
  402. get_script_args = easy_install.get_script_args
  403. executable = '"%s"' % executable
  404. for args in get_script_args(dist, executable):
  405. self.write_script(*args)
  406. class LocalManifestMaker(egg_info.manifest_maker):
  407. """Add any files that are in git and some standard sensible files."""
  408. def _add_pbr_defaults(self):
  409. for template_line in [
  410. 'include AUTHORS',
  411. 'include ChangeLog',
  412. 'exclude .gitignore',
  413. 'exclude .gitreview',
  414. 'global-exclude *.pyc'
  415. ]:
  416. self.filelist.process_template_line(template_line)
  417. def add_defaults(self):
  418. """Add all the default files to self.filelist:
  419. Extends the functionality provided by distutils to also included
  420. additional sane defaults, such as the ``AUTHORS`` and ``ChangeLog``
  421. files generated by *pbr*.
  422. Warns if (``README`` or ``README.txt``) or ``setup.py`` are missing;
  423. everything else is optional.
  424. """
  425. option_dict = self.distribution.get_option_dict('pbr')
  426. sdist.sdist.add_defaults(self)
  427. self.filelist.append(self.template)
  428. self.filelist.append(self.manifest)
  429. self.filelist.extend(extra_files.get_extra_files())
  430. should_skip = options.get_boolean_option(option_dict, 'skip_git_sdist',
  431. 'SKIP_GIT_SDIST')
  432. if not should_skip:
  433. rcfiles = git._find_git_files()
  434. if rcfiles:
  435. self.filelist.extend(rcfiles)
  436. elif os.path.exists(self.manifest):
  437. self.read_manifest()
  438. ei_cmd = self.get_finalized_command('egg_info')
  439. self._add_pbr_defaults()
  440. self.filelist.include_pattern("*", prefix=ei_cmd.egg_info)
  441. class LocalEggInfo(egg_info.egg_info):
  442. """Override the egg_info command to regenerate SOURCES.txt sensibly."""
  443. command_name = 'egg_info'
  444. def find_sources(self):
  445. """Generate SOURCES.txt only if there isn't one already.
  446. If we are in an sdist command, then we always want to update
  447. SOURCES.txt. If we are not in an sdist command, then it doesn't
  448. matter one flip, and is actually destructive.
  449. However, if we're in a git context, it's always the right thing to do
  450. to recreate SOURCES.txt
  451. """
  452. manifest_filename = os.path.join(self.egg_info, "SOURCES.txt")
  453. if (not os.path.exists(manifest_filename) or
  454. os.path.exists('.git') or
  455. 'sdist' in sys.argv):
  456. log.info("[pbr] Processing SOURCES.txt")
  457. mm = LocalManifestMaker(self.distribution)
  458. mm.manifest = manifest_filename
  459. mm.run()
  460. self.filelist = mm.filelist
  461. else:
  462. log.info("[pbr] Reusing existing SOURCES.txt")
  463. self.filelist = egg_info.FileList()
  464. with open(manifest_filename, 'r') as fil:
  465. for entry in fil.read().split('\n'):
  466. self.filelist.append(entry)
  467. def _from_git(distribution):
  468. option_dict = distribution.get_option_dict('pbr')
  469. changelog = git._iter_log_oneline()
  470. if changelog:
  471. changelog = git._iter_changelog(changelog)
  472. git.write_git_changelog(option_dict=option_dict, changelog=changelog)
  473. git.generate_authors(option_dict=option_dict)
  474. class LocalSDist(sdist.sdist):
  475. """Builds the ChangeLog and Authors files from VC first."""
  476. command_name = 'sdist'
  477. def checking_reno(self):
  478. """Ensure reno is installed and configured.
  479. We can't run reno-based commands if reno isn't installed/available, and
  480. don't want to if the user isn't using it.
  481. """
  482. if hasattr(self, '_has_reno'):
  483. return self._has_reno
  484. option_dict = self.distribution.get_option_dict('pbr')
  485. should_skip = options.get_boolean_option(option_dict, 'skip_reno',
  486. 'SKIP_GENERATE_RENO')
  487. if should_skip:
  488. self._has_reno = False
  489. return False
  490. try:
  491. # versions of reno witout this module will not have the required
  492. # feature, hence the import
  493. from reno import setup_command # noqa
  494. except ImportError:
  495. log.info('[pbr] reno was not found or is too old. Skipping '
  496. 'release notes')
  497. self._has_reno = False
  498. return False
  499. conf, output_file, cache_file = setup_command.load_config(
  500. self.distribution)
  501. if not os.path.exists(os.path.join(conf.reporoot, conf.notespath)):
  502. log.info('[pbr] reno does not appear to be configured. Skipping '
  503. 'release notes')
  504. self._has_reno = False
  505. return False
  506. self._files = [output_file, cache_file]
  507. log.info('[pbr] Generating release notes')
  508. self._has_reno = True
  509. return True
  510. sub_commands = [('build_reno', checking_reno)] + sdist.sdist.sub_commands
  511. def run(self):
  512. _from_git(self.distribution)
  513. # sdist.sdist is an old style class, can't use super()
  514. sdist.sdist.run(self)
  515. def make_distribution(self):
  516. # This is included in make_distribution because setuptools doesn't use
  517. # 'get_file_list'. As such, this is the only hook point that runs after
  518. # the commands in 'sub_commands'
  519. if self.checking_reno():
  520. self.filelist.extend(self._files)
  521. self.filelist.sort()
  522. sdist.sdist.make_distribution(self)
  523. LocalBuildDoc = None
  524. def have_sphinx():
  525. return False
  526. def _get_increment_kwargs(git_dir, tag):
  527. """Calculate the sort of semver increment needed from git history.
  528. Every commit from HEAD to tag is consider for Sem-Ver metadata lines.
  529. See the pbr docs for their syntax.
  530. :return: a dict of kwargs for passing into SemanticVersion.increment.
  531. """
  532. result = {}
  533. if tag:
  534. version_spec = tag + "..HEAD"
  535. else:
  536. version_spec = "HEAD"
  537. # Get the raw body of the commit messages so that we don't have to
  538. # parse out any formatting whitespace and to avoid user settings on
  539. # git log output affecting out ability to have working sem ver headers.
  540. changelog = git._run_git_command(['log', '--pretty=%B', version_spec],
  541. git_dir)
  542. symbols = set()
  543. header = 'sem-ver:'
  544. for line in changelog.split("\n"):
  545. line = line.lower().strip()
  546. if not line.lower().strip().startswith(header):
  547. continue
  548. new_symbols = line[len(header):].strip().split(",")
  549. symbols.update([symbol.strip() for symbol in new_symbols])
  550. def _handle_symbol(symbol, symbols, impact):
  551. if symbol in symbols:
  552. result[impact] = True
  553. symbols.discard(symbol)
  554. _handle_symbol('bugfix', symbols, 'patch')
  555. _handle_symbol('feature', symbols, 'minor')
  556. _handle_symbol('deprecation', symbols, 'minor')
  557. _handle_symbol('api-break', symbols, 'major')
  558. for symbol in symbols:
  559. log.info('[pbr] Unknown Sem-Ver symbol %r' % symbol)
  560. # We don't want patch in the kwargs since it is not a keyword argument -
  561. # its the default minimum increment.
  562. result.pop('patch', None)
  563. return result
  564. def _get_revno_and_last_tag(git_dir):
  565. """Return the commit data about the most recent tag.
  566. We use git-describe to find this out, but if there are no
  567. tags then we fall back to counting commits since the beginning
  568. of time.
  569. """
  570. changelog = git._iter_log_oneline(git_dir=git_dir)
  571. row_count = 0
  572. for row_count, (ignored, tag_set, ignored) in enumerate(changelog):
  573. version_tags = set()
  574. semver_to_tag = dict()
  575. for tag in list(tag_set):
  576. try:
  577. semver = version.SemanticVersion.from_pip_string(tag)
  578. semver_to_tag[semver] = tag
  579. version_tags.add(semver)
  580. except Exception:
  581. pass
  582. if version_tags:
  583. return semver_to_tag[max(version_tags)], row_count
  584. return "", row_count
  585. def _get_version_from_git_target(git_dir, target_version):
  586. """Calculate a version from a target version in git_dir.
  587. This is used for untagged versions only. A new version is calculated as
  588. necessary based on git metadata - distance to tags, current hash, contents
  589. of commit messages.
  590. :param git_dir: The git directory we're working from.
  591. :param target_version: If None, the last tagged version (or 0 if there are
  592. no tags yet) is incremented as needed to produce an appropriate target
  593. version following semver rules. Otherwise target_version is used as a
  594. constraint - if semver rules would result in a newer version then an
  595. exception is raised.
  596. :return: A semver version object.
  597. """
  598. tag, distance = _get_revno_and_last_tag(git_dir)
  599. last_semver = version.SemanticVersion.from_pip_string(tag or '0')
  600. if distance == 0:
  601. new_version = last_semver
  602. else:
  603. new_version = last_semver.increment(
  604. **_get_increment_kwargs(git_dir, tag))
  605. if target_version is not None and new_version > target_version:
  606. raise ValueError(
  607. "git history requires a target version of %(new)s, but target "
  608. "version is %(target)s" %
  609. dict(new=new_version, target=target_version))
  610. if distance == 0:
  611. return last_semver
  612. new_dev = new_version.to_dev(distance)
  613. if target_version is not None:
  614. target_dev = target_version.to_dev(distance)
  615. if target_dev > new_dev:
  616. return target_dev
  617. return new_dev
  618. def _get_version_from_git(pre_version=None):
  619. """Calculate a version string from git.
  620. If the revision is tagged, return that. Otherwise calculate a semantic
  621. version description of the tree.
  622. The number of revisions since the last tag is included in the dev counter
  623. in the version for untagged versions.
  624. :param pre_version: If supplied use this as the target version rather than
  625. inferring one from the last tag + commit messages.
  626. """
  627. git_dir = git._run_git_functions()
  628. if git_dir:
  629. try:
  630. tagged = git._run_git_command(
  631. ['describe', '--exact-match'], git_dir,
  632. throw_on_error=True).replace('-', '.')
  633. target_version = version.SemanticVersion.from_pip_string(tagged)
  634. except Exception:
  635. if pre_version:
  636. # not released yet - use pre_version as the target
  637. target_version = version.SemanticVersion.from_pip_string(
  638. pre_version)
  639. else:
  640. # not released yet - just calculate from git history
  641. target_version = None
  642. result = _get_version_from_git_target(git_dir, target_version)
  643. return result.release_string()
  644. # If we don't know the version, return an empty string so at least
  645. # the downstream users of the value always have the same type of
  646. # object to work with.
  647. try:
  648. return unicode()
  649. except NameError:
  650. return ''
  651. def _get_version_from_pkg_metadata(package_name):
  652. """Get the version from package metadata if present.
  653. This looks for PKG-INFO if present (for sdists), and if not looks
  654. for METADATA (for wheels) and failing that will return None.
  655. """
  656. pkg_metadata_filenames = ['PKG-INFO', 'METADATA']
  657. pkg_metadata = {}
  658. for filename in pkg_metadata_filenames:
  659. try:
  660. with open(filename, 'r') as pkg_metadata_file:
  661. pkg_metadata = email.message_from_file(pkg_metadata_file)
  662. except (IOError, OSError, email.errors.MessageError):
  663. continue
  664. # Check to make sure we're in our own dir
  665. if pkg_metadata.get('Name', None) != package_name:
  666. return None
  667. return pkg_metadata.get('Version', None)
  668. def get_version(package_name, pre_version=None):
  669. """Get the version of the project.
  670. First, try getting it from PKG-INFO or METADATA, if it exists. If it does,
  671. that means we're in a distribution tarball or that install has happened.
  672. Otherwise, if there is no PKG-INFO or METADATA file, pull the version
  673. from git.
  674. We do not support setup.py version sanity in git archive tarballs, nor do
  675. we support packagers directly sucking our git repo into theirs. We expect
  676. that a source tarball be made from our git repo - or that if someone wants
  677. to make a source tarball from a fork of our repo with additional tags in it
  678. that they understand and desire the results of doing that.
  679. :param pre_version: The version field from setup.cfg - if set then this
  680. version will be the next release.
  681. """
  682. version = os.environ.get(
  683. "PBR_VERSION",
  684. os.environ.get("OSLO_PACKAGE_VERSION", None))
  685. if version:
  686. return version
  687. version = _get_version_from_pkg_metadata(package_name)
  688. if version:
  689. return version
  690. version = _get_version_from_git(pre_version)
  691. # Handle http://bugs.python.org/issue11638
  692. # version will either be an empty unicode string or a valid
  693. # unicode version string, but either way it's unicode and needs to
  694. # be encoded.
  695. if sys.version_info[0] == 2:
  696. version = version.encode('utf-8')
  697. if version:
  698. return version
  699. raise Exception("Versioning for this project requires either an sdist"
  700. " tarball, or access to an upstream git repository."
  701. " It's also possible that there is a mismatch between"
  702. " the package name in setup.cfg and the argument given"
  703. " to pbr.version.VersionInfo. Project name {name} was"
  704. " given, but was not able to be found.".format(
  705. name=package_name))
  706. # This is added because pbr uses pbr to install itself. That means that
  707. # any changes to the egg info writer entrypoints must be forward and
  708. # backward compatible. This maintains the pbr.packaging.write_pbr_json
  709. # path.
  710. write_pbr_json = pbr.pbr_json.write_pbr_json