From patchwork Tue Dec 5 18:31:15 2017 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Paolo Bonzini X-Patchwork-Id: 844879 Return-Path: X-Original-To: incoming@patchwork.ozlabs.org Delivered-To: patchwork-incoming@bilbo.ozlabs.org Authentication-Results: ozlabs.org; spf=pass (mailfrom) smtp.mailfrom=nongnu.org (client-ip=2001:4830:134:3::11; helo=lists.gnu.org; envelope-from=qemu-devel-bounces+incoming=patchwork.ozlabs.org@nongnu.org; receiver=) Received: from lists.gnu.org (lists.gnu.org [IPv6:2001:4830:134:3::11]) (using TLSv1 with cipher AES256-SHA (256/256 bits)) (No client certificate requested) by ozlabs.org (Postfix) with ESMTPS id 3yrr3H4Thyz9rxl for ; Wed, 6 Dec 2017 05:33:15 +1100 (AEDT) Received: from localhost ([::1]:51557 helo=lists.gnu.org) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1eMI1p-0004TW-PA for incoming@patchwork.ozlabs.org; Tue, 05 Dec 2017 13:33:13 -0500 Received: from eggs.gnu.org ([2001:4830:134:3::10]:40312) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1eMHzy-0003AT-Eu for qemu-devel@nongnu.org; Tue, 05 Dec 2017 13:31:19 -0500 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1eMHzx-0005JA-QA for qemu-devel@nongnu.org; Tue, 05 Dec 2017 13:31:18 -0500 Received: from mx1.redhat.com ([209.132.183.28]:53240) by eggs.gnu.org with esmtps (TLS1.0:DHE_RSA_AES_256_CBC_SHA1:32) (Exim 4.71) (envelope-from ) id 1eMHzx-0005Ij-Jx for qemu-devel@nongnu.org; Tue, 05 Dec 2017 13:31:17 -0500 Received: from smtp.corp.redhat.com (int-mx04.intmail.prod.int.phx2.redhat.com [10.5.11.14]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by mx1.redhat.com (Postfix) with ESMTPS id C88DD85543 for ; Tue, 5 Dec 2017 18:31:16 +0000 (UTC) Received: from donizetti.redhat.com (ovpn-117-52.ams2.redhat.com [10.36.117.52]) by smtp.corp.redhat.com (Postfix) with ESMTP id 31DA05E25F for ; Tue, 5 Dec 2017 18:31:16 +0000 (UTC) From: Paolo Bonzini To: qemu-devel@nongnu.org Date: Tue, 5 Dec 2017 19:31:15 +0100 Message-Id: <20171205183115.3792-1-pbonzini@redhat.com> X-Scanned-By: MIMEDefang 2.79 on 10.5.11.14 X-Greylist: Sender IP whitelisted, not delayed by milter-greylist-4.5.16 (mx1.redhat.com [10.5.110.28]); Tue, 05 Dec 2017 18:31:16 +0000 (UTC) X-detected-operating-system: by eggs.gnu.org: GNU/Linux 2.2.x-3.x [generic] [fuzzy] X-Received-From: 209.132.183.28 Subject: [Qemu-devel] [qemu-web PATCH] lock more dependencies for RHEL7 X-BeenThere: qemu-devel@nongnu.org X-Mailman-Version: 2.1.21 Precedence: list List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: qemu-devel-bounces+incoming=patchwork.ozlabs.org@nongnu.org Sender: "Qemu-devel" This is required to work with Ruby 2.0; jekyll-watch 1.5.1 was released on Dec 2 and requires Ruby 2.2. Signed-off-by: Paolo Bonzini --- Gemfile | 3 +++ 1 file changed, 3 insertions(+) diff --git a/Gemfile b/Gemfile index 933b92b..b01dff9 100644 --- a/Gemfile +++ b/Gemfile @@ -26,5 +26,8 @@ end # for RHEL7 gem 'public_suffix', "< 3.0" +gem 'jekyll-watch', '= 1.5.0' +gem 'listen', '< 3.1' +gem 'ruby_dep', '< 1.4' gem 'json' gem 'json_pure'