X-Git-Url: https://git.carlh.net/gitweb/?a=blobdiff_plain;f=wscript;h=fefe14c602a4b8e39a62692162be8d7e191babe3;hb=09c0b4dc1566f11f35ec05be415be1b95bd9976c;hp=8c3b4548ac39338b7f821483a603f74dbe4fe7f5;hpb=566e3116baeb4b83163d2ca7c0fbddf421940d3d;p=dcpomatic.git diff --git a/wscript b/wscript index 8c3b4548a..fefe14c60 100644 --- a/wscript +++ b/wscript @@ -39,6 +39,12 @@ APPNAME = 'dcpomatic' this_version = subprocess.Popen(shlex.split('git tag -l --points-at HEAD'), stdout=subprocess.PIPE).communicate()[0] last_version = subprocess.Popen(shlex.split('git describe --tags --abbrev=0'), stdout=subprocess.PIPE).communicate()[0] +# Python 2/3 compatibility; I don't really understand what's going on here +if not isinstance(this_version, str): + this_version = this_version.decode('utf-8') +if not isinstance(last_version, str): + last_version = last_version.decode('utf-8') + if this_version == '': VERSION = '%sdevel' % last_version[1:].strip() else: @@ -551,10 +557,9 @@ def configure(conf): Logs.pprint('YELLOW', '') def download_supporters(can_fail): - last_date = subprocess.Popen(shlex.split('git log -1 --format=%%ai %s' % last_version), stdout=subprocess.PIPE).communicate()[0] - r = os.system('curl -m 2 -s -f https://dcpomatic.com/supporters.cc?%s > src/wx/supporters.cc' % urlencode({"until": last_date.strip()})) + r = os.system('curl -m 2 -s -f https://dcpomatic.com/supporters.cc > src/wx/supporters.cc') if (r >> 8) == 0: - r = os.system('curl -s -f https://dcpomatic.com/subscribers.cc?%s > src/wx/subscribers.cc' % urlencode({"until": last_date.strip()})) + r = os.system('curl -s -f https://dcpomatic.com/subscribers.cc > src/wx/subscribers.cc') if (r >> 8) != 0: if can_fail: raise Exception("Could not download supporters lists (%d)" % (r >> 8)) @@ -605,7 +610,7 @@ def dist(ctx): if r is not None: f = open('.git_revision', 'w') print(r, file=f) - f.close() + f.close() ctx.excl = """ TODO core *~ src/wx/*~ src/lib/*~ builds/*~ doc/manual/*~ src/tools/*~ *.pyc .waf* build .git