From mboxrd@z Thu Jan  1 00:00:00 1970
Return-Path: <gentoo-commits+bounces-1096146-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 74A74138334
	for <garchives@archives.gentoo.org>; Mon, 17 Jun 2019 14:36:11 +0000 (UTC)
Received: from pigeon.gentoo.org (localhost [127.0.0.1])
	by pigeon.gentoo.org (Postfix) with SMTP id 6312DE0928;
	Mon, 17 Jun 2019 14:36:10 +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 44415E0928
	for <gentoo-commits@lists.gentoo.org>; Mon, 17 Jun 2019 14:36:10 +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 3252A34631A
	for <gentoo-commits@lists.gentoo.org>; Mon, 17 Jun 2019 14:36:09 +0000 (UTC)
Received: from localhost.localdomain (localhost [IPv6:::1])
	by oystercatcher.gentoo.org (Postfix) with ESMTP id 6D06D5DE
	for <gentoo-commits@lists.gentoo.org>; Mon, 17 Jun 2019 14:36:07 +0000 (UTC)
From: "Lars Wendler" <polynomial-c@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, "Lars Wendler" <polynomial-c@gentoo.org>
Message-ID: <1560782150.6e87617f23a8b2bd9f0b3bc3203ef79b400cc081.polynomial-c@gentoo>
Subject: [gentoo-commits] repo/gentoo:master commit in: sys-libs/libblockdev/
X-VCS-Repository: repo/gentoo
X-VCS-Files: sys-libs/libblockdev/libblockdev-9999.ebuild
X-VCS-Directories: sys-libs/libblockdev/
X-VCS-Committer: polynomial-c
X-VCS-Committer-Name: Lars Wendler
X-VCS-Revision: 6e87617f23a8b2bd9f0b3bc3203ef79b400cc081
X-VCS-Branch: master
Date: Mon, 17 Jun 2019 14:36:07 +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: 16d80100-1909-4e66-9a23-966680fa7ff2
X-Archives-Hash: 504024f7a30593ba1f93c1fc6141ef07

commit:     6e87617f23a8b2bd9f0b3bc3203ef79b400cc081
Author:     Lars Wendler <polynomial-c <AT> gentoo <DOT> org>
AuthorDate: Mon Jun 17 14:35:50 2019 +0000
Commit:     Lars Wendler <polynomial-c <AT> gentoo <DOT> org>
CommitDate: Mon Jun 17 14:35:50 2019 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=6e87617f

sys-libs/libblockdev: Added "introspection" USE flag to live ebuild

Thanks-to: Gino McCarty <onigino <AT> protonmail.com>
Bug: https://bugs.gentoo.org/685020
Package-Manager: Portage-2.3.67, Repoman-2.3.14
Signed-off-by: Lars Wendler <polynomial-c <AT> gentoo.org>

 sys-libs/libblockdev/libblockdev-9999.ebuild | 5 +++--
 1 file changed, 3 insertions(+), 2 deletions(-)

diff --git a/sys-libs/libblockdev/libblockdev-9999.ebuild b/sys-libs/libblockdev/libblockdev-9999.ebuild
index fe1a9b0b4e7..fb0c5edf218 100644
--- a/sys-libs/libblockdev/libblockdev-9999.ebuild
+++ b/sys-libs/libblockdev/libblockdev-9999.ebuild
@@ -25,7 +25,7 @@ else
 fi
 LICENSE="LGPL-2+"
 SLOT="0"
-IUSE="bcache +cryptsetup device-mapper dmraid escrow gtk-doc lvm kbd test +tools vdo"
+IUSE="bcache +cryptsetup device-mapper dmraid escrow gtk-doc introspection lvm kbd test +tools vdo"
 
 RDEPEND="
 	>=dev-libs/glib-2.42.2
@@ -58,8 +58,8 @@ DEPEND="
 "
 
 BDEPEND+="
-	>=dev-libs/gobject-introspection-1.3.0
 	dev-util/gtk-doc-am
+	introspection? ( >=dev-libs/gobject-introspection-1.3.0 )
 "
 
 REQUIRED_USE="${PYTHON_REQUIRED_USE}
@@ -82,6 +82,7 @@ src_configure() {
 		--with-part
 		--without-mpath
 		--without-nvdimm
+		$(use_enable introspection)
 		$(use_enable test tests)
 		$(use_with bcache)
 		$(use_with cryptsetup crypto)