mirror of
https://github.com/brl/mutter.git
synced 2024-11-21 23:50:41 -05:00
2.21.8 release.
svn path=/trunk/; revision=3544
This commit is contained in:
parent
ea2d79fbfb
commit
1177b13338
@ -61,6 +61,9 @@ def check_we_are_up_to_date():
|
||||
changed = []
|
||||
for line in commands.getoutput('/usr/bin/svn status').split('\n'):
|
||||
if line!='' and (line[0]=='C' or line[0]=='M'):
|
||||
if line.find('release-wrangler.py')==-1:
|
||||
# we should be insensitive to changes in this script itself
|
||||
# to avoid chicken-and-egg problems
|
||||
changed.append(line[1:].lstrip())
|
||||
|
||||
if changed:
|
||||
@ -322,7 +325,7 @@ def increment_version(version):
|
||||
changelog_and_checkin('configure.in', 'Post-release bump to %(major)s.%(minor)s.%(micro_next)s.' % version)
|
||||
|
||||
def tag_the_release(version):
|
||||
version['ucname'] = name.upper()
|
||||
version['ucname'] = version['name'].upper()
|
||||
if os.system("svn cp -m release . svn+ssh://svn.gnome.org/svn/%(name)s/tags/%(ucname)s_%(major)s_%(minor)_%(micro)" % (version))!=0:
|
||||
report_error("Could not tag; bailing.")
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user