3 Script to prepare the release of Gaudi. 5 @author Marco Clemencic 7 from __future__
import print_function
13 from subprocess
import check_output, CalledProcessError
18 Ensure we have a usable version of Git (>= 1.7.9.1). 21 * https://raw.githubusercontent.com/git/git/master/Documentation/RelNotes/1.7.9.1.txt 22 * https://github.com/git/git/commit/36ed1913e1d5de0930e59db6eeec3ccb2bd58bd9 24 version = check_output([
'git',
'--version']).split()[-1]
27 'bad version of git found: %s (1.7.9.1 required)' % version)
30 _VK_RE = re.compile(
r'(\d+|\D+)')
35 Key function to be passes to list.sort() to sort strings 39 int(i)
if i[0]
in '0123456789' else i
for i
in _VK_RE.split(x)
if i
45 Return the latest Gaudi tag (of the format "v*r*..."). 47 logging.info(
'looking for latest tag')
49 logging.debug(
'using command %r', cmd)
50 output = check_output(cmd)
51 vers_exp = re.compile(
r'^v\d+r\d+(p\d+)?$')
52 tags = [tag
for tag
in output.splitlines()
if vers_exp.match(tag)]
54 tags.sort(key=versionKey)
55 logging.info(
'found %s', tags[-1])
57 logging.info(
'no valid tag found')
62 Return the release notes (in the old LHCb format) extracted from git 63 commits for a given path. 66 'git',
'log',
'--first-parent',
'--date=short',
67 '--pretty=format:! %ad - commit %h%n%n%w(80,1,3)- %s%n%n%b%n' 70 cmd.append(
'{0}..{1}'.
format(from_tag, branch
or ''))
75 logging.info(
'preparing release notes for %s%s', path,
76 ' since ' + from_tag
if from_tag
else '')
77 logging.debug(
'using command %r', cmd)
79 out = check_output(cmd).replace(
'\r',
'')
82 def add_contributors(match):
88 '--pretty=format:%aN',
89 '{0}^1..{0}^2'.
format(match.group(1)),
91 return ' - {0} (commit {1})'.
format(
', '.join(sorted(authors)),
93 except CalledProcessError:
96 out = re.sub(
r' - commit ([0-9a-f]+)', add_contributors, out)
102 Smartly prepend the content of notes to the release.notes file in path. 104 notes_filename = os.path.join(path,
'doc',
'release.notes')
105 logging.info(
'updating %s', notes_filename)
106 from itertools
import takewhile, dropwhile
108 def dropuntil(predicate, iterable):
109 return dropwhile(
lambda x:
not predicate(x), iterable)
111 with open(notes_filename)
as notes_file:
112 orig_data = iter(list(notes_file))
113 header = takewhile(str.strip, orig_data)
114 with open(notes_filename,
'w')
as notes_file:
115 notes_file.writelines(header)
116 notes_file.write(
'\n')
117 notes_file.writelines(l.rstrip() +
'\n' for l
in notes.splitlines())
118 notes_file.write(
'\n')
119 notes_file.writelines(
120 dropuntil(re.compile(
r'^!?============').match, orig_data))
124 title =
' %s %s ' % (pkg, version)
125 letf_chars = (78 - len(title)) / 2
126 right_chars = 78 - letf_chars - len(title)
127 separator = (
'=' * letf_chars) + title + (
'=' * right_chars)
132 logging.basicConfig(level=logging.DEBUG)
133 os.chdir(os.path.dirname(os.path.dirname(os.path.abspath(__file__))))
135 for l
in open(
'toolchain.cmake'):
136 m = re.match(
r'^\s*set\(\s*heptools_version\s+(\S*)\s*\)', l)
138 HEPToolsVers = m.group(1)
139 print(
"Using HEPTools", HEPToolsVers)
142 logging.error(
'Cannot find HEPTools version')
147 for dirpath, dirnames, filenames
in os.walk(os.curdir):
148 if 'CMakeLists.txt' in filenames
and dirpath != os.curdir:
153 dirname
for dirname
in dirnames
154 if (
not dirname.startswith(
'build.')
and dirname !=
'cmake' 161 old_version = latest_tag.split(
'_')[-1]
162 new_version = raw_input((
"The old version of the project is %s, " 163 "which is the new one? ") % old_version)
167 for pkgdir
in all_subdirs():
171 pkgdir, latest_tag,
'master'))
175 for l
in open(
'CMakeLists.txt'):
176 if l.strip().startswith(
'gaudi_project'):
177 l =
'gaudi_project(Gaudi %s)\n' % new_version
179 open(
'CMakeLists.txt',
"w").writelines(out)
182 if __name__ ==
'__main__':
GAUDI_API std::string format(const char *,...)
MsgStream format utility "a la sprintf(...)".
def releaseNotes(path=os.curdir, from_tag=None, branch=None)
def tag_bar(pkg, version=None)
def updateReleaseNotes(path, notes)