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 CA566138CD2 for ; Tue, 12 May 2015 13:20:55 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 1B79FE0839; Tue, 12 May 2015 13:20:55 +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 BD744E0839 for ; Tue, 12 May 2015 13:20:54 +0000 (UTC) Received: from oystercatcher.gentoo.org (oystercatcher.gentoo.org [148.251.78.52]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id D00D2340D20 for ; Tue, 12 May 2015 13:20:53 +0000 (UTC) Received: from localhost.localdomain (localhost [127.0.0.1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 83B7F9E7 for ; Tue, 12 May 2015 13:20:49 +0000 (UTC) From: "Michael Palimaka" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Michael Palimaka" Message-ID: <1431436828.2a27b8d129a14ebfeac5846dfbff795e60b40adb.kensington@gentoo> Subject: [gentoo-commits] proj/kde:master commit in: net-libs/signon-ui/ X-VCS-Repository: proj/kde X-VCS-Files: net-libs/signon-ui/signon-ui-0.15.ebuild X-VCS-Directories: net-libs/signon-ui/ X-VCS-Committer: kensington X-VCS-Committer-Name: Michael Palimaka X-VCS-Revision: 2a27b8d129a14ebfeac5846dfbff795e60b40adb X-VCS-Branch: master Date: Tue, 12 May 2015 13:20:49 +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: b6f1a522-9e0b-493f-bcb1-1ed52e1f10a0 X-Archives-Hash: 8f5c9e7bd27ff5e9b29a40ef92737514 commit: 2a27b8d129a14ebfeac5846dfbff795e60b40adb Author: Michael Palimaka gentoo org> AuthorDate: Tue May 12 13:19:32 2015 +0000 Commit: Michael Palimaka gentoo org> CommitDate: Tue May 12 13:20:28 2015 +0000 URL: https://gitweb.gentoo.org/proj/kde.git/commit/?id=2a27b8d1 [net-libs/signon-ui] Small test handling improvements. net-libs/signon-ui/signon-ui-0.15.ebuild | 10 ++++++---- 1 file changed, 6 insertions(+), 4 deletions(-) diff --git a/net-libs/signon-ui/signon-ui-0.15.ebuild b/net-libs/signon-ui/signon-ui-0.15.ebuild index 5bc370c..e50171f 100644 --- a/net-libs/signon-ui/signon-ui-0.15.ebuild +++ b/net-libs/signon-ui/signon-ui-0.15.ebuild @@ -13,17 +13,17 @@ SRC_URI="https://launchpad.net/${PN}/trunk/${PV}/+download/${P}.tar.bz2" LICENSE="GPL-2 GPL-3" SLOT="0" KEYWORDS="~amd64 ~x86" +IUSE="test" RESTRICT="test" # libproxy[kde] results into segfaults -DEPEND=" +RDEPEND=" dev-libs/glib:2 dev-qt/qtcore:5 dev-qt/qtdbus:5 dev-qt/qtgui:5 dev-qt/qtnetwork:5 - dev-qt/qttest:5 dev-qt/qtwebkit:5 dev-qt/qtwidgets:5 net-libs/accounts-qt @@ -31,10 +31,12 @@ DEPEND=" net-libs/libproxy[-kde] x11-libs/libnotify " -RDEPEND="${DEPEND}" +DEPEND="${RDEPEND} + test? ( dev-qt/qttest:5 ) +" src_prepare() { - sed -i -e '/^SUBDIRS.*/,+1d' tests/tests.pro || die "couldn't disable tests" + use test || sed -i -e '/^SUBDIRS.*/,+1d' tests/tests.pro || die "couldn't disable tests" } src_configure() {