summaryrefslogtreecommitdiff
path: root/Tools
diff options
context:
space:
mode:
authorWilliam S Fulton <wsf@fultondesigns.co.uk>2019-04-08 19:07:53 +0100
committerWilliam S Fulton <wsf@fultondesigns.co.uk>2019-04-08 19:20:50 +0100
commit66d5d76a29f5323aeb1a3cb204d02c8385fe6bf6 (patch)
tree496083948711b7a2999bde355d3409baf71d6351 /Tools
parent320254eb140f50dda2960a3b8fcf8f7bee5668cd (diff)
downloadswig-66d5d76a29f5323aeb1a3cb204d02c8385fe6bf6.tar.gz
mkrelease.py improvements
Make python3 compatible. Add optional command line arguments.
Diffstat (limited to 'Tools')
-rwxr-xr-xTools/mkrelease.py65
1 files changed, 36 insertions, 29 deletions
diff --git a/Tools/mkrelease.py b/Tools/mkrelease.py
index ec9a2b76a..014cef227 100755
--- a/Tools/mkrelease.py
+++ b/Tools/mkrelease.py
@@ -1,49 +1,56 @@
#!/usr/bin/env python
-# This script builds the SWIG source tarball, creates the Windows executable and the Windows zip package
-# and uploads them both to SF ready for release. Also uploaded are the release notes.
import sys
-import string
import os
def failed(message):
if message == "":
- print "mkrelease.py failed to complete"
+ print("mkrelease.py failed to complete")
else:
- print message
+ print(message)
sys.exit(2)
-try:
- version = sys.argv[1]
- branch = sys.argv[2]
- username = sys.argv[3]
-except:
- print "Usage: python mkrelease.py version branch username"
- print "where version should be x.y.z and username is your SF username"
- sys.exit(1)
-
-print "Looking for rsync"
+import argparse
+parser = argparse.ArgumentParser(description="Build a SWIG distribution source tarball swig-x.y.z.tar.gz and the Windows zip package swigwin-x.y.z.zip.\nUpload them both to SourceForge ready for release.\nThe release notes are also uploaded.")
+parser.add_argument("version", help="version string in format x.y.z")
+parser.add_argument("-b", "--branch", required=False, default="master", help="git branch name to create tarball from [master]")
+parser.add_argument("-f", "--force-tag", required=False, action="store_true", help="force tag (replace git tag if it already exists)")
+parser.add_argument("-s", "--skip-checks", required=False, action="store_true", help="skip checks (that local and remote repos are in sync)")
+parser.add_argument("-u", "--username", required=False, help="SourceForge username (upload to SourceForge will be skipped if not provided)")
+args = parser.parse_args()
+
+version = args.version
+branch = args.branch
+dirname = "swig-" + version
+force_tag = args.force_tag
+skip_checks = args.skip_checks
+username = args.username
+
+print("Looking for rsync")
os.system("which rsync") and failed("rsync not installed/found. Please install.")
-print "Making source tarball"
-os.system("python ./mkdist.py " + version + " " + branch) and failed("")
+print("Making source tarball")
+force = "--force-tag" if force_tag else ""
+skip = "--skip-checks" if skip_checks else ""
+os.system("python ./mkdist.py {} {} --branch {} {}".format(force, skip, branch, version)) and failed("")
-print "Build Windows package"
+print("Build Windows package")
os.system("./mkwindows.sh " + version) and failed("")
-print "Uploading to SourceForge"
+if username:
+ print("Uploading to SourceForge")
-swig_dir_sf = username + ",swig@frs.sourceforge.net:/home/frs/project/s/sw/swig/swig/swig-" + version + "/"
-swigwin_dir_sf = username + ",swig@frs.sourceforge.net:/home/frs/project/s/sw/swig/swigwin/swigwin-" + version + "/"
+ swig_dir_sf = username + ",swig@frs.sourceforge.net:/home/frs/project/s/sw/swig/swig/swig-" + version + "/"
+ swigwin_dir_sf = username + ",swig@frs.sourceforge.net:/home/frs/project/s/sw/swig/swigwin/swigwin-" + version + "/"
-# If a file with 'readme' in the name exists in the same folder as the zip/tarball, it gets automatically displayed as the release notes by SF
-full_readme_file = "readme-" + version + ".txt"
-os.system("rm -f " + full_readme_file)
-os.system("cat swig-" + version + "/README " + "swig-" + version + "/CHANGES.current " + "swig-" + version + "/RELEASENOTES " + "> " + full_readme_file)
+ # If a file with 'readme' in the name exists in the same folder as the zip/tarball, it gets automatically displayed as the release notes by SF
+ full_readme_file = "readme-" + version + ".txt"
+ os.system("rm -f " + full_readme_file)
+ os.system("cat swig-" + version + "/README " + "swig-" + version + "/CHANGES.current " + "swig-" + version + "/RELEASENOTES " + "> " + full_readme_file)
-os.system("rsync --archive --verbose -P --times -e ssh " + "swig-" + version + ".tar.gz " + full_readme_file + " " + swig_dir_sf) and failed("")
-os.system("rsync --archive --verbose -P --times -e ssh " + "swigwin-" + version + ".zip " + full_readme_file + " " + swigwin_dir_sf) and failed("")
+ os.system("rsync --archive --verbose -P --times -e ssh " + "swig-" + version + ".tar.gz " + full_readme_file + " " + swig_dir_sf) and failed("")
+ os.system("rsync --archive --verbose -P --times -e ssh " + "swigwin-" + version + ".zip " + full_readme_file + " " + swigwin_dir_sf) and failed("")
-print "Finished"
+ print("Finished")
-print "Now log in to SourceForge and set the operating systems applicable to the newly uploaded tarball and zip file. Also remember to do a 'git push --tags'."
+ print("Now log in to SourceForge and set the operating systems applicable to the newly uploaded tarball and zip file. Also remember to do a 'git push --tags'.")