From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: 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 8831F138334 for ; Wed, 12 Sep 2018 08:50:17 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 6410CE097E; Wed, 12 Sep 2018 08:50:16 +0000 (UTC) Received: from smtp.gentoo.org (dev.gentoo.org [IPv6:2001:470:ea4a:1:5054:ff:fec7:86e4]) (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 39FBAE097E for ; Wed, 12 Sep 2018 08:50:16 +0000 (UTC) Received: from oystercatcher.gentoo.org (unknown [IPv6:2a01:4f8:202:4333:225:90ff:fed9:fc84]) (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 19E02335D06 for ; Wed, 12 Sep 2018 08:50:01 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 683563AA for ; Wed, 12 Sep 2018 08:49:59 +0000 (UTC) From: "Andreas Sturmlechner" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Andreas Sturmlechner" Message-ID: <1536742190.a088cd7233c1eac0f85d488d6a3a28bcf24062b4.asturm@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: dev-libs/appstream/ X-VCS-Repository: repo/gentoo X-VCS-Files: dev-libs/appstream/appstream-0.12.2.ebuild X-VCS-Directories: dev-libs/appstream/ X-VCS-Committer: asturm X-VCS-Committer-Name: Andreas Sturmlechner X-VCS-Revision: a088cd7233c1eac0f85d488d6a3a28bcf24062b4 X-VCS-Branch: master Date: Wed, 12 Sep 2018 08:49:59 +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: 13b8220b-6266-4e69-9a8b-b1549bc280b7 X-Archives-Hash: 9e88bb6a675ba4e1a84b2e20b42198e7 commit: a088cd7233c1eac0f85d488d6a3a28bcf24062b4 Author: Andreas Sturmlechner gentoo org> AuthorDate: Wed Sep 12 08:49:15 2018 +0000 Commit: Andreas Sturmlechner gentoo org> CommitDate: Wed Sep 12 08:49:50 2018 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=a088cd72 dev-libs/appstream: Add USE=introspection, fix DEPENDs Thanks-to: Mart Raudsepp gentoo.org> Package-Manager: Portage-2.3.49, Repoman-2.3.10 dev-libs/appstream/appstream-0.12.2.ebuild | 8 +++++--- 1 file changed, 5 insertions(+), 3 deletions(-) diff --git a/dev-libs/appstream/appstream-0.12.2.ebuild b/dev-libs/appstream/appstream-0.12.2.ebuild index dffda1b04b3..b2c9647de36 100644 --- a/dev-libs/appstream/appstream-0.12.2.ebuild +++ b/dev-libs/appstream/appstream-0.12.2.ebuild @@ -21,21 +21,22 @@ HOMEPAGE="https://www.freedesktop.org/wiki/Distributions/AppStream/" LICENSE="LGPL-2.1+ GPL-2+" # check as_api_level SLOT="0/4" -IUSE="apt qt5 test" +IUSE="apt introspection qt5 test" RDEPEND=" dev-libs/glib:2 - >=dev-libs/gobject-introspection-1.56 dev-libs/libxml2:2 dev-libs/libyaml dev-libs/snowball-stemmer + introspection? ( >=dev-libs/gobject-introspection-1.56:= ) qt5? ( dev-qt/qtcore:5 ) " DEPEND="${RDEPEND} app-text/docbook-xml-dtd:4.5 + dev-libs/appstream-glib dev-util/itstool >=dev-util/meson-0.42.0 - sys-devel/gettext + >=sys-devel/gettext-0.19.8 test? ( qt5? ( dev-qt/qttest:5 ) ) @@ -56,6 +57,7 @@ src_configure() { -Dstemming=true -Dvapi=false -Dapt-support=$(usex apt true false) + -Dgir=$(usex introspection true false) -Dqt=$(usex qt5 true false) )