From mboxrd@z Thu Jan  1 00:00:00 1970
Return-Path: <gentoo-commits+bounces-837745-garchives=archives.gentoo.org@lists.gentoo.org>
Received: from lists.gentoo.org (pigeon.gentoo.org [208.92.234.80])
	by finch.gentoo.org (Postfix) with ESMTP id 561AE1384B4
	for <garchives@archives.gentoo.org>; Thu,  1 Oct 2015 03:19:13 +0000 (UTC)
Received: from pigeon.gentoo.org (localhost [127.0.0.1])
	by pigeon.gentoo.org (Postfix) with SMTP id 26831E0854;
	Thu,  1 Oct 2015 03:19:10 +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 710CCE0854
	for <gentoo-commits@lists.gentoo.org>; Thu,  1 Oct 2015 03:19:09 +0000 (UTC)
Received: from oystercatcher.gentoo.org (unknown [IPv6:2a01:4f8:202:4333:225:90ff:fed9:fc84])
	(using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits))
	(No client certificate requested)
	by smtp.gentoo.org (Postfix) with ESMTPS id 319CB340FF5
	for <gentoo-commits@lists.gentoo.org>; Thu,  1 Oct 2015 03:19:06 +0000 (UTC)
Received: from localhost.localdomain (localhost [127.0.0.1])
	by oystercatcher.gentoo.org (Postfix) with ESMTP id B26E0260
	for <gentoo-commits@lists.gentoo.org>; Thu,  1 Oct 2015 03:19:01 +0000 (UTC)
From: "Mike Frysinger" <vapier@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, "Mike Frysinger" <vapier@gentoo.org>
Message-ID: <1443669481.6d802ca9a72f5e5ee74d1dd03a367e8759afe15d.vapier@gentoo>
Subject: [gentoo-commits] repo/gentoo:master commit in: sys-block/fio/
X-VCS-Repository: repo/gentoo
X-VCS-Files: sys-block/fio/fio-2.2.10.ebuild sys-block/fio/fio-2.2.4-r1.ebuild sys-block/fio/fio-2.2.9.ebuild
X-VCS-Directories: sys-block/fio/
X-VCS-Committer: vapier
X-VCS-Committer-Name: Mike Frysinger
X-VCS-Revision: 6d802ca9a72f5e5ee74d1dd03a367e8759afe15d
X-VCS-Branch: master
Date: Thu,  1 Oct 2015 03:19:01 +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-Archives-Salt: 014913c6-506c-497b-b4ac-5c28d822ec6d
X-Archives-Hash: 7a95f777eb967ed20cfc010c0f36996a

commit:     6d802ca9a72f5e5ee74d1dd03a367e8759afe15d
Author:     Mike Frysinger <vapier <AT> gentoo <DOT> org>
AuthorDate: Thu Oct  1 03:18:01 2015 +0000
Commit:     Mike Frysinger <vapier <AT> gentoo <DOT> org>
CommitDate: Thu Oct  1 03:18:01 2015 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=6d802ca9

sys-block/fio: delete wrong arch USE flag checking

USE flags that are not available for an arch should be masked in their
profile, not have ad-hoc checks in ebuilds.  Since the arm profile was
updated at some point to mask USE=glusterfs, we can drop the wrong code
in these ebuilds.

 sys-block/fio/fio-2.2.10.ebuild   | 2 +-
 sys-block/fio/fio-2.2.4-r1.ebuild | 2 +-
 sys-block/fio/fio-2.2.9.ebuild    | 2 +-
 3 files changed, 3 insertions(+), 3 deletions(-)

diff --git a/sys-block/fio/fio-2.2.10.ebuild b/sys-block/fio/fio-2.2.10.ebuild
index dd22e17..8295543 100644
--- a/sys-block/fio/fio-2.2.10.ebuild
+++ b/sys-block/fio/fio-2.2.10.ebuild
@@ -19,7 +19,7 @@ KEYWORDS="~amd64 ~arm ~ia64 ~ppc ~ppc64 ~x86"
 IUSE="aio glusterfs gnuplot gtk numa rbd rdma static zlib"
 
 DEPEND="aio? ( dev-libs/libaio )
-	glusterfs? ( !arm? ( sys-cluster/glusterfs ) )
+	glusterfs? ( sys-cluster/glusterfs )
 	gtk? (
 		dev-libs/glib:2
 		x11-libs/gtk+:2

diff --git a/sys-block/fio/fio-2.2.4-r1.ebuild b/sys-block/fio/fio-2.2.4-r1.ebuild
index 7294045..d645612 100644
--- a/sys-block/fio/fio-2.2.4-r1.ebuild
+++ b/sys-block/fio/fio-2.2.4-r1.ebuild
@@ -19,7 +19,7 @@ KEYWORDS="~amd64 ~arm ~ia64 ~ppc ~ppc64 ~x86"
 IUSE="aio glusterfs gnuplot gtk numa rbd rdma zlib"
 
 DEPEND="aio? ( dev-libs/libaio )
-	glusterfs? ( !arm? ( sys-cluster/glusterfs ) )
+	glusterfs? ( sys-cluster/glusterfs )
 	gtk? (
 		dev-libs/glib:2
 		x11-libs/gtk+:2

diff --git a/sys-block/fio/fio-2.2.9.ebuild b/sys-block/fio/fio-2.2.9.ebuild
index 7e5e763..e9421a2 100644
--- a/sys-block/fio/fio-2.2.9.ebuild
+++ b/sys-block/fio/fio-2.2.9.ebuild
@@ -19,7 +19,7 @@ KEYWORDS="amd64 ~arm ~ia64 ~ppc ~ppc64 x86"
 IUSE="aio glusterfs gnuplot gtk numa rbd rdma static zlib"
 
 DEPEND="aio? ( dev-libs/libaio )
-	glusterfs? ( !arm? ( sys-cluster/glusterfs ) )
+	glusterfs? ( sys-cluster/glusterfs )
 	gtk? (
 		dev-libs/glib:2
 		x11-libs/gtk+:2