6 from optparse
import OptionParser
8 lhcb_ver_style =
"v(?P<maj_ver>[0-9]+)r(?P<min_ver>[0-9]+)(?:p(?P<pat_ver>[0-9]+))?" 9 atlas_ver_style =
"[A-Za-z]+\-(?P<maj_ver>[0-9]+)\-(?P<min_ver>[0-9]+)(?:\-(?P<pat_ver>[0-9]+))?" 10 plain_ver_style =
"(?P<maj_ver>[0-9]+)\.(?P<min_ver>[0-9]+)(?:\.(?P<pat_ver>[0-9]+))?" 14 parser = OptionParser(
15 usage=
"ERROR: Usage %prog <project> <version> <outputfile>")
16 parser.add_option(
"-q",
"--quiet", action=
"store_true",
17 help=
"Do not print messages.")
18 opts, args = parser.parse_args()
20 parser.error(
"wrong number of arguments")
22 project, version, outputfile = args
24 print "Creating %s for %s %s" % (outputfile, project, version)
26 for style
in [lhcb_ver_style, atlas_ver_style, plain_ver_style]:
27 m = re.match(style, version)
29 majver = int(m.groupdict()[
'maj_ver'])
30 minver = int(m.groupdict()[
'min_ver'])
31 patver = int(m.groupdict()[
'pat_ver']
or 0)
36 majver, minver, patver = 999, 999, 0
38 outdir = os.path.dirname(outputfile)
39 if not os.path.exists(outdir):
41 print "Creating directory", outdir
45 outputdata =
"""#ifndef %(proj)s_VERSION 46 /* Automatically generated file: do not modify! */ 47 #ifndef CALC_GAUDI_VERSION 48 #define CALC_GAUDI_VERSION(maj,min) (((maj) << 16) + (min)) 50 #define %(proj)s_MAJOR_VERSION %(maj)d 51 #define %(proj)s_MINOR_VERSION %(min)d 52 #define %(proj)s_PATCH_VERSION %(pat)d 53 #define %(proj)s_VERSION CALC_GAUDI_VERSION(%(proj)s_MAJOR_VERSION,%(proj)s_MINOR_VERSION) 55 """ % {
'proj': project.upper(),
'min': minver,
'maj': majver,
'pat': patver}
59 f = open(outputfile,
"r") 66 if outputdata != olddata:
67 open(outputfile,
"w").
write(outputdata)
70 if __name__ ==
"__main__":