From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: <gentoo-commits+bounces-1081071-garchives=archives.gentoo.org@lists.gentoo.org> Received: from lists.gentoo.org (pigeon.gentoo.org [208.92.234.80]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by finch.gentoo.org (Postfix) with ESMTPS id AC7AA138334 for <garchives@archives.gentoo.org>; Wed, 3 Apr 2019 04:55:40 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id D9D3EE079C; Wed, 3 Apr 2019 04:55:39 +0000 (UTC) Received: from smtp.gentoo.org (smtp.gentoo.org [140.211.166.183]) (using TLSv1.2 with cipher ECDHE-RSA-AES128-GCM-SHA256 (128/128 bits)) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id AF431E0824 for <gentoo-commits@lists.gentoo.org>; Wed, 3 Apr 2019 04:55:39 +0000 (UTC) Received: from oystercatcher.gentoo.org (oystercatcher.gentoo.org [148.251.78.52]) (using TLSv1.2 with cipher ECDHE-RSA-AES128-GCM-SHA256 (128/128 bits)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id E3BBE335CCF for <gentoo-commits@lists.gentoo.org>; Wed, 3 Apr 2019 04:55:37 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 7F1B058B for <gentoo-commits@lists.gentoo.org>; Wed, 3 Apr 2019 04:55:36 +0000 (UTC) From: "Yixun Lan" <dlan@gentoo.org> To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Yixun Lan" <dlan@gentoo.org> Message-ID: <1554267329.88194809fe5a4bbda95418c09274d0644e01a602.dlan@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: app-emulation/xen-tools/ X-VCS-Repository: repo/gentoo X-VCS-Files: app-emulation/xen-tools/xen-tools-4.10.3-r2.ebuild app-emulation/xen-tools/xen-tools-4.11.1-r2.ebuild X-VCS-Directories: app-emulation/xen-tools/ X-VCS-Committer: dlan X-VCS-Committer-Name: Yixun Lan X-VCS-Revision: 88194809fe5a4bbda95418c09274d0644e01a602 X-VCS-Branch: master Date: Wed, 3 Apr 2019 04:55:36 +0000 (UTC) Precedence: bulk List-Post: <mailto:gentoo-commits@lists.gentoo.org> List-Help: <mailto:gentoo-commits+help@lists.gentoo.org> List-Unsubscribe: <mailto:gentoo-commits+unsubscribe@lists.gentoo.org> List-Subscribe: <mailto:gentoo-commits+subscribe@lists.gentoo.org> List-Id: Gentoo Linux mail <gentoo-commits.gentoo.org> X-BeenThere: gentoo-commits@lists.gentoo.org X-Auto-Response-Suppress: DR, RN, NRN, OOF, AutoReply X-Archives-Salt: 63c88b6e-8dcc-4593-8fbf-a1d305b0cce0 X-Archives-Hash: e4d2ed6615ffa806ec8f4d9015f8b2dd commit: 88194809fe5a4bbda95418c09274d0644e01a602 Author: Tomas Mozes <hydrapolic <AT> gmail <DOT> com> AuthorDate: Fri Mar 29 11:28:57 2019 +0000 Commit: Yixun Lan <dlan <AT> gentoo <DOT> org> CommitDate: Wed Apr 3 04:55:29 2019 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=88194809 app-emulation/xen-tools: disable sys-cluster/glusterfs automagic Closes: https://bugs.gentoo.org/682006 Package-Manager: Portage-2.3.62, Repoman-2.3.12 Signed-off-by: Tomáš Mózes <hydrapolic <AT> gmail.com> Signed-off-by: Yixun Lan <dlan <AT> gentoo.org> app-emulation/xen-tools/xen-tools-4.10.3-r2.ebuild | 4 ++++ app-emulation/xen-tools/xen-tools-4.11.1-r2.ebuild | 4 ++++ 2 files changed, 8 insertions(+) diff --git a/app-emulation/xen-tools/xen-tools-4.10.3-r2.ebuild b/app-emulation/xen-tools/xen-tools-4.10.3-r2.ebuild index f58f83d8863..e5f5d717210 100644 --- a/app-emulation/xen-tools/xen-tools-4.10.3-r2.ebuild +++ b/app-emulation/xen-tools/xen-tools-4.10.3-r2.ebuild @@ -332,6 +332,10 @@ src_prepare() { -e 's:^#vif.default.script=:vif.default.script=:' \ -i tools/examples/xl.conf || die + # disable glusterfs + sed -e "s:\$\$source/configure:\0 --disable-glusterfs:" \ + -i tools/Makefile || die + default } diff --git a/app-emulation/xen-tools/xen-tools-4.11.1-r2.ebuild b/app-emulation/xen-tools/xen-tools-4.11.1-r2.ebuild index c6d51462da3..bfa221f47fb 100644 --- a/app-emulation/xen-tools/xen-tools-4.11.1-r2.ebuild +++ b/app-emulation/xen-tools/xen-tools-4.11.1-r2.ebuild @@ -338,6 +338,10 @@ src_prepare() { sed -e "s:\$\$source/configure:\0 --disable-capstone:" \ -i tools/Makefile || die + # disable glusterfs + sed -e "s:\$\$source/configure:\0 --disable-glusterfs:" \ + -i tools/Makefile || die + default }