Check for uncommitted changes.
[dcpomatic.git] / release
1 #!/usr/bin/python
2
3 import os
4 import sys
5 import datetime
6 import shutil
7 import version
8 import argparse
9
10 parser = argparse.ArgumentParser(description = "Build and tag a release.")
11 parser.add_argument('-f', '--full', dest='full', action='store_const', const=True, help="full release", default=False)
12 parser.add_argument('-b', '--beta', dest='beta', action='store_const', const=True, help="beta release", default=False)
13 parser.add_argument('-d', '--debug', dest='debug', action='store_const', const=True, help="show commands but don't do anything", default=False)
14 args = parser.parse_args()
15
16 if not args.full and not args.beta:
17     print "%s: must specify --full or --beta" % sys.argv[0]
18     sys.exit(1)
19
20 def command(c):
21     if not args.debug:
22         os.system(c)
23     print c
24
25 def check_diff_with_user():
26     print "Planning to commit... ok? [y/n]"
27     command("git diff")
28     if (raw_input() != "y"):
29         command("git reset --hard")
30         print 'Aborted'
31         sys.exit(1)
32
33 if os.popen('git status -s').read() != '':
34     print '%s: uncommitted changes exist.' % sys.argv[0]
35     sys.exit(1)
36
37 new_version = version.rewrite_wscript(version.Version.to_release)
38 version.append_to_changelog(new_version)
39
40 command("./waf clean")
41 command("./waf")
42 command("./waf configure")
43 command("./waf dist")
44 command("./builds/windows-32")
45 shutil.copy(os.path.join('build', 'windows', 'DVD-o-matic %s 32-bit Installer.exe' % new_version), '.')
46 command("./builds/windows-64")
47 shutil.copy(os.path.join('build', 'windows', 'DVD-o-matic %s 64-bit Installer.exe' % new_version), '.')
48
49 check_diff_with_user()
50
51 command("git commit -a -m \"Bump version\"")
52 command("git tag -m \"v%s\" v%s" % (new_version, new_version))
53
54 version.rewrite_wscript(version.Version.bump_and_to_pre)
55
56 check_diff_with_user()
57
58 command("git commit -a -m \"Bump version\"")
59
60 command("cp DVD-o-matic*.exe dvdomatic-*.tar.bz2 /home/carl/public_html/carlh.net/software/dvdomatic")