From mboxrd@z Thu Jan  1 00:00:00 1970
Return-Path: <gentoo-commits+bounces-1260798-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 A53121382C5
	for <garchives@archives.gentoo.org>; Sat, 13 Mar 2021 23:09:22 +0000 (UTC)
Received: from pigeon.gentoo.org (localhost [127.0.0.1])
	by pigeon.gentoo.org (Postfix) with SMTP id DECB7E081A;
	Sat, 13 Mar 2021 23:09:21 +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 BAA2BE081A
	for <gentoo-commits@lists.gentoo.org>; Sat, 13 Mar 2021 23:09:21 +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 7ACC933BE3B
	for <gentoo-commits@lists.gentoo.org>; Sat, 13 Mar 2021 23:09:20 +0000 (UTC)
Received: from localhost.localdomain (localhost [IPv6:::1])
	by oystercatcher.gentoo.org (Postfix) with ESMTP id CEA0813B
	for <gentoo-commits@lists.gentoo.org>; Sat, 13 Mar 2021 23:09:18 +0000 (UTC)
From: "Matt Turner" <mattst88@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, "Matt Turner" <mattst88@gentoo.org>
Message-ID: <1615676942.c152d54c361a0d572f9d0e2484fbd39d2fcbdc57.mattst88@gentoo>
Subject: [gentoo-commits] repo/gentoo:master commit in: net-libs/uhttpmock/
X-VCS-Repository: repo/gentoo
X-VCS-Files: net-libs/uhttpmock/uhttpmock-0.5.3.ebuild
X-VCS-Directories: net-libs/uhttpmock/
X-VCS-Committer: mattst88
X-VCS-Committer-Name: Matt Turner
X-VCS-Revision: c152d54c361a0d572f9d0e2484fbd39d2fcbdc57
X-VCS-Branch: master
Date: Sat, 13 Mar 2021 23:09:18 +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: a36eb50d-4aac-42f7-9cca-cb4c71a05329
X-Archives-Hash: 9b7b269077ffca90753a286fb55cf65a

commit:     c152d54c361a0d572f9d0e2484fbd39d2fcbdc57
Author:     Matt Turner <mattst88 <AT> gentoo <DOT> org>
AuthorDate: Sat Mar 13 23:07:36 2021 +0000
Commit:     Matt Turner <mattst88 <AT> gentoo <DOT> org>
CommitDate: Sat Mar 13 23:09:02 2021 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=c152d54c

net-libs/uhttpmock: Remove GCONF_DEBUG usage

Closes: https://bugs.gentoo.org/775851
Signed-off-by: Matt Turner <mattst88 <AT> gentoo.org>

 net-libs/uhttpmock/uhttpmock-0.5.3.ebuild | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/net-libs/uhttpmock/uhttpmock-0.5.3.ebuild b/net-libs/uhttpmock/uhttpmock-0.5.3.ebuild
index 9178bba643a..d8184154dea 100644
--- a/net-libs/uhttpmock/uhttpmock-0.5.3.ebuild
+++ b/net-libs/uhttpmock/uhttpmock-0.5.3.ebuild
@@ -2,7 +2,6 @@
 # Distributed under the terms of the GNU General Public License v2
 
 EAPI=7
-GCONF_DEBUG="yes"
 VALA_USE_DEPEND="vapigen"
 
 inherit gnome2 vala
@@ -14,7 +13,7 @@ SRC_URI="http://tecnocode.co.uk/downloads/${PN}/${P}.tar.xz"
 LICENSE="LGPL-2+"
 SLOT="0"
 
-IUSE="+introspection vala"
+IUSE="debug +introspection vala"
 REQUIRED_USE="vala? ( introspection )"
 
 KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~ppc ~ppc64 ~sparc ~x86"
@@ -40,6 +39,7 @@ src_prepare() {
 src_configure() {
 	gnome2_src_configure \
 		--disable-static \
+		$(use_enable debug) \
 		$(use_enable introspection) \
 		$(use_enable vala)
 }