From 1a90ded63054c3f186cbeaf64541042b115d0dd0 Mon Sep 17 00:00:00 2001 From: Cory McWilliams Date: Thu, 14 Apr 2016 22:39:53 +0000 Subject: [PATCH] Looks like v8 5.0 is stable. Let's try that. git-svn-id: https://www.unprompted.com/svn/projects/tildefriends/trunk@3203 ed5197a5-7fde-0310-b194-c3ffbd925b24 --- tools/update-deps | 7 +------ 1 file changed, 1 insertion(+), 6 deletions(-) diff --git a/tools/update-deps b/tools/update-deps index b27b626a..cfe0f076 100755 --- a/tools/update-deps +++ b/tools/update-deps @@ -22,7 +22,7 @@ kUvBranch = 'v1.0.0' kUvWork = 'uv' kV8Repository = 'https://github.com/v8/v8.git' -kV8Branch = 'branch-heads/4.9' +kV8Branch = 'branch-heads/5.0' kV8Work = 'v8' def run(*args, **kw): @@ -108,11 +108,6 @@ def updateV8(): else: run(['gclient' + extension, 'sync'], cwd=kV8Work) - if sys.platform == 'linux2': - contents = open(os.path.join(kV8Work, 'tools/swarming_client/third_party/requests/packages/urllib3/contrib/pyopenssl.py'), 'r').readlines() - contents = [line for line in contents if not 'SSLv3' in line] - open(os.path.join(kV8Work, 'tools/swarming_client/third_party/requests/packages/urllib3/contrib/pyopenssl.py'), 'w').write(''.join(contents)) - if sys.platform == 'linux2': run(['make', '-j4', 'native'], cwd=kV8Work) elif sys.platform == 'darwin':