Return-Path: X-Original-To: apmail-deltacloud-dev-archive@www.apache.org Delivered-To: apmail-deltacloud-dev-archive@www.apache.org Received: from mail.apache.org (hermes.apache.org [140.211.11.3]) by minotaur.apache.org (Postfix) with SMTP id 8A6A9CAB5 for ; Thu, 28 Jun 2012 14:44:54 +0000 (UTC) Received: (qmail 43605 invoked by uid 500); 28 Jun 2012 14:44:54 -0000 Delivered-To: apmail-deltacloud-dev-archive@deltacloud.apache.org Received: (qmail 43591 invoked by uid 500); 28 Jun 2012 14:44:54 -0000 Mailing-List: contact dev-help@deltacloud.apache.org; run by ezmlm Precedence: bulk List-Help: List-Unsubscribe: List-Post: List-Id: Reply-To: dev@deltacloud.apache.org Delivered-To: mailing list dev@deltacloud.apache.org Received: (qmail 43580 invoked by uid 99); 28 Jun 2012 14:44:54 -0000 Received: from athena.apache.org (HELO athena.apache.org) (140.211.11.136) by apache.org (qpsmtpd/0.29) with ESMTP; Thu, 28 Jun 2012 14:44:54 +0000 X-ASF-Spam-Status: No, hits=-5.0 required=5.0 tests=RCVD_IN_DNSWL_HI,SPF_HELO_PASS,SPF_PASS X-Spam-Check-By: apache.org Received-SPF: pass (athena.apache.org: domain of marios@redhat.com designates 209.132.183.28 as permitted sender) Received: from [209.132.183.28] (HELO mx1.redhat.com) (209.132.183.28) by apache.org (qpsmtpd/0.29) with ESMTP; Thu, 28 Jun 2012 14:44:49 +0000 Received: from int-mx12.intmail.prod.int.phx2.redhat.com (int-mx12.intmail.prod.int.phx2.redhat.com [10.5.11.25]) by mx1.redhat.com (8.14.4/8.14.4) with ESMTP id q5SEiR8K008254 (version=TLSv1/SSLv3 cipher=DHE-RSA-AES256-SHA bits=256 verify=OK) for ; Thu, 28 Jun 2012 10:44:27 -0400 Received: from name.redhat.com (ovpn-112-21.ams2.redhat.com [10.36.112.21]) by int-mx12.intmail.prod.int.phx2.redhat.com (8.14.4/8.14.4) with ESMTP id q5SEiP08021150 for ; Thu, 28 Jun 2012 10:44:26 -0400 From: marios@redhat.com To: dev@deltacloud.apache.org Subject: [PATCH 1/3] Updated .gemspec to require fog >= 1.4.0 Date: Thu, 28 Jun 2012 17:44:22 +0300 Message-Id: <1340894664-22704-1-git-send-email-marios@redhat.com> X-Scanned-By: MIMEDefang 2.68 on 10.5.11.25 X-Virus-Checked: Checked by ClamAV on apache.org From: marios Resolves issue with deltacloud install on rhel (gem versions conflict for excon) Also, require excon > 0.14.2 because of https://github.com/geemus/excon/pull/128 resolves JIRA DTACLOUD_242 https://issues.apache.org/jira/browse/DTACLOUD-242 Signed-off-by: marios --- server/deltacloud-core.gemspec | 4 ++-- 1 files changed, 2 insertions(+), 2 deletions(-) diff --git a/server/deltacloud-core.gemspec b/server/deltacloud-core.gemspec index e5c7119..add9566 100644 --- a/server/deltacloud-core.gemspec +++ b/server/deltacloud-core.gemspec @@ -91,8 +91,8 @@ Gem::Specification.new do |s| s.add_dependency('cloudfiles') # Terremark Vcloud Express - s.add_dependency('fog') - s.add_dependency('excon') + s.add_dependency('fog', '>= 1.4.0') + s.add_dependency('excon', '>= 0.14.2' ) # Rhevm and Condor Cloud s.add_dependency('rest-client') -- 1.7.6.5