13200: remove git tag from gittaggers
[arvados.git] / sdk / python / gittaggers.py
1 # Copyright (C) The Arvados Authors. All rights reserved.
2 #
3 # SPDX-License-Identifier: Apache-2.0
4
5 from setuptools.command.egg_info import egg_info
6 import subprocess
7 import time
8
9 class EggInfoFromGit(egg_info):
10     """Tag the build with git commit timestamp.
11
12     If a build tag has already been set (e.g., "egg_info -b", building
13     from source package), leave it alone.
14     """
15
16     def git_timestamp_tag(self):
17         gitinfo = subprocess.check_output(
18             ['git', 'log', '--first-parent', '--max-count=1',
19              '--format=format:%ct', '.']).strip()
20         return time.strftime('.%Y%m%d%H%M%S', time.gmtime(int(gitinfo)))
21
22     def tags(self):
23         if self.tag_build is None:
24             self.tag_build = self.git_timestamp_tag()
25         return egg_info.tags(self)