2013-07-16 11:28:28 +00:00
|
|
|
#!/usr/bin/env python
|
|
|
|
|
|
|
|
# This script simply downloads waf to the current directory
|
|
|
|
|
|
|
|
from __future__ import print_function
|
2013-11-24 21:01:03 +00:00
|
|
|
import os, sys, stat, hashlib, subprocess
|
|
|
|
|
2014-06-18 02:27:04 +00:00
|
|
|
WAFRELEASE = "waf-1.7.16"
|
|
|
|
WAFURL = "http://ftp.waf.io/pub/release/" + WAFRELEASE
|
|
|
|
SHA256HASH = "b64dc26c882572415fd450b745006107965f3fe17b357e3eb43d6676c9635a61"
|
2013-07-16 11:28:28 +00:00
|
|
|
|
2013-11-24 16:00:12 +00:00
|
|
|
if os.path.exists("waf"):
|
2013-11-26 20:34:02 +00:00
|
|
|
wafver = subprocess.check_output(['./waf', '--version']).decode()
|
|
|
|
if WAFRELEASE.split('-')[1] == wafver.split(' ')[1]:
|
|
|
|
print("Found 'waf', skipping download.")
|
|
|
|
sys.exit(0)
|
2013-11-24 16:00:12 +00:00
|
|
|
|
2013-07-16 11:28:28 +00:00
|
|
|
try:
|
|
|
|
from urllib.request import urlopen
|
|
|
|
except:
|
|
|
|
from urllib2 import urlopen
|
|
|
|
|
2013-11-24 16:00:12 +00:00
|
|
|
print("Downloading %s..." % WAFURL)
|
|
|
|
waf = urlopen(WAFURL).read()
|
2013-07-16 11:28:28 +00:00
|
|
|
|
|
|
|
if SHA256HASH == hashlib.sha256(waf).hexdigest():
|
|
|
|
with open("waf", "wb") as wf:
|
|
|
|
wf.write(waf)
|
|
|
|
|
|
|
|
os.chmod("waf", os.stat("waf").st_mode | stat.S_IXUSR)
|
|
|
|
print("Checksum verified.")
|
|
|
|
else:
|
|
|
|
print("The checksum of the downloaded file does not match!")
|
|
|
|
print("Please download and verify the file manually.")
|
|
|
|
|
|
|
|
sys.exit(1)
|