pbr_json.py 1.2 KB

12345678910111213141516171819202122232425262728293031323334
  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. import json
  17. from pbr import git
  18. def write_pbr_json(cmd, basename, filename):
  19. if not hasattr(cmd.distribution, 'pbr') or not cmd.distribution.pbr:
  20. return
  21. git_dir = git._run_git_functions()
  22. if not git_dir:
  23. return
  24. values = dict()
  25. git_version = git.get_git_short_sha(git_dir)
  26. is_release = git.get_is_release(git_dir)
  27. if git_version is not None:
  28. values['git_version'] = git_version
  29. values['is_release'] = is_release
  30. cmd.write_file('pbr', filename, json.dumps(values, sort_keys=True))