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 BCBEE138CD3 for ; Tue, 12 May 2015 13:00:36 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 34F87E083A; Tue, 12 May 2015 13:00:35 +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 9F924E083A for ; Tue, 12 May 2015 13:00:34 +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 1E646340D32 for ; Tue, 12 May 2015 13:00:33 +0000 (UTC) Received: from localhost.localdomain (localhost [127.0.0.1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id CB2589B1 for ; Tue, 12 May 2015 13:00:31 +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: <1431435376.39e6948241ad6a07494bda1271c659593f6b963f.kensington@gentoo> Subject: [gentoo-commits] proj/kde:master commit in: net-libs/signond/ X-VCS-Repository: proj/kde X-VCS-Files: net-libs/signond/signond-8.57.ebuild X-VCS-Directories: net-libs/signond/ X-VCS-Committer: kensington X-VCS-Committer-Name: Michael Palimaka X-VCS-Revision: 39e6948241ad6a07494bda1271c659593f6b963f X-VCS-Branch: master Date: Tue, 12 May 2015 13:00:31 +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: 868f2acb-c4f1-499f-8b35-84fc3603a90b X-Archives-Hash: 9f6b931bb3311a73f9f2bbd128e6b220 commit: 39e6948241ad6a07494bda1271c659593f6b963f Author: Michael Palimaka gentoo org> AuthorDate: Tue May 12 12:56:16 2015 +0000 Commit: Michael Palimaka gentoo org> CommitDate: Tue May 12 12:56:16 2015 +0000 URL: https://gitweb.gentoo.org/proj/kde.git/commit/?id=39e69482 [net-libs/signond] Small test handling improvements. Package-Manager: portage-2.2.18 net-libs/signond/signond-8.57.ebuild | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/net-libs/signond/signond-8.57.ebuild b/net-libs/signond/signond-8.57.ebuild index ad7b99b..32cd47a 100644 --- a/net-libs/signond/signond-8.57.ebuild +++ b/net-libs/signond/signond-8.57.ebuild @@ -30,14 +30,13 @@ RDEPEND=" " DEPEND="${DEPEND} doc? ( app-doc/doxygen ) + test? ( dev-qt/qttest:5 ) " S="${WORKDIR}/${MY_P}" src_prepare() { - if use !test; then - sed -i -e '/^SUBDIRS/s/tests//' signon.pro || die "couldn't disable tests" - fi + use test || sed -i -e '/^SUBDIRS/s/tests//' signon.pro || die "couldn't disable tests" use doc || sed -e "/include( doc\/doc.pri )/d" -i ${MY_PN}.pro || die }