Return-Path: X-Original-To: apmail-incubator-cloudstack-commits-archive@minotaur.apache.org Delivered-To: apmail-incubator-cloudstack-commits-archive@minotaur.apache.org Received: from mail.apache.org (hermes.apache.org [140.211.11.3]) by minotaur.apache.org (Postfix) with SMTP id CE0439DCE for ; Tue, 31 Jul 2012 06:50:43 +0000 (UTC) Received: (qmail 89243 invoked by uid 500); 31 Jul 2012 06:50:43 -0000 Delivered-To: apmail-incubator-cloudstack-commits-archive@incubator.apache.org Received: (qmail 89019 invoked by uid 500); 31 Jul 2012 06:50:43 -0000 Mailing-List: contact cloudstack-commits-help@incubator.apache.org; run by ezmlm Precedence: bulk List-Help: List-Unsubscribe: List-Post: List-Id: Reply-To: cloudstack-dev@incubator.apache.org Delivered-To: mailing list cloudstack-commits@incubator.apache.org Received: (qmail 88971 invoked by uid 99); 31 Jul 2012 06:50:41 -0000 Received: from tyr.zones.apache.org (HELO tyr.zones.apache.org) (140.211.11.114) by apache.org (qpsmtpd/0.29) with ESMTP; Tue, 31 Jul 2012 06:50:41 +0000 Received: by tyr.zones.apache.org (Postfix, from userid 65534) id 586A31A4E0; Tue, 31 Jul 2012 06:50:41 +0000 (UTC) Content-Type: text/plain; charset="us-ascii" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit From: tsp@apache.org To: cloudstack-commits@incubator.apache.org X-Mailer: ASF-Git Admin Mailer Subject: [1/2] git commit: failonerror for some marvin targets Message-Id: <20120731065041.586A31A4E0@tyr.zones.apache.org> Date: Tue, 31 Jul 2012 06:50:41 +0000 (UTC) Updated Branches: refs/heads/master 73be77a4c -> 7288eca12 failonerror for some marvin targets Project: http://git-wip-us.apache.org/repos/asf/incubator-cloudstack/repo Commit: http://git-wip-us.apache.org/repos/asf/incubator-cloudstack/commit/7288eca1 Tree: http://git-wip-us.apache.org/repos/asf/incubator-cloudstack/tree/7288eca1 Diff: http://git-wip-us.apache.org/repos/asf/incubator-cloudstack/diff/7288eca1 Branch: refs/heads/master Commit: 7288eca12977c926ff0e726ef42f334410f8d088 Parents: 9acd1cc Author: Prasanna Santhanam Authored: Tue Jul 31 12:17:33 2012 +0530 Committer: Prasanna Santhanam Committed: Tue Jul 31 12:17:33 2012 +0530 ---------------------------------------------------------------------- build/build-marvin.xml | 4 ++-- tools/marvin/setup.py | 3 ++- 2 files changed, 4 insertions(+), 3 deletions(-) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/incubator-cloudstack/blob/7288eca1/build/build-marvin.xml ---------------------------------------------------------------------- diff --git a/build/build-marvin.xml b/build/build-marvin.xml index daa77b9..6daac03 100644 --- a/build/build-marvin.xml +++ b/build/build-marvin.xml @@ -40,7 +40,7 @@ - + @@ -50,7 +50,7 @@ - + http://git-wip-us.apache.org/repos/asf/incubator-cloudstack/blob/7288eca1/tools/marvin/setup.py ---------------------------------------------------------------------- diff --git a/tools/marvin/setup.py b/tools/marvin/setup.py index c0e4af4..96981ee 100644 --- a/tools/marvin/setup.py +++ b/tools/marvin/setup.py @@ -18,10 +18,11 @@ from distutils.core import setup from sys import version +import sys if version < "2.7": print "Marvin needs at least python 2.7, found : \n%s"%version - raise + sys.exit(1) setup(name="Marvin", version="0.1.0",