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 44A6D139D5C for ; Fri, 29 Dec 2017 22:15:50 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 61134E0E45; Fri, 29 Dec 2017 22:15:49 +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 3E386E0E45 for ; Fri, 29 Dec 2017 22:15:49 +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 DA74A33BE18 for ; Fri, 29 Dec 2017 22:15:47 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 210D7AE8F for ; Fri, 29 Dec 2017 22:15:46 +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: <1514585726.228ff0df7ba6a2bda7c69e7575be9eb2d34b8b11.asturm@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: dev-util/kdevelop-php/ X-VCS-Repository: repo/gentoo X-VCS-Files: dev-util/kdevelop-php/kdevelop-php-5.2.1.ebuild X-VCS-Directories: dev-util/kdevelop-php/ X-VCS-Committer: asturm X-VCS-Committer-Name: Andreas Sturmlechner X-VCS-Revision: 228ff0df7ba6a2bda7c69e7575be9eb2d34b8b11 X-VCS-Branch: master Date: Fri, 29 Dec 2017 22:15:46 +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: 5548c638-f705-4ac4-be00-1b8f23c0e28f X-Archives-Hash: 2e778eaf18e06a6267cee18a79c87337 commit: 228ff0df7ba6a2bda7c69e7575be9eb2d34b8b11 Author: Andreas Sturmlechner gentoo org> AuthorDate: Fri Dec 29 22:14:34 2017 +0000 Commit: Andreas Sturmlechner gentoo org> CommitDate: Fri Dec 29 22:15:26 2017 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=228ff0df dev-util/kdevelop-php: Restrict tests Unfortunately, kdevelop[test] installs headers that we need here. Closes: https://bugs.gentoo.org/642662 Package-Manager: Portage-2.3.19, Repoman-2.3.6 dev-util/kdevelop-php/kdevelop-php-5.2.1.ebuild | 9 +++++++-- 1 file changed, 7 insertions(+), 2 deletions(-) diff --git a/dev-util/kdevelop-php/kdevelop-php-5.2.1.ebuild b/dev-util/kdevelop-php/kdevelop-php-5.2.1.ebuild index f6d4bf8fd21..8b45c88c583 100644 --- a/dev-util/kdevelop-php/kdevelop-php-5.2.1.ebuild +++ b/dev-util/kdevelop-php/kdevelop-php-5.2.1.ebuild @@ -17,7 +17,7 @@ LICENSE="GPL-2 LGPL-2" IUSE="" [[ ${KDE_BUILD_TYPE} = release ]] && KEYWORDS="~amd64 ~x86" -DEPEND=" +COMMON_DEPEND=" $(add_frameworks_dep karchive) $(add_frameworks_dep kcmutils) $(add_frameworks_dep kconfig) @@ -35,6 +35,11 @@ DEPEND=" dev-util/kdevelop-pg-qt:5 dev-util/kdevelop:5 " -RDEPEND="${DEPEND} +RDEPEND="${COMMON_DEPEND} !dev-util/kdevelop-php-docs " +DEPEND="${COMMON_DEPEND} + test? ( dev-util/kdevelop:5[test] ) +" + +RESTRICT+=" test"