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 560F1138247 for ; Sun, 24 Nov 2013 22:07:43 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 5F176E09C1; Sun, 24 Nov 2013 22:07:40 +0000 (UTC) Received: from smtp.gentoo.org (smtp.gentoo.org [140.211.166.183]) (using TLSv1 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id E19D7E09C1 for ; Sun, 24 Nov 2013 22:07:39 +0000 (UTC) Received: from hornbill.gentoo.org (hornbill.gentoo.org [94.100.119.163]) (using TLSv1 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id C292633F27E for ; Sun, 24 Nov 2013 22:07:38 +0000 (UTC) Received: from localhost.localdomain (localhost [127.0.0.1]) by hornbill.gentoo.org (Postfix) with ESMTP id 6749B19002B for ; Sun, 24 Nov 2013 22:07:36 +0000 (UTC) From: "Gilles Dartiguelongue" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Gilles Dartiguelongue" Message-ID: <1385330088.891eaf06e9f480b65458fd9b50267b9f7d15a1d7.eva@gentoo> Subject: [gentoo-commits] proj/gnome:master commit in: dev-libs/gjs/ X-VCS-Repository: proj/gnome X-VCS-Files: dev-libs/gjs/gjs-1.38.1.ebuild dev-libs/gjs/gjs-9999.ebuild X-VCS-Directories: dev-libs/gjs/ X-VCS-Committer: eva X-VCS-Committer-Name: Gilles Dartiguelongue X-VCS-Revision: 891eaf06e9f480b65458fd9b50267b9f7d15a1d7 X-VCS-Branch: master Date: Sun, 24 Nov 2013 22:07:36 +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: 2954d48c-c8fd-44e7-85c3-212a74b4f99e X-Archives-Hash: 3fed0405fbaccf2277be2977aa8b9b17 commit: 891eaf06e9f480b65458fd9b50267b9f7d15a1d7 Author: Gilles Dartiguelongue gentoo org> AuthorDate: Sun Nov 24 21:54:02 2013 +0000 Commit: Gilles Dartiguelongue gentoo org> CommitDate: Sun Nov 24 21:54:48 2013 +0000 URL: http://git.overlays.gentoo.org/gitweb/?p=proj/gnome.git;a=commit;h=891eaf06 dev-libs/gjs: dbus is actually used in unittests --- dev-libs/gjs/gjs-1.38.1.ebuild | 7 +++---- dev-libs/gjs/gjs-9999.ebuild | 4 ++-- 2 files changed, 5 insertions(+), 6 deletions(-) diff --git a/dev-libs/gjs/gjs-1.38.1.ebuild b/dev-libs/gjs/gjs-1.38.1.ebuild index 2d53fea..90c2d3b 100644 --- a/dev-libs/gjs/gjs-1.38.1.ebuild +++ b/dev-libs/gjs/gjs-1.38.1.ebuild @@ -12,7 +12,7 @@ HOMEPAGE="http://live.gnome.org/Gjs" LICENSE="MIT || ( MPL-1.1 LGPL-2+ GPL-2+ )" SLOT="0" -IUSE="+cairo examples" +IUSE="+cairo examples test" KEYWORDS="~alpha ~amd64 ~arm ~ia64 ~ppc ~ppc64 ~sparc ~x86 ~amd64-fbsd" RDEPEND=" @@ -27,6 +27,7 @@ RDEPEND=" DEPEND="${RDEPEND} sys-devel/gettext virtual/pkgconfig + test? ( sys-apps/dbus ) " src_prepare() { @@ -49,9 +50,7 @@ src_configure() { } src_test() { - # Tests need dbus - #Xemake check - dbus-launch emake check + Xemake check } src_install() { diff --git a/dev-libs/gjs/gjs-9999.ebuild b/dev-libs/gjs/gjs-9999.ebuild index 1390fe0..c4b00af 100644 --- a/dev-libs/gjs/gjs-9999.ebuild +++ b/dev-libs/gjs/gjs-9999.ebuild @@ -15,7 +15,7 @@ HOMEPAGE="http://live.gnome.org/Gjs" LICENSE="MIT || ( MPL-1.1 LGPL-2+ GPL-2+ )" SLOT="0" -IUSE="cairo examples" +IUSE="+cairo examples test" if [[ ${PV} = 9999 ]]; then KEYWORDS="" else @@ -34,6 +34,7 @@ RDEPEND=" DEPEND="${RDEPEND} sys-devel/gettext virtual/pkgconfig + test? ( sys-apps/dbus ) " src_configure() { @@ -48,7 +49,6 @@ src_configure() { } src_test() { - # Tests need dbus Xemake check }