2012-04-25 22:29:19 +02:00
|
|
|
#!/usr/bin/env python
|
|
|
|
# -*- coding: utf-8 -*-
|
|
|
|
"""
|
|
|
|
:copyright: 2011, 2012 by OpenSlides team, see AUTHORS.
|
|
|
|
:license: GNU GPL, see LICENSE for more details.
|
|
|
|
"""
|
|
|
|
|
2012-10-23 02:03:47 +02:00
|
|
|
VERSION = (1, 3, 0, 'alpha', 1)
|
|
|
|
|
2011-07-31 10:46:29 +02:00
|
|
|
|
2012-02-09 13:43:39 +01:00
|
|
|
def get_version(version=None):
|
2012-10-23 02:03:47 +02:00
|
|
|
"""
|
|
|
|
Derives a PEP386-compliant version number from VERSION. Adds id of
|
|
|
|
the current git commit.
|
|
|
|
"""
|
2012-02-09 13:43:39 +01:00
|
|
|
if version is None:
|
|
|
|
version = VERSION
|
|
|
|
assert len(version) == 5
|
|
|
|
assert version[3] in ('alpha', 'beta', 'rc', 'final')
|
2011-07-31 10:46:29 +02:00
|
|
|
|
2012-02-09 13:43:39 +01:00
|
|
|
# Now build the two parts of the version number:
|
|
|
|
# main = X.Y[.Z]
|
2012-10-23 02:03:47 +02:00
|
|
|
# sub = {a|b|c}N for alpha, beta and rc releases
|
|
|
|
# git's commit id is added
|
|
|
|
|
|
|
|
main_parts = 2 if version[2] == 0 else 3
|
|
|
|
main = '.'.join(str(x) for x in version[:main_parts])
|
|
|
|
|
|
|
|
if version[3] != 'final':
|
|
|
|
mapping = {'alpha': 'a', 'beta': 'b', 'rc': 'c'}
|
|
|
|
sub = mapping[version[3]] + str(version[4])
|
|
|
|
try:
|
|
|
|
git_head_path = '.git/' + open('.git/HEAD', 'r').read()[5:].rstrip()
|
|
|
|
except IOError:
|
|
|
|
git_commit_id = 'unknown'
|
2012-04-13 16:47:40 +02:00
|
|
|
else:
|
2012-10-23 02:03:47 +02:00
|
|
|
import os
|
|
|
|
git_commit_id = open(os.path.abspath(git_head_path), 'r').read().rstrip()
|
|
|
|
sub = '%s commit %s' % (sub, git_commit_id)
|
|
|
|
else:
|
|
|
|
sub = ''
|
2011-07-31 10:46:29 +02:00
|
|
|
|
2012-02-09 13:43:39 +01:00
|
|
|
return main + sub
|