From cf0de233329c58948c31ba6b0faec8d263856029 Mon Sep 17 00:00:00 2001 From: "kevino@webkit.org" Date: Tue, 31 Jan 2012 05:51:43 +0000 Subject: [PATCH] [wx] Unreviewed. Update download URLs to new domain. git-svn-id: http://svn.webkit.org/repository/webkit/trunk@106333 268f45cc-cd09-0410-ab3c-d52691b4dbfc --- Tools/ChangeLog | 7 +++++++ Tools/waf/build/build_utils.py | 6 +++--- 2 files changed, 10 insertions(+), 3 deletions(-) diff --git a/Tools/ChangeLog b/Tools/ChangeLog index 1667a7d..cf44136 100644 --- a/Tools/ChangeLog +++ b/Tools/ChangeLog @@ -1,5 +1,12 @@ 2012-01-30 Kevin Ollivier + [wx] Unreviewed. Update download URLs to new domain. + + * waf/build/build_utils.py: + (update_wx_deps): + +2012-01-30 Kevin Ollivier + [wx] Unreviewed. Build fix, add JavaScriptCore/tools to the list of build directories. diff --git a/Tools/waf/build/build_utils.py b/Tools/waf/build/build_utils.py index 937ecbc..f9927c0 100644 --- a/Tools/waf/build/build_utils.py +++ b/Tools/waf/build/build_utils.py @@ -118,7 +118,7 @@ def update_wx_deps(conf, wk_root, msvc_version='msvc2008'): Logs.info('Ensuring wxWebKit dependencies are up-to-date.') wklibs_dir = os.path.join(wk_root, 'WebKitLibraries') - waf = download_if_newer('http://wxwebkit.wxcommunity.com/downloads/deps/waf', os.path.join(wk_root, 'Tools', 'wx')) + waf = download_if_newer('http://wxwebkit.kosoftworks.com/downloads/deps/waf', os.path.join(wk_root, 'Tools', 'wx')) if waf: # TODO: Make the build restart itself after an update. Logs.warn('Build system updated, please restart build.') @@ -126,13 +126,13 @@ def update_wx_deps(conf, wk_root, msvc_version='msvc2008'): # since this module is still experimental wxpy_dir = os.path.join(wk_root, 'Source', 'WebKit', 'wx', 'bindings', 'python') - swig_module = download_if_newer('http://wxwebkit.wxcommunity.com/downloads/deps/swig.py.txt', wxpy_dir) + swig_module = download_if_newer('http://wxwebkit.kosoftworks.com/downloads/deps/swig.py.txt', wxpy_dir) if swig_module: shutil.copy(os.path.join(wxpy_dir, 'swig.py.txt'), os.path.join(wxpy_dir, 'swig.py')) if sys.platform.startswith('win'): Logs.info('downloading deps package') - archive = download_if_newer('http://wxwebkit.wxcommunity.com/downloads/deps/wxWebKitDeps-%s.zip' % msvc_version, wklibs_dir) + archive = download_if_newer('http://wxwebkit.kosoftworks.com/downloads/deps/wxWebKitDeps-%s.zip' % msvc_version, wklibs_dir) if archive and os.path.exists(archive): os.system('unzip -o %s -d %s' % (archive, os.path.join(wklibs_dir, msvc_version))) -- 2.7.4