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 AF5BB138359 for ; Tue, 25 Aug 2020 14:51:18 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 744CCE097A; Tue, 25 Aug 2020 14:51:15 +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 5C81EE0977 for ; Tue, 25 Aug 2020 14:51:15 +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 4F696340E98 for ; Tue, 25 Aug 2020 14:51:14 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id D389A33B for ; Tue, 25 Aug 2020 14:51:11 +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: <1598366687.f21fdf41091eb03a10dce8e7491b6f7a78196a49.asturm@gentoo> Subject: [gentoo-commits] proj/kde-sunset:master commit in: eclass/ X-VCS-Repository: proj/kde-sunset X-VCS-Files: eclass/kde4-base.eclass X-VCS-Directories: eclass/ X-VCS-Committer: asturm X-VCS-Committer-Name: Andreas Sturmlechner X-VCS-Revision: f21fdf41091eb03a10dce8e7491b6f7a78196a49 X-VCS-Branch: master Date: Tue, 25 Aug 2020 14:51:11 +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-Auto-Response-Suppress: DR, RN, NRN, OOF, AutoReply X-Archives-Salt: 51f1e656-e7df-4a2b-b59d-5a243930f0e6 X-Archives-Hash: 90b47b2bb7964df021663afa8df44de5 commit: f21fdf41091eb03a10dce8e7491b6f7a78196a49 Author: Andreas Sturmlechner gentoo org> AuthorDate: Mon Aug 24 17:56:39 2020 +0000 Commit: Andreas Sturmlechner gentoo org> CommitDate: Tue Aug 25 14:44:47 2020 +0000 URL: https://gitweb.gentoo.org/proj/kde-sunset.git/commit/?id=f21fdf41 kde4-base.eclass: Fix MissingTestRestrict if CPPUNIT_REQUIRED=optional Signed-off-by: Andreas Sturmlechner gentoo.org> eclass/kde4-base.eclass | 1 + 1 file changed, 1 insertion(+) diff --git a/eclass/kde4-base.eclass b/eclass/kde4-base.eclass index d8e922ec..92e8164e 100644 --- a/eclass/kde4-base.eclass +++ b/eclass/kde4-base.eclass @@ -339,6 +339,7 @@ case ${CPPUNIT_REQUIRED} in optional) IUSE+=" test" DEPEND+=" test? ( ${cppuintdepend} )" + RESTRICT+=" !test? ( test )" ;; *) ;; esac