From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from lists.gentoo.org (pigeon.gentoo.org [208.92.234.80]) by finch.gentoo.org (Postfix) with ESMTP id 293411384B4 for ; Sun, 6 Dec 2015 05:35:37 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 9C9D3E087E; Sun, 6 Dec 2015 05:35:35 +0000 (UTC) Received: from smtp.gentoo.org (smtp.gentoo.org [140.211.166.183]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id C33F0E087E for ; Sun, 6 Dec 2015 05:35:34 +0000 (UTC) Received: from oystercatcher.gentoo.org (oystercatcher.gentoo.org [148.251.78.52]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id D893E340845 for ; Sun, 6 Dec 2015 05:35:32 +0000 (UTC) Received: from localhost.localdomain (localhost [127.0.0.1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 4D2C6CB0 for ; Sun, 6 Dec 2015 05:35:30 +0000 (UTC) From: "Doug Goldstein" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Doug Goldstein" Message-ID: <1449380117.d7b224b0cc91b6dc978269bd33fa082d3f5a9520.cardoe@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: app-emulation/xen/ X-VCS-Repository: repo/gentoo X-VCS-Files: app-emulation/xen/xen-4.6.0-r2.ebuild X-VCS-Directories: app-emulation/xen/ X-VCS-Committer: cardoe X-VCS-Committer-Name: Doug Goldstein X-VCS-Revision: d7b224b0cc91b6dc978269bd33fa082d3f5a9520 X-VCS-Branch: master Date: Sun, 6 Dec 2015 05:35:30 +0000 (UTC) Precedence: bulk List-Post: List-Help: List-Unsubscribe: List-Subscribe: List-Id: Gentoo Linux mail X-BeenThere: gentoo-commits@lists.gentoo.org X-Archives-Salt: 47458f1b-0b9d-4427-a8ca-7df84866e67f X-Archives-Hash: 72d65e5612536188638aae6ef8d864f0 commit: d7b224b0cc91b6dc978269bd33fa082d3f5a9520 Author: Doug Goldstein gentoo org> AuthorDate: Sun Dec 6 05:31:08 2015 +0000 Commit: Doug Goldstein gentoo org> CommitDate: Sun Dec 6 05:35:17 2015 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=d7b224b0 app-emulation/xen: drop USE=xsm USE=xsm does not make sense for us to package up. If the user wants XSM, they'll always want Flask. If they're developing their own XSM module they will not be using our packages for that. Signed-off-by: Doug Goldstein gentoo.org> app-emulation/xen/xen-4.6.0-r2.ebuild | 7 ++----- 1 file changed, 2 insertions(+), 5 deletions(-) diff --git a/app-emulation/xen/xen-4.6.0-r2.ebuild b/app-emulation/xen/xen-4.6.0-r2.ebuild index b67f639..492a696 100644 --- a/app-emulation/xen/xen-4.6.0-r2.ebuild +++ b/app-emulation/xen/xen-4.6.0-r2.ebuild @@ -40,7 +40,7 @@ DESCRIPTION="The Xen virtual machine monitor" HOMEPAGE="http://xen.org/" LICENSE="GPL-2" SLOT="0/${MAJOR_V}" -IUSE="custom-cflags debug efi flask xsm" +IUSE="custom-cflags debug efi flask" DEPEND="${PYTHON_DEPS} efi? ( >=sys-devel/binutils-2.22[multitarget] ) @@ -53,8 +53,7 @@ RESTRICT="test" # Approved by QA team in bug #144032 QA_WX_LOAD="boot/xen-syms-${PV}" -REQUIRED_USE="flask? ( xsm ) - arm? ( debug )" +REQUIRED_USE="arm? ( debug )" S="${WORKDIR}/${MY_P}" @@ -75,8 +74,6 @@ pkg_setup() { if use flask ; then export "XSM_ENABLE=y" export "FLASK_ENABLE=y" - elif use xsm ; then - export "XSM_ENABLE=y" fi }