]> git.donarmstrong.com Git - lilypond.git/blob - bin/release.py
release: 0.1.25
[lilypond.git] / bin / release.py
1 #!@PYTHON@
2
3 from lilypython import *
4 import makepatch
5
6
7 os.chdir(lilydirs.topdir)
8 os.system('make dist')
9 cur_ver = lilydirs.version_tuple()
10
11 os.rename('out/' + tarball(cur_ver), released_tarball(cur_ver))
12 os.chdir('../test')
13 os.system('rm ../test/*gz')
14 os.link(released_tarball(cur_ver), tarball(cur_ver))
15
16
17 makepatch.main()
18 os.system('gzip -9 patch*')
19 os.system('tar cf updeet *gz')