From patchwork Fri May 27 04:21:34 2011 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Lucas Meneghel Rodrigues X-Patchwork-Id: 822852 Received: from vger.kernel.org (vger.kernel.org [209.132.180.67]) by demeter1.kernel.org (8.14.4/8.14.3) with ESMTP id p4R4LsIS028354 for ; Fri, 27 May 2011 04:21:55 GMT Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1752137Ab1E0EVw (ORCPT ); Fri, 27 May 2011 00:21:52 -0400 Received: from mx1.redhat.com ([209.132.183.28]:7107 "EHLO mx1.redhat.com" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1752094Ab1E0EVv (ORCPT ); Fri, 27 May 2011 00:21:51 -0400 Received: from int-mx02.intmail.prod.int.phx2.redhat.com (int-mx02.intmail.prod.int.phx2.redhat.com [10.5.11.12]) by mx1.redhat.com (8.14.4/8.14.4) with ESMTP id p4R4Loqc003260 (version=TLSv1/SSLv3 cipher=DHE-RSA-AES256-SHA bits=256 verify=OK); Fri, 27 May 2011 00:21:50 -0400 Received: from justice.redhat.com (vpn-10-216.rdu.redhat.com [10.11.10.216]) by int-mx02.intmail.prod.int.phx2.redhat.com (8.13.8/8.13.8) with ESMTP id p4R4LaMQ004814; Fri, 27 May 2011 00:21:49 -0400 From: Lucas Meneghel Rodrigues To: autotest@test.kernel.org Cc: kvm@vger.kernel.org, Lucas Meneghel Rodrigues Subject: [PATCH 6/6] external_packages: Bump version number requirements for web deps Date: Fri, 27 May 2011 01:21:34 -0300 Message-Id: <1306470094-16960-7-git-send-email-lmr@redhat.com> In-Reply-To: <1306470094-16960-1-git-send-email-lmr@redhat.com> References: <1306470094-16960-1-git-send-email-lmr@redhat.com> X-Scanned-By: MIMEDefang 2.67 on 10.5.11.12 Sender: kvm-owner@vger.kernel.org Precedence: bulk List-ID: X-Mailing-List: kvm@vger.kernel.org X-Greylist: IP, sender and recipient auto-whitelisted, not delayed by milter-greylist-4.2.6 (demeter1.kernel.org [140.211.167.41]); Fri, 27 May 2011 04:21:55 +0000 (UTC) With the previous patchset that fixes the frontend running under Django 1.3, tested the frontend code compilation with the latest versions of gwt and gwt-incubator with success. The interface looks pretty good, and therefore, let's bump version numbers for: * Django * gwt * gwt-incubator On build_externals.py all at once. This is important so we can keep the code working under new versions of the foundation components of the web interface. Signed-off-by: Lucas Meneghel Rodrigues --- utils/external_packages.py | 12 ++++++------ 1 files changed, 6 insertions(+), 6 deletions(-) diff --git a/utils/external_packages.py b/utils/external_packages.py index bcfd15d..34d62b6 100755 --- a/utils/external_packages.py +++ b/utils/external_packages.py @@ -552,10 +552,10 @@ class MySQLdbPackage(ExternalPackage): class DjangoPackage(ExternalPackage): - version = '1.1.1' + version = '1.3' local_filename = 'Django-%s.tar.gz' % version urls = ('http://www.djangoproject.com/download/%s/tarball/' % version,) - hex_sum = '441c54f0e90730bf4a55432b64519169b1e6ef20' + hex_sum = 'f8814d5e1412bb932318db5130260da5bf053ff7' _build_and_install = ExternalPackage._build_and_install_from_package _build_and_install_current_dir = ( @@ -680,10 +680,10 @@ class Httplib2Package(ExternalPackage): class GwtPackage(ExternalPackage): """Fetch and extract a local copy of GWT used to build the frontend.""" - version = '2.0.3' + version = '2.3.0' local_filename = 'gwt-%s.zip' % version urls = ('http://google-web-toolkit.googlecode.com/files/' + local_filename,) - hex_sum = '1dabd25a02b9299f6fa84c51c97210a3373a663e' + hex_sum = 'd51fce9166e6b31349659ffca89baf93e39bc84b' name = 'gwt' about_filename = 'about.txt' module_name = None # Not a Python module. @@ -724,12 +724,12 @@ class GwtPackage(ExternalPackage): # This requires GWT to already be installed, so it must be declared after # GwtPackage class GwtIncubatorPackage(ExternalPackage): - version = '20100204-r1747' + version = '20101117-r1766' local_filename = 'gwt-incubator-%s.jar' % version symlink_name = 'gwt-incubator.jar' urls = ('http://google-web-toolkit-incubator.googlecode.com/files/' + local_filename,) - hex_sum = '0c9495634f0627d0b4de0d78a50a3aefebf67f8c' + hex_sum = '3aa16d4c7c00edad4719092669d820a34e10ef0a' module_name = None # Not a Python module